Hi, On Sat, Jun 05, 2004 at 07:17:39PM +0100, Faye Gibbins wrote: > Just finished compiling 2.6.6 with UML patch 2.6.6-1. compile crashed with: > > snip--- > > gcc -Wl,-T,arch/um/uml.lds.s -static -Wl,--wrap,malloc -Wl,--wrap,free > -Wl,--wrap,calloc \ > -o linux arch/um/main.o vmlinux -L/usr/lib -lutil > vmlinux(.text+0x605f): In function `mem_init': > arch/um/kernel/mem.c:71: undefined reference to `phys_page' > vmlinux(.init.text+0x3380): In function `kmap_init': > include/asm/pgtable.h:394: undefined reference to `pte_offset' > collect2: ld returned 1 exit status > make: *** [linux] Error 1 > Died at get_uml_patch.pl line 173. > > snip--- > > gcc 3.3.3 > > On a PII 233 with a fresh Fed Core 2 install (everythign installed) plus > all current updates as of 30 May 04. Did you solve this? I am seeing the same with 2.6.7 & blazorblade's patches. > Can supply kernel '.config' and build script (perl) upon request, but > essentially I'm doing : > > snip--- > > use constant K => '2.6.6'; > use constant TMP => '/tmp/'; > use constant PATCHWWW => > 'http://heanet.dl.sourceforge.net/sourceforge/user-mode-linux/'; > use constant PATCH => 'uml-patch-'.K.'-1'; > use constant PATCHMD5BZ2 => 'ac6131657b587aba2d306d3708142ec6'; > use constant PATCHMD5 => '7c27d8acc8aa0ea6fe8dec712b0d4462'; > use constant KWWW => > 'http://www.mirror.ac.uk/sites/ftp.kernel.org/pub/linux/kernel/v2.6/'; > use constant KERNEL => 'linux-'.K.'.tar'; > use constant KMD5BZ2 => '5218790bc3db41e77a7422969639a9ad'; > use constant KMD5 => 'eaf803a496e7b8458ba332b04b89c0c0'; > > #..... > > chdir TMP || die "$!"; > > system("tar","-xf",TMP.KERNEL)&&die"$!"; > > chdir TMP."/linux-".K || die "$!"; > > print "Patching..."; > { > open(P,"<",TMP.PATCH)||die"$!"; > my @p =
; > close P; > > open(OUT,"| patch -p1")||die"$!"; > print OUT @p; > close OUT || die"$!"; > } > > #..... > > copy("$FindBin::Bin/uml.2.6.6",TMP."/linux-".K."/.config")||die"$!"; > > chdir TMP."/linux-".K || die "$!"; > > system("make oldconfig ARCH=um") && die "$!"; > system("make linux ARCH=um") && die "$!"; > > snip--- > > Any help would be appreciated. > -- Axel.Thimm at ATrpms.net