<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: getconf return values in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/getconf-return-values/m-p/2466962#M774471</link>
    <description>From /usr/include/sys/unistd.h&lt;BR /&gt;&lt;BR /&gt;#  define CPU_HP_MC68020  0x20C /* Motorola MC68020 */&lt;BR /&gt;#  define CPU_HP_MC68030  0x20D /* Motorola MC68030 */&lt;BR /&gt;#  define CPU_HP_MC68040  0x20E /* Motorola MC68040 */&lt;BR /&gt;#  define CPU_PA_RISC1_0  0x20B /* HP PA-RISC1.0 */&lt;BR /&gt;#  define CPU_PA_RISC1_1  0x210 /* HP PA-RISC1.1 */&lt;BR /&gt;#  define CPU_PA_RISC1_2  0x211 /* HP PA-RISC1.2 */&lt;BR /&gt;#  define CPU_PA_RISC2_0  0x214 /* HP PA-RISC2.0 */&lt;BR /&gt;#  define CPU_PA_RISC_MAX 0x2FF  /* Maximum value for HP PA-RISC systems */&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Therefore PA_RISC1_1 is 528 and CPU_PA_RISC2_0 is 532&lt;BR /&gt;</description>
    <pubDate>Thu, 23 Nov 2000 16:12:16 GMT</pubDate>
    <dc:creator>Dave Kelly_1</dc:creator>
    <dc:date>2000-11-23T16:12:16Z</dc:date>
    <item>
      <title>getconf return values</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/getconf-return-values/m-p/2466960#M774469</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;When I issue getconf CPU_VERSION it returns on some machines value 528 and on others 532. I suspect it has something to do with CPU-architecture (RISC 1.1 -&amp;gt; 528, RISC 2.0 -&amp;gt; 532). Can someone confirm this? And, what is the meaning of the returned valus? I couldn?t find an explanation in man pages.&lt;BR /&gt;&lt;BR /&gt;Eisse</description>
      <pubDate>Thu, 23 Nov 2000 16:00:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/getconf-return-values/m-p/2466960#M774469</guid>
      <dc:creator>Jan Meijer</dc:creator>
      <dc:date>2000-11-23T16:00:55Z</dc:date>
    </item>
    <item>
      <title>Re: getconf return values</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/getconf-return-values/m-p/2466961#M774470</link>
      <description>&lt;BR /&gt;&lt;BR /&gt;To determine the architecture version of the system,&lt;BR /&gt;        execute the following command:&lt;BR /&gt;extract from Patch Name: PHSS_18609.text :&lt;BR /&gt;confirmed ? :)&lt;BR /&gt;        "getconf CPU_VERSION"&lt;BR /&gt;&lt;BR /&gt;        This will return an integer which can be mapped&lt;BR /&gt;        to the PA-RISC architecture version as follows:&lt;BR /&gt;&lt;BR /&gt;        528     PA 1.1&lt;BR /&gt;        532     PA 2.0</description>
      <pubDate>Thu, 23 Nov 2000 16:12:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/getconf-return-values/m-p/2466961#M774470</guid>
      <dc:creator>Alex Glennie</dc:creator>
      <dc:date>2000-11-23T16:12:08Z</dc:date>
    </item>
    <item>
      <title>Re: getconf return values</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/getconf-return-values/m-p/2466962#M774471</link>
      <description>From /usr/include/sys/unistd.h&lt;BR /&gt;&lt;BR /&gt;#  define CPU_HP_MC68020  0x20C /* Motorola MC68020 */&lt;BR /&gt;#  define CPU_HP_MC68030  0x20D /* Motorola MC68030 */&lt;BR /&gt;#  define CPU_HP_MC68040  0x20E /* Motorola MC68040 */&lt;BR /&gt;#  define CPU_PA_RISC1_0  0x20B /* HP PA-RISC1.0 */&lt;BR /&gt;#  define CPU_PA_RISC1_1  0x210 /* HP PA-RISC1.1 */&lt;BR /&gt;#  define CPU_PA_RISC1_2  0x211 /* HP PA-RISC1.2 */&lt;BR /&gt;#  define CPU_PA_RISC2_0  0x214 /* HP PA-RISC2.0 */&lt;BR /&gt;#  define CPU_PA_RISC_MAX 0x2FF  /* Maximum value for HP PA-RISC systems */&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Therefore PA_RISC1_1 is 528 and CPU_PA_RISC2_0 is 532&lt;BR /&gt;</description>
      <pubDate>Thu, 23 Nov 2000 16:12:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/getconf-return-values/m-p/2466962#M774471</guid>
      <dc:creator>Dave Kelly_1</dc:creator>
      <dc:date>2000-11-23T16:12:16Z</dc:date>
    </item>
    <item>
      <title>Re: getconf return values</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/getconf-return-values/m-p/2466963#M774472</link>
      <description>with&lt;BR /&gt;&lt;BR /&gt;grep $(getconf _SC_CPU_VERSION |awk '{printf("0x%X\n",$0)}') /usr/include/sys/unistd.h&lt;BR /&gt;&lt;BR /&gt;you can get it more comfortable&lt;BR /&gt;</description>
      <pubDate>Thu, 23 Nov 2000 16:18:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/getconf-return-values/m-p/2466963#M774472</guid>
      <dc:creator>Rainer_1</dc:creator>
      <dc:date>2000-11-23T16:18:12Z</dc:date>
    </item>
  </channel>
</rss>

