<?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 kernel compiling error in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/kernel-compiling-error/m-p/2827329#M87960</link>
    <description># mk_kernel -v -s system                                                        &lt;BR /&gt;Building a new kernel based on template file "system"                           &lt;BR /&gt;&lt;BR /&gt;Generating Module: krm...&lt;BR /&gt;Compiling conf.c...&lt;BR /&gt;loading the kernel...&lt;BR /&gt;            &lt;BR /&gt;ld: Unsatisfied symbol "mi_cisha1_hmac" in file /usr/conf/lib/libencdom.a[reg_sha1.o]                                                                           &lt;BR /&gt;ld: Unsatisfied symbol "mi_cimd5_hmac" in file /usr/conf/lib/libencdom.a[reg_md5.o]                                                                             &lt;BR /&gt;ld: Unsatisfied symbol "mi_md5_hmac" in file /usr/conf/lib/libencdom.a[reg_md5.o]                                                                               &lt;BR /&gt;ld: Unsatisfied symbol "mi_sha1_hmac" in file /usr/conf/lib/libencdom.a[reg_sha1.o]                                                                             &lt;BR /&gt;4errors.                                      Error exit code 1                                &lt;BR /&gt;&lt;BR /&gt;Stop.                                                                           &lt;BR /&gt;config: make did an exit(1)                                            config failure.  &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I have the most recent mk_kernel patches, PHKL_15687 and PHKL_19291.  I've tried both in SAM and on command line.  In addition, I've tried different systems files.  And I tried the windows approach and rebooted. =\  Any suggestions?</description>
    <pubDate>Wed, 16 Oct 2002 17:51:02 GMT</pubDate>
    <dc:creator>Charles Darnell_1</dc:creator>
    <dc:date>2002-10-16T17:51:02Z</dc:date>
    <item>
      <title>kernel compiling error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/kernel-compiling-error/m-p/2827329#M87960</link>
      <description># mk_kernel -v -s system                                                        &lt;BR /&gt;Building a new kernel based on template file "system"                           &lt;BR /&gt;&lt;BR /&gt;Generating Module: krm...&lt;BR /&gt;Compiling conf.c...&lt;BR /&gt;loading the kernel...&lt;BR /&gt;            &lt;BR /&gt;ld: Unsatisfied symbol "mi_cisha1_hmac" in file /usr/conf/lib/libencdom.a[reg_sha1.o]                                                                           &lt;BR /&gt;ld: Unsatisfied symbol "mi_cimd5_hmac" in file /usr/conf/lib/libencdom.a[reg_md5.o]                                                                             &lt;BR /&gt;ld: Unsatisfied symbol "mi_md5_hmac" in file /usr/conf/lib/libencdom.a[reg_md5.o]                                                                               &lt;BR /&gt;ld: Unsatisfied symbol "mi_sha1_hmac" in file /usr/conf/lib/libencdom.a[reg_sha1.o]                                                                             &lt;BR /&gt;4errors.                                      Error exit code 1                                &lt;BR /&gt;&lt;BR /&gt;Stop.                                                                           &lt;BR /&gt;config: make did an exit(1)                                            config failure.  &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I have the most recent mk_kernel patches, PHKL_15687 and PHKL_19291.  I've tried both in SAM and on command line.  In addition, I've tried different systems files.  And I tried the windows approach and rebooted. =\  Any suggestions?</description>
      <pubDate>Wed, 16 Oct 2002 17:51:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/kernel-compiling-error/m-p/2827329#M87960</guid>
      <dc:creator>Charles Darnell_1</dc:creator>
      <dc:date>2002-10-16T17:51:02Z</dc:date>
    </item>
    <item>
      <title>Re: kernel compiling error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/kernel-compiling-error/m-p/2827330#M87961</link>
      <description>Hi Charles&lt;BR /&gt;&lt;BR /&gt;The Unsatisfied symbol kernel build failure occurred because the&lt;BR /&gt;/etc/conf/master.d/ipsec-isu file is physically ordered before the&lt;BR /&gt;net file in the /usr/conf/master.d directory.&lt;BR /&gt;&lt;BR /&gt;The solution is to change the order in which the libraries are&lt;BR /&gt;specified within the ipsec-isu file.&lt;BR /&gt;&lt;BR /&gt;This is an excerpt from the current ipsec_isu file:&lt;BR /&gt;&lt;BR /&gt;     117 * Note: libhp-ux.a must be the last entry, do not place anything&lt;BR /&gt;           after it.&lt;BR /&gt;     118 *&lt;BR /&gt;     119 * Library   &lt;REQUIRED&gt;&lt;BR /&gt;     120 *&lt;BR /&gt;     121 libauth.a      0  &amp;lt;-- Move this line after line 123 libencdom.a&lt;BR /&gt;     122 libencint.a    0&lt;BR /&gt;     123 libencdom.a    0&lt;BR /&gt;     124 libvvipsec.a   0&lt;BR /&gt;     125 $$$&lt;BR /&gt;&lt;BR /&gt;Before performing a system backup, modify /usr/conf/master.d/ipsec-isu&lt;BR /&gt;in the following manner:&lt;BR /&gt;&lt;BR /&gt;     * Note: libhp-ux.a must be the last entry, do not place anything&lt;BR /&gt;     * after it.&lt;BR /&gt;     *&lt;BR /&gt;     * Library   &lt;REQUIRED&gt;&lt;BR /&gt;     *&lt;BR /&gt;     libencint.a     0&lt;BR /&gt;     libencdom.a     0&lt;BR /&gt;     libvvipsec.a    0&lt;BR /&gt;     libauth.a       0&lt;BR /&gt;     $$$&lt;BR /&gt;&lt;BR /&gt;Note that libauth.a has been moved to the last position.  The 'key'&lt;BR /&gt;to solving the Unsatisfied symbol failure is to make sure libauth.a&lt;BR /&gt;is ordered below libencdom.a.&lt;BR /&gt;&lt;BR /&gt;HTH&lt;BR /&gt;&lt;BR /&gt;Steve&lt;/REQUIRED&gt;&lt;/REQUIRED&gt;</description>
      <pubDate>Wed, 16 Oct 2002 18:48:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/kernel-compiling-error/m-p/2827330#M87961</guid>
      <dc:creator>steven Burgess_2</dc:creator>
      <dc:date>2002-10-16T18:48:30Z</dc:date>
    </item>
    <item>
      <title>Re: kernel compiling error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/kernel-compiling-error/m-p/2827331#M87962</link>
      <description>Thanks so much!  That was the fix!  I had to call HP on that one =P</description>
      <pubDate>Wed, 16 Oct 2002 20:21:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/kernel-compiling-error/m-p/2827331#M87962</guid>
      <dc:creator>Charles Darnell_1</dc:creator>
      <dc:date>2002-10-16T20:21:35Z</dc:date>
    </item>
  </channel>
</rss>

