All of lore.kernel.org
 help / color / mirror / Atom feed
* compile problem
@ 2003-03-04 21:25 Brian
  0 siblings, 0 replies; 8+ messages in thread
From: Brian @ 2003-03-04 21:25 UTC (permalink / raw)
  To: linux-mtd

I posted before about a mount problem, but I believe it is because I was
compiling the utils outside my embedded build.  The embedded build I use
passes in a -nostdinc option to gcc.  I left this option out for the
mtd-utilites to try to get up and running with a newer kernel.  I am
attempting to get the current CVS tree to compile, but I get the following
errors:

--snip--
gcc -O2 -fomit-frame-pointer -fno-builtin -DCONFIG_LINEO -DCONFIG_NETtel -DC
ONFIG_X86 -Dlinux -D__linux__ -Dunix -DEMBED -nostdinc -I/usr/lib/gcc-lib/i3
86-redhat-linux/2.96/./include -I/usr/src/Lineo/current_build2/lib/glibc/bui
ld/include -I/usr/src/Lineo/current_build2 -I/usr/src/Lineo/current_build2/l
inux-2.4.x/include -I/usr/src/Lineo/current_build2/linux-2.4.x/include  -I/u
sr/src/Lineo/current_build2/linux-2.4.x/include/linux -I/usr/src/Lineo/curre
nt_build2/linux-2.4.x/fs/jffs2/
 -c -o compr_zlib.o compr_zlib.c
compr_zlib.c: In function `jffs2_zlib_compress':
compr_zlib.c:63: structure has no member named `zalloc'
compr_zlib.c:64: structure has no member named `zfree'
compr_zlib.c: In function `jffs2_zlib_decompress':
compr_zlib.c:108: structure has no member named `zalloc'
compr_zlib.c:109: structure has no member named `zfree'
make[2]: *** [compr_zlib.o] Error 1
--snip--

compr_zlib.c was not including the header zlib.h, so I changed that, and now
get the above errors.  I can't locate the file which lists zalloc, or zfree
in a structure.

Can anyone offer some insite into the problem?  I have tried copying headers
from the kernel souce, and several other things, but nothing had helped yet.

Thanks in advance!

-Brian

^ permalink raw reply	[flat|nested] 8+ messages in thread

* compile problem
@ 2003-05-26  9:44 sjb
       [not found] ` <3ED1E212.30108-XuTx12Z7TonQT0dZR+AlfA@public.gmane.org>
  0 siblings, 1 reply; 8+ messages in thread
From: sjb @ 2003-05-26  9:44 UTC (permalink / raw)
  To: acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f

Apologies for this not being a strictly ACPI problem.

I'm trying to compile an ACPI enabled kernel for my Vaio. I've tried 
numerous combinations of kernel sources and patches as per the pointers 
from members of this list.

However, I always get this error during "make modules_install"

Not being a seasoned kernel builder, I really don't know what's wrong 
and I was wondering if anybody here can tell me what's up.

TIA

sjb

cd /lib/modules/2.4.20; \
mkdir -p pcmcia; \
find kernel -path '*/pcmcia/*' -name '*.o' | xargs -i -r ln -sf ../{} pcmcia
if [ -r System.map ]; then /sbin/depmod -ae -F System.map  2.4.20; fi
depmod: *** Unresolved symbols in 
/lib/modules/2.4.20/kernel/drivers/mtd/maps/sc520cdp.o
depmod:         mtd_concat_create_R606fc87b
depmod:         mtd_concat_destroy_R9c645004
depmod: *** Unresolved symbols in 
/lib/modules/2.4.20/kernel/drivers/net/wan/comx.o
depmod:         proc_get_inode



-------------------------------------------------------
This SF.net email is sponsored by: ObjectStore.
If flattening out C++ or Java code to make your application fit in a
relational database is painful, don't do it! Check out ObjectStore.
Now part of Progress Software. http://www.objectstore.net/sourceforge

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: compile problem
       [not found] ` <3ED1E212.30108-XuTx12Z7TonQT0dZR+AlfA@public.gmane.org>
@ 2003-05-26 16:13   ` Nils Faerber
       [not found]     ` <20030526181327.21984b10.nils-t93Ne7XHvje5bSeCtf/tX7NAH6kLmebB@public.gmane.org>
  0 siblings, 1 reply; 8+ messages in thread
From: Nils Faerber @ 2003-05-26 16:13 UTC (permalink / raw)
  To: sjb; +Cc: acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f

On Mon, 26 May 2003 09:44:50 +0000
sjb <ottaky-XuTx12Z7TonQT0dZR+AlfA@public.gmane.org> wrote:
> Apologies for this not being a strictly ACPI problem.

It looks so, yes.

> I'm trying to compile an ACPI enabled kernel for my Vaio. I've tried 
> numerous combinations of kernel sources and patches as per the
> pointers from members of this list.
> 
> However, I always get this error during "make modules_install"
> 
> Not being a seasoned kernel builder, I really don't know what's wrong 
> and I was wondering if anybody here can tell me what's up.

The problem you are seein is that symbols of the built modules do not
resolve to kernel symbols. This can have several reasons. One simple one
is that those modules indeed reference something that isn't there
(anymore).
The second one is that your build symbol tables have become confused.
This may happen when patching kernel and/or modifying the kernel
configuration. This can be resolved by doing (inside the toplevel kernel
directory):
	mv .config ..
	make mrproper
	mv ../.config .
	make oldconfig
	make dep
	make bzImage modules modules_install

This helped me several times ;)

And last but not least the brute force method... unless you need those
modules, simply remove them from /lib/modules/* :)

> TIA
> sjb
CU
  nils

> cd /lib/modules/2.4.20; \
> mkdir -p pcmcia; \
> find kernel -path '*/pcmcia/*' -name '*.o' | xargs -i -r ln -sf ../{}
> pcmcia if [ -r System.map ]; then /sbin/depmod -ae -F System.map 
> 2.4.20; fi depmod: *** Unresolved symbols in 
> /lib/modules/2.4.20/kernel/drivers/mtd/maps/sc520cdp.o
> depmod:         mtd_concat_create_R606fc87b
> depmod:         mtd_concat_destroy_R9c645004
> depmod: *** Unresolved symbols in 
> /lib/modules/2.4.20/kernel/drivers/net/wan/comx.o
> depmod:         proc_get_inode
> 

-- 
kernel concepts          Tel: +49-271-771091-12
Dreisbachstr. 24         Fax: +49-271-771091-19
D-57250 Netphen          D1 : +49-170-2729106
--


-------------------------------------------------------
This SF.net email is sponsored by: ObjectStore.
If flattening out C++ or Java code to make your application fit in a
relational database is painful, don't do it! Check out ObjectStore.
Now part of Progress Software. http://www.objectstore.net/sourceforge

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: compile problem
       [not found]     ` <20030526181327.21984b10.nils-t93Ne7XHvje5bSeCtf/tX7NAH6kLmebB@public.gmane.org>
@ 2003-05-26 17:16       ` sjb
  0 siblings, 0 replies; 8+ messages in thread
From: sjb @ 2003-05-26 17:16 UTC (permalink / raw)
  To: acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f

Nils Faerber wrote:

> It looks so, yes.

Apologies again ;-)

I've given up for the time being.

sjb



-------------------------------------------------------
This SF.net email is sponsored by: ObjectStore.
If flattening out C++ or Java code to make your application fit in a
relational database is painful, don't do it! Check out ObjectStore.
Now part of Progress Software. http://www.objectstore.net/sourceforge

^ permalink raw reply	[flat|nested] 8+ messages in thread

* compile problem
@ 2004-08-20  3:47 James Harper
  2004-08-20  6:34 ` Ian Pratt
  0 siblings, 1 reply; 8+ messages in thread
From: James Harper @ 2004-08-20  3:47 UTC (permalink / raw)
  To: xen-devel@lists.sourceforge.net

[-- Attachment #1: Type: text/plain, Size: 411 bytes --]

I'm just trying to compile linux-iscsi-4.0.1 and it complains that it can't find arch/i686/Makefile within the linux kernel tree. The makefile defines the architecture as:

ARCH:=$(shell uname -m)

which on my system gives i686, not xen.

Is xen or linux-iscsi not doing the right thing here? I think probably the ARCH test should be skipped if I have specified it as an environment variable...

James

[-- Attachment #2: Type: text/html, Size: 878 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: compile problem
  2004-08-20  3:47 compile problem James Harper
@ 2004-08-20  6:34 ` Ian Pratt
  2004-08-20  7:13   ` James Harper
  0 siblings, 1 reply; 8+ messages in thread
From: Ian Pratt @ 2004-08-20  6:34 UTC (permalink / raw)
  To: James Harper; +Cc: xen-devel@lists.sourceforge.net, Ian.Pratt

> I'm just trying to compile linux-iscsi-4.0.1 and it complains that it can't find arch/i686/Makefile within the linux kernel tree. The makefile defines the architecture as:
> 
> ARCH:=$(shell uname -m)
> 
> which on my system gives i686, not xen.
> 
> Is xen or linux-iscsi not doing the right thing here? 

It's you that's not doing the right thing ;-)

Edit the KDIR entry in the iscsi Makefile to point at the top of
your linux-2.6.7-xen0 source tree and then issue "make ARCH=xen".

You'll need to enable CRYPTO, MD5 and CRC32C in your xen0 config
file first.

Ian
\x1f -=- MIME -=- \x1f\f

--_32C78F61-E48A-4108-A6B0-646DCE7DA88F_
Content-Type: text/plain;
	charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

I'm just trying to compile linux-iscsi-4.0.1 and it complains that it can't=
 find arch/i686/Makefile within the linux kernel tree. The makefile defines=
 the architecture as:

ARCH:=3D$(shell uname -m)

which on my system gives i686, not xen.

Is xen or linux-iscsi not doing the right thing here? I think probably the =
ARCH test should be skipped if I have specified it as an environment variab=
le...

James

--_32C78F61-E48A-4108-A6B0-646DCE7DA88F_
Content-Type: text/html;
	charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

<HTML dir=3Dltr><HEAD></HEAD>
<BODY>
<DIV><FONT face=3DArial color=3D#000000 size=3D2>I'm just trying to compile=
 linux-iscsi-4.0.1 and it complains that it can't find arch/i686/Makefile w=
ithin the linux kernel tree. The makefile defines the architecture as:</FON=
T></DIV>
<DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV>
<DIV><FONT face=3DArial size=3D2>ARCH:=3D$(shell uname -m)</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV>
<DIV><FONT face=3DArial size=3D2>which on my system gives i686, not xen.</F=
ONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV>
<DIV><FONT face=3DArial size=3D2>Is xen or linux-iscsi not doing the right =
thing here? I think probably the ARCH test should be skipped if I have spec=
ified it as an environment variable...</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV>
<DIV><FONT face=3DArial size=3D2>James</FONT></DIV></BODY></HTML>

--_32C78F61-E48A-4108-A6B0-646DCE7DA88F_--


-------------------------------------------------------
SF.Net email is sponsored by Shop4tech.com-Lowest price on Blank Media
100pk Sonic DVD-R 4x for only $29 -100pk Sonic DVD+R for only $33
Save 50% off Retail on Ink & Toner - Free Shipping and Free Gift.
http://www.shop4tech.com/z/Inkjet_Cartridges/9_108_r285
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/xen-devel



-------------------------------------------------------
SF.Net email is sponsored by Shop4tech.com-Lowest price on Blank Media
100pk Sonic DVD-R 4x for only $29 -100pk Sonic DVD+R for only $33
Save 50% off Retail on Ink & Toner - Free Shipping and Free Gift.
http://www.shop4tech.com/z/Inkjet_Cartridges/9_108_r285

^ permalink raw reply	[flat|nested] 8+ messages in thread

* RE: compile problem
  2004-08-20  6:34 ` Ian Pratt
@ 2004-08-20  7:13   ` James Harper
  0 siblings, 0 replies; 8+ messages in thread
From: James Harper @ 2004-08-20  7:13 UTC (permalink / raw)
  Cc: xen-devel@lists.sourceforge.net, Ian.Pratt


[-- Attachment #1.1: Type: text/plain, Size: 4273 bytes --]

It's actually xenU I want to test it in (but compiling under xen0), and a make says this:

Note: using kernel source from /lib/modules/2.6.7-xen0/build containing
kernel version 2.6.7

Note: using kernel config from /boot/config-2.6.7-xen0

So i set TOPDIR too, and also had to patch iscsi-id.c to fix these two errors:

iscsi-id.c:90: error: too few arguments to function `sysfs_open_class_device'
iscsi-id.c:94: error: too few arguments to function `sysfs_open_class_device'

by changing the calls to sysfs_open_class_device_path. hope that's the right thing to do. I must have a different version of sysfs (debian version is 1.1.0-1)

'make ARCH=xen' seems to do the right thing, but 'make ARCH=xen install' says:

Installing iSCSI driver for Linux 2.6.7-xen0

doh!

then I replaced all occurences of 'shell uname -r' in the makefile with 'shell echo 2.6.7-xenU'

and it compiles finally. The only problem is that I just did a bk pull and enabled SCSI in xenU, and now the kernel won't compile. i've attached the output of 'make linux26', the errors are to do with undefined references to 'direct_remap_area_pages'. Do you think that it is to do with the latest bk pull or to do with me enabling device drivers in an unprivileged kernel?

i'll get there eventually!

thanks

James




From: Ian Pratt
Sent: Fri 20/08/2004 4:34 PM
To: James Harper
Cc: xen-devel@lists.sourceforge.net; Ian.Pratt@cl.cam.ac.uk
Subject: Re: [Xen-devel] compile problem


> I'm just trying to compile linux-iscsi-4.0.1 and it complains that it can't find arch/i686/Makefile within the linux kernel tree. The makefile defines the architecture as:
> 
> ARCH:=$(shell uname -m)
> 
> which on my system gives i686, not xen.
> 
> Is xen or linux-iscsi not doing the right thing here? 

It's you that's not doing the right thing ;-)

Edit the KDIR entry in the iscsi Makefile to point at the top of
your linux-2.6.7-xen0 source tree and then issue "make ARCH=xen".

You'll need to enable CRYPTO, MD5 and CRC32C in your xen0 config
file first.

Ian
\x1f -=- MIME -=- \x1f\f
--_32C78F61-E48A-4108-A6B0-646DCE7DA88F_
Content-Type: text/plain;
	charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

I'm just trying to compile linux-iscsi-4.0.1 and it complains that it can't=
 find arch/i686/Makefile within the linux kernel tree. The makefile defines=
 the architecture as:

ARCH:=3D$(shell uname -m)

which on my system gives i686, not xen.

Is xen or linux-iscsi not doing the right thing here? I think probably the =
ARCH test should be skipped if I have specified it as an environment variab=
le...

James

--_32C78F61-E48A-4108-A6B0-646DCE7DA88F_
Content-Type: text/html;
	charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

<HTML dir=3Dltr><HEAD></HEAD>
<BODY>
<DIV><FONT face=3DArial color=3D#000000 size=3D2>I'm just trying to compile=
 linux-iscsi-4.0.1 and it complains that it can't find arch/i686/Makefile w=
ithin the linux kernel tree. The makefile defines the architecture as:</FON=
T></DIV>
<DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV>
<DIV><FONT face=3DArial size=3D2>ARCH:=3D$(shell uname -m)</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV>
<DIV><FONT face=3DArial size=3D2>which on my system gives i686, not xen.</F=
ONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV>
<DIV><FONT face=3DArial size=3D2>Is xen or linux-iscsi not doing the right =
thing here? I think probably the ARCH test should be skipped if I have spec=
ified it as an environment variable...</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV>
<DIV><FONT face=3DArial size=3D2>James</FONT></DIV></BODY></HTML>

--_32C78F61-E48A-4108-A6B0-646DCE7DA88F_--


-------------------------------------------------------
SF.Net email is sponsored by Shop4tech.com-Lowest price on Blank Media
100pk Sonic DVD-R 4x for only $29 -100pk Sonic DVD+R for only $33
Save 50% off Retail on Ink & Toner - Free Shipping and Free Gift.
http://www.shop4tech.com/z/Inkjet_Cartridges/9_108_r285
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/xen-devel

[-- Attachment #1.2: Type: text/html, Size: 5733 bytes --]

[-- Attachment #2: nohup.out --]
[-- Type: application/octet-stream, Size: 52354 bytes --]

make LINUX_RELEASE=2.6 mk-linux-trees
make[1]: Entering directory `/usr/src/xeno-unstable.bk'
rm -f -rf linux-2.6.7-xen0 linux-2.6.7-xenU
echo ./linux-2.6.7.tar.bz2 | grep -q bz2 && \
    tar -jxf ./linux-2.6.7.tar.bz2 || tar -zxf ./linux-2.6.7.tar.bz2
mv linux-2.6.7 linux-2.6.7-xen0
( cd linux-2.6.7-xen-sparse ; \
          ./mkbuildtree ../linux-2.6.7-xen0 )
cp -al linux-2.6.7-xen0 linux-2.6.7-xenU
make[1]: Leaving directory `/usr/src/xeno-unstable.bk'
make LINUX_RELEASE=2.6 config-xenU
make[1]: Entering directory `/usr/src/xeno-unstable.bk'
make -C linux-2.6.7-xenU ARCH=xen mrproper
make[2]: Entering directory `/usr/src/xeno-unstable.bk/linux-2.6.7-xenU'
make[2]: Leaving directory `/usr/src/xeno-unstable.bk/linux-2.6.7-xenU'
make[1]: Leaving directory `/usr/src/xeno-unstable.bk'
make LINUX_RELEASE=2.6 linux-xenU
make[1]: Entering directory `/usr/src/xeno-unstable.bk'
make -C linux-2.6.7-xenU ARCH=xen modules
make[2]: Entering directory `/usr/src/xeno-unstable.bk/linux-2.6.7-xenU'
  CHK     include/linux/version.h
  UPD     include/linux/version.h
  SYMLINK include/asm -> include/asm-xen
  HOSTCC  scripts/basic/fixdep
  HOSTCC  scripts/basic/split-include
  HOSTCC  scripts/basic/docproc
  SHIPPED scripts/kconfig/zconf.tab.h
  HOSTCC  scripts/kconfig/conf.o
  HOSTCC  scripts/kconfig/mconf.o
  SHIPPED scripts/kconfig/zconf.tab.c
  SHIPPED scripts/kconfig/lex.zconf.c
  HOSTCC  -fPIC scripts/kconfig/zconf.tab.o
  HOSTLLD -shared scripts/kconfig/libkconfig.so
  HOSTLD  scripts/kconfig/conf
scripts/kconfig/conf -s arch/xen/Kconfig
#
# using defaults found in .config
#
  SPLIT   include/linux/autoconf.h -> include/config/*
  SYMLINK include/asm -> include/asm-i386
  SYMLINK include/asm-xen/asm -> include/asm-xen/asm-i386
  SYMLINK include/asm-xen/asm-i386/hypervisor-ifs -> include/asm-xen/hypervisor-ifs
  HOSTCC  scripts/conmakehash
  HOSTCC  scripts/kallsyms
  CC      scripts/empty.o
  HOSTCC  scripts/mk_elfconfig
  MKELF   scripts/elfconfig.h
  HOSTCC  scripts/file2alias.o
  HOSTCC  scripts/modpost.o
  HOSTCC  scripts/sumversion.o
  HOSTLD  scripts/modpost
  HOSTCC  scripts/pnmtologo
  HOSTCC  scripts/bin2c
  CC      arch/i386/kernel/asm-offsets.s
  CHK     include/asm-i386/asm_offsets.h
  UPD     include/asm-i386/asm_offsets.h
  CC [M]  fs/binfmt_aout.o
  CC [M]  fs/binfmt_misc.o
  CC [M]  fs/exportfs/expfs.o
  LD [M]  fs/exportfs/exportfs.o
  CC [M]  fs/fat/cache.o
  CC [M]  fs/fat/dir.o
  CC [M]  fs/fat/file.o
  CC [M]  fs/fat/inode.o
  CC [M]  fs/fat/misc.o
  CC [M]  fs/fat/fatfs_syms.o
  LD [M]  fs/fat/fat.o
  CC [M]  fs/isofs/namei.o
  CC [M]  fs/isofs/inode.o
  CC [M]  fs/isofs/dir.o
  CC [M]  fs/isofs/util.o
  CC [M]  fs/isofs/rock.o
  CC [M]  fs/isofs/joliet.o
  CC [M]  fs/isofs/compress.o
  LD [M]  fs/isofs/isofs.o
  CC [M]  fs/msdos/namei.o
  LD [M]  fs/msdos/msdos.o
  CC [M]  fs/nfsd/nfssvc.o
  CC [M]  fs/nfsd/nfsctl.o
  CC [M]  fs/nfsd/nfsproc.o
  CC [M]  fs/nfsd/nfsfh.o
  CC [M]  fs/nfsd/vfs.o
  CC [M]  fs/nfsd/export.o
  CC [M]  fs/nfsd/auth.o
  CC [M]  fs/nfsd/lockd.o
  CC [M]  fs/nfsd/nfscache.o
  CC [M]  fs/nfsd/nfsxdr.o
  CC [M]  fs/nfsd/stats.o
  CC [M]  fs/nfsd/nfs3proc.o
  CC [M]  fs/nfsd/nfs3xdr.o
  LD [M]  fs/nfsd/nfsd.o
  CC [M]  fs/nls/nls_base.o
  CC [M]  fs/nls/nls_cp437.o
  CC [M]  fs/nls/nls_iso8859-1.o
  CC [M]  fs/nls/nls_iso8859-15.o
  CC [M]  fs/nls/nls_utf8.o
  CC [M]  fs/udf/balloc.o
  CC [M]  fs/udf/dir.o
  CC [M]  fs/udf/file.o
  CC [M]  fs/udf/ialloc.o
  CC [M]  fs/udf/inode.o
  CC [M]  fs/udf/lowlevel.o
  CC [M]  fs/udf/namei.o
  CC [M]  fs/udf/partition.o
  CC [M]  fs/udf/super.o
  CC [M]  fs/udf/truncate.o
  CC [M]  fs/udf/symlink.o
  CC [M]  fs/udf/fsync.o
  CC [M]  fs/udf/crc.o
  CC [M]  fs/udf/directory.o
  CC [M]  fs/udf/misc.o
  CC [M]  fs/udf/udftime.o
  CC [M]  fs/udf/unicode.o
  LD [M]  fs/udf/udf.o
  CC [M]  fs/vfat/namei.o
  LD [M]  fs/vfat/vfat.o
  CC [M]  crypto/crypto_null.o
  CC [M]  crypto/md4.o
  CC [M]  crypto/md5.o
  CC [M]  crypto/sha1.o
  CC [M]  crypto/sha256.o
  CC [M]  crypto/sha512.o
  CC [M]  crypto/des.o
  CC [M]  crypto/blowfish.o
  CC [M]  crypto/twofish.o
  CC [M]  crypto/serpent.o
  CC [M]  crypto/aes.o
  CC [M]  crypto/cast5.o
  CC [M]  crypto/cast6.o
  CC [M]  crypto/arc4.o
  CC [M]  crypto/deflate.o
  CC [M]  crypto/michael_mic.o
  CC [M]  crypto/crc32c.o
  CC [M]  drivers/block/loop.o
  CC [M]  drivers/block/nbd.o
  CC [M]  drivers/block/cryptoloop.o
  CC [M]  drivers/cdrom/cdrom.o
  CC [M]  drivers/md/raid1.o
  CC [M]  drivers/md/raid5.o
  CC [M]  drivers/md/xor.o
  CC [M]  drivers/md/md.o
  CC [M]  drivers/md/dm.o
  CC [M]  drivers/md/dm-table.o
  CC [M]  drivers/md/dm-target.o
  CC [M]  drivers/md/dm-linear.o
  CC [M]  drivers/md/dm-stripe.o
  CC [M]  drivers/md/dm-ioctl.o
  LD [M]  drivers/md/dm-mod.o
  CC [M]  drivers/md/dm-crypt.o
  CC [M]  drivers/net/ppp_generic.o
  CC [M]  drivers/net/slhc.o
  CC [M]  drivers/net/ppp_async.o
  CC [M]  drivers/net/ppp_synctty.o
  CC [M]  drivers/net/ppp_deflate.o
  CC [M]  drivers/net/bsd_comp.o
  CC [M]  drivers/net/pppox.o
  CC [M]  drivers/net/pppoe.o
  CC [M]  drivers/net/dummy.o
  CC [M]  drivers/scsi/scsi.o
  CC [M]  drivers/scsi/hosts.o
  CC [M]  drivers/scsi/scsi_ioctl.o
  CC [M]  drivers/scsi/constants.o
  CC [M]  drivers/scsi/scsicam.o
  CC [M]  drivers/scsi/scsi_error.o
  CC [M]  drivers/scsi/scsi_lib.o
  CC [M]  drivers/scsi/scsi_scan.o
  CC [M]  drivers/scsi/scsi_syms.o
  CC [M]  drivers/scsi/scsi_sysfs.o
  CC [M]  drivers/scsi/scsi_devinfo.o
  CC [M]  drivers/scsi/scsi_sysctl.o
  CC [M]  drivers/scsi/scsi_proc.o
  CC [M]  drivers/scsi/sd.o
  CC [M]  drivers/scsi/sr.o
  CC [M]  drivers/scsi/sr_ioctl.o
  CC [M]  drivers/scsi/sr_vendor.o
  LD [M]  drivers/scsi/scsi_mod.o
  CC [M]  drivers/scsi/st.o
  LD [M]  drivers/scsi/sd_mod.o
  LD [M]  drivers/scsi/sr_mod.o
  CC [M]  drivers/scsi/sg.o
  CC [M]  net/bridge/netfilter/ebtables.o
  CC [M]  net/bridge/netfilter/ebtable_broute.o
  CC [M]  net/bridge/netfilter/ebtable_filter.o
  CC [M]  net/bridge/netfilter/ebtable_nat.o
  CC [M]  net/bridge/netfilter/ebt_802_3.o
  CC [M]  net/bridge/netfilter/ebt_among.o
  CC [M]  net/bridge/netfilter/ebt_arp.o
  CC [M]  net/bridge/netfilter/ebt_ip.o
  CC [M]  net/bridge/netfilter/ebt_limit.o
  CC [M]  net/bridge/netfilter/ebt_mark_m.o
  CC [M]  net/bridge/netfilter/ebt_pkttype.o
  CC [M]  net/bridge/netfilter/ebt_stp.o
  CC [M]  net/bridge/netfilter/ebt_vlan.o
  CC [M]  net/bridge/netfilter/ebt_arpreply.o
  CC [M]  net/bridge/netfilter/ebt_mark.o
  CC [M]  net/bridge/netfilter/ebt_dnat.o
  CC [M]  net/bridge/netfilter/ebt_redirect.o
  CC [M]  net/bridge/netfilter/ebt_snat.o
  CC [M]  net/bridge/netfilter/ebt_log.o
  CC [M]  net/ipv4/ah4.o
  CC [M]  net/ipv4/esp4.o
  CC [M]  net/ipv4/ipcomp.o
  CC [M]  net/ipv4/netfilter/ip_conntrack_standalone.o
  CC [M]  net/ipv4/netfilter/ip_conntrack_core.o
  CC [M]  net/ipv4/netfilter/ip_conntrack_proto_generic.o
  CC [M]  net/ipv4/netfilter/ip_conntrack_proto_tcp.o
  CC [M]  net/ipv4/netfilter/ip_conntrack_proto_udp.o
  CC [M]  net/ipv4/netfilter/ip_conntrack_proto_icmp.o
  CC [M]  net/ipv4/netfilter/ip_nat_standalone.o
  CC [M]  net/ipv4/netfilter/ip_nat_rule.o
  CC [M]  net/ipv4/netfilter/ip_nat_core.o
  CC [M]  net/ipv4/netfilter/ip_nat_helper.o
  CC [M]  net/ipv4/netfilter/ip_nat_proto_unknown.o
  CC [M]  net/ipv4/netfilter/ip_nat_proto_tcp.o
  CC [M]  net/ipv4/netfilter/ip_nat_proto_udp.o
  CC [M]  net/ipv4/netfilter/ip_nat_proto_icmp.o
  LD [M]  net/ipv4/netfilter/ip_conntrack.o
  CC [M]  net/ipv4/netfilter/ip_conntrack_amanda.o
  CC [M]  net/ipv4/netfilter/ip_conntrack_tftp.o
  CC [M]  net/ipv4/netfilter/ip_conntrack_ftp.o
  CC [M]  net/ipv4/netfilter/ip_conntrack_irc.o
  CC [M]  net/ipv4/netfilter/ip_nat_amanda.o
  CC [M]  net/ipv4/netfilter/ip_nat_tftp.o
  CC [M]  net/ipv4/netfilter/ip_nat_ftp.o
  CC [M]  net/ipv4/netfilter/ip_nat_irc.o
  CC [M]  net/ipv4/netfilter/ip_tables.o
  CC [M]  net/ipv4/netfilter/iptable_filter.o
  CC [M]  net/ipv4/netfilter/iptable_mangle.o
  LD [M]  net/ipv4/netfilter/iptable_nat.o
  CC [M]  net/ipv4/netfilter/iptable_raw.o
  CC [M]  net/ipv4/netfilter/ipt_helper.o
  CC [M]  net/ipv4/netfilter/ipt_limit.o
  CC [M]  net/ipv4/netfilter/ipt_mark.o
  CC [M]  net/ipv4/netfilter/ipt_mac.o
  CC [M]  net/ipv4/netfilter/ipt_iprange.o
  CC [M]  net/ipv4/netfilter/ipt_pkttype.o
  CC [M]  net/ipv4/netfilter/ipt_multiport.o
  CC [M]  net/ipv4/netfilter/ipt_owner.o
  CC [M]  net/ipv4/netfilter/ipt_tos.o
  CC [M]  net/ipv4/netfilter/ipt_recent.o
  CC [M]  net/ipv4/netfilter/ipt_ecn.o
  CC [M]  net/ipv4/netfilter/ipt_dscp.o
  CC [M]  net/ipv4/netfilter/ipt_ah.o
  CC [M]  net/ipv4/netfilter/ipt_esp.o
  CC [M]  net/ipv4/netfilter/ipt_length.o
  CC [M]  net/ipv4/netfilter/ipt_ttl.o
  CC [M]  net/ipv4/netfilter/ipt_state.o
  CC [M]  net/ipv4/netfilter/ipt_conntrack.o
  CC [M]  net/ipv4/netfilter/ipt_tcpmss.o
  CC [M]  net/ipv4/netfilter/ipt_physdev.o
  CC [M]  net/ipv4/netfilter/ipt_REJECT.o
  CC [M]  net/ipv4/netfilter/ipt_TOS.o
  CC [M]  net/ipv4/netfilter/ipt_ECN.o
  CC [M]  net/ipv4/netfilter/ipt_DSCP.o
  CC [M]  net/ipv4/netfilter/ipt_MARK.o
  CC [M]  net/ipv4/netfilter/ipt_MASQUERADE.o
  CC [M]  net/ipv4/netfilter/ipt_REDIRECT.o
  CC [M]  net/ipv4/netfilter/ipt_NETMAP.o
  CC [M]  net/ipv4/netfilter/ipt_SAME.o
  CC [M]  net/ipv4/netfilter/ipt_CLASSIFY.o
  CC [M]  net/ipv4/netfilter/ip_nat_snmp_basic.o
  CC [M]  net/ipv4/netfilter/ipt_LOG.o
  CC [M]  net/ipv4/netfilter/ipt_ULOG.o
  CC [M]  net/ipv4/netfilter/ipt_TCPMSS.o
  CC [M]  net/ipv4/netfilter/ip_queue.o
  CC [M]  net/ipv6/af_inet6.o
  CC [M]  net/ipv6/anycast.o
  CC [M]  net/ipv6/ip6_output.o
  CC [M]  net/ipv6/ip6_input.o
  CC [M]  net/ipv6/addrconf.o
  CC [M]  net/ipv6/sit.o
  CC [M]  net/ipv6/route.o
  CC [M]  net/ipv6/ip6_fib.o
  CC [M]  net/ipv6/ipv6_sockglue.o
  CC [M]  net/ipv6/ndisc.o
  CC [M]  net/ipv6/udp.o
  CC [M]  net/ipv6/raw.o
  CC [M]  net/ipv6/protocol.o
  CC [M]  net/ipv6/icmp.o
  CC [M]  net/ipv6/mcast.o
  CC [M]  net/ipv6/reassembly.o
  CC [M]  net/ipv6/tcp_ipv6.o
  CC [M]  net/ipv6/exthdrs.o
  CC [M]  net/ipv6/sysctl_net_ipv6.o
  CC [M]  net/ipv6/datagram.o
  CC [M]  net/ipv6/proc.o
  CC [M]  net/ipv6/ip6_flowlabel.o
  CC [M]  net/ipv6/ipv6_syms.o
  CC [M]  net/ipv6/xfrm6_policy.o
  CC [M]  net/ipv6/xfrm6_state.o
  CC [M]  net/ipv6/xfrm6_input.o
  LD [M]  net/ipv6/ipv6.o
  CC [M]  net/ipv6/ah6.o
  CC [M]  net/ipv6/esp6.o
  CC [M]  net/ipv6/ipcomp6.o
  CC [M]  net/ipv6/ip6_tunnel.o
  CC [M]  net/ipv6/netfilter/ip6_tables.o
  CC [M]  net/ipv6/netfilter/ip6t_limit.o
  CC [M]  net/ipv6/netfilter/ip6t_mark.o
  CC [M]  net/ipv6/netfilter/ip6t_length.o
  CC [M]  net/ipv6/netfilter/ip6t_mac.o
  CC [M]  net/ipv6/netfilter/ip6t_rt.o
  CC [M]  net/ipv6/netfilter/ip6t_hbh.o
  CC [M]  net/ipv6/netfilter/ip6t_dst.o
  CC [M]  net/ipv6/netfilter/ip6t_ipv6header.o
  CC [M]  net/ipv6/netfilter/ip6t_frag.o
  CC [M]  net/ipv6/netfilter/ip6t_esp.o
  CC [M]  net/ipv6/netfilter/ip6t_ah.o
  CC [M]  net/ipv6/netfilter/ip6t_eui64.o
  CC [M]  net/ipv6/netfilter/ip6t_multiport.o
  CC [M]  net/ipv6/netfilter/ip6t_owner.o
  CC [M]  net/ipv6/netfilter/ip6table_filter.o
  CC [M]  net/ipv6/netfilter/ip6table_mangle.o
  CC [M]  net/ipv6/netfilter/ip6t_MARK.o
  CC [M]  net/ipv6/netfilter/ip6_queue.o
  CC [M]  net/ipv6/netfilter/ip6t_LOG.o
  CC [M]  net/ipv6/netfilter/ip6table_raw.o
  CC [M]  net/ipv6/netfilter/ip6t_hl.o
  CC [M]  net/key/af_key.o
  CC [M]  net/sched/sch_cbq.o
  CC [M]  net/sched/sch_htb.o
  CC [M]  net/sched/sch_csz.o
  CC [M]  net/sched/sch_hfsc.o
  CC [M]  net/sched/sch_red.o
  CC [M]  net/sched/sch_gred.o
  CC [M]  net/sched/sch_ingress.o
  CC [M]  net/sched/sch_dsmark.o
  CC [M]  net/sched/sch_sfq.o
  CC [M]  net/sched/sch_tbf.o
  CC [M]  net/sched/sch_teql.o
  CC [M]  net/sched/sch_prio.o
  CC [M]  net/sched/sch_delay.o
  CC [M]  net/sched/cls_u32.o
  CC [M]  net/sched/cls_route.o
  CC [M]  net/sched/cls_fw.o
  CC [M]  net/sched/cls_rsvp.o
  CC [M]  net/sched/cls_tcindex.o
  CC [M]  net/sched/cls_rsvp6.o
  CC [M]  net/xfrm/xfrm_user.o
  HOSTCC  lib/gen_crc32table
  GEN     lib/crc32table.h
  CC [M]  lib/crc32.o
  CC [M]  lib/libcrc32c.o
  CC [M]  lib/zlib_deflate/deflate.o
  CC [M]  lib/zlib_deflate/deftree.o
  CC [M]  lib/zlib_deflate/deflate_syms.o
  LD [M]  lib/zlib_deflate/zlib_deflate.o
  Building modules, stage 2.
  MODPOST
  CC      crypto/aes.mod.o
  LD [M]  crypto/aes.ko
  CC      net/key/af_key.mod.o
  LD [M]  net/key/af_key.ko
  CC      net/ipv4/ah4.mod.o
  LD [M]  net/ipv4/ah4.ko
  CC      net/ipv6/ah6.mod.o
  LD [M]  net/ipv6/ah6.ko
  CC      crypto/arc4.mod.o
  LD [M]  crypto/arc4.ko
  CC      fs/binfmt_aout.mod.o
  LD [M]  fs/binfmt_aout.ko
  CC      fs/binfmt_misc.mod.o
  LD [M]  fs/binfmt_misc.ko
  CC      crypto/blowfish.mod.o
  LD [M]  crypto/blowfish.ko
  CC      drivers/net/bsd_comp.mod.o
  LD [M]  drivers/net/bsd_comp.ko
  CC      crypto/cast5.mod.o
  LD [M]  crypto/cast5.ko
  CC      crypto/cast6.mod.o
  LD [M]  crypto/cast6.ko
  CC      drivers/cdrom/cdrom.mod.o
  LD [M]  drivers/cdrom/cdrom.ko
  CC      net/sched/cls_fw.mod.o
  LD [M]  net/sched/cls_fw.ko
  CC      net/sched/cls_route.mod.o
  LD [M]  net/sched/cls_route.ko
  CC      net/sched/cls_rsvp.mod.o
  LD [M]  net/sched/cls_rsvp.ko
  CC      net/sched/cls_rsvp6.mod.o
  LD [M]  net/sched/cls_rsvp6.ko
  CC      net/sched/cls_tcindex.mod.o
  LD [M]  net/sched/cls_tcindex.ko
  CC      net/sched/cls_u32.mod.o
  LD [M]  net/sched/cls_u32.ko
  CC      lib/crc32.mod.o
  LD [M]  lib/crc32.ko
  CC      crypto/crc32c.mod.o
  LD [M]  crypto/crc32c.ko
  CC      crypto/crypto_null.mod.o
  LD [M]  crypto/crypto_null.ko
  CC      drivers/block/cryptoloop.mod.o
  LD [M]  drivers/block/cryptoloop.ko
  CC      crypto/deflate.mod.o
  LD [M]  crypto/deflate.ko
  CC      crypto/des.mod.o
  LD [M]  crypto/des.ko
  CC      drivers/md/dm-crypt.mod.o
  LD [M]  drivers/md/dm-crypt.ko
  CC      drivers/md/dm-mod.mod.o
  LD [M]  drivers/md/dm-mod.ko
  CC      drivers/net/dummy.mod.o
  LD [M]  drivers/net/dummy.ko
  CC      net/bridge/netfilter/ebt_802_3.mod.o
  LD [M]  net/bridge/netfilter/ebt_802_3.ko
  CC      net/bridge/netfilter/ebt_among.mod.o
  LD [M]  net/bridge/netfilter/ebt_among.ko
  CC      net/bridge/netfilter/ebt_arp.mod.o
  LD [M]  net/bridge/netfilter/ebt_arp.ko
  CC      net/bridge/netfilter/ebt_arpreply.mod.o
  LD [M]  net/bridge/netfilter/ebt_arpreply.ko
  CC      net/bridge/netfilter/ebt_dnat.mod.o
  LD [M]  net/bridge/netfilter/ebt_dnat.ko
  CC      net/bridge/netfilter/ebt_ip.mod.o
  LD [M]  net/bridge/netfilter/ebt_ip.ko
  CC      net/bridge/netfilter/ebt_limit.mod.o
  LD [M]  net/bridge/netfilter/ebt_limit.ko
  CC      net/bridge/netfilter/ebt_log.mod.o
  LD [M]  net/bridge/netfilter/ebt_log.ko
  CC      net/bridge/netfilter/ebt_mark.mod.o
  LD [M]  net/bridge/netfilter/ebt_mark.ko
  CC      net/bridge/netfilter/ebt_mark_m.mod.o
  LD [M]  net/bridge/netfilter/ebt_mark_m.ko
  CC      net/bridge/netfilter/ebt_pkttype.mod.o
  LD [M]  net/bridge/netfilter/ebt_pkttype.ko
  CC      net/bridge/netfilter/ebt_redirect.mod.o
  LD [M]  net/bridge/netfilter/ebt_redirect.ko
  CC      net/bridge/netfilter/ebt_snat.mod.o
  LD [M]  net/bridge/netfilter/ebt_snat.ko
  CC      net/bridge/netfilter/ebt_stp.mod.o
  LD [M]  net/bridge/netfilter/ebt_stp.ko
  CC      net/bridge/netfilter/ebt_vlan.mod.o
  LD [M]  net/bridge/netfilter/ebt_vlan.ko
  CC      net/bridge/netfilter/ebtable_broute.mod.o
  LD [M]  net/bridge/netfilter/ebtable_broute.ko
  CC      net/bridge/netfilter/ebtable_filter.mod.o
  LD [M]  net/bridge/netfilter/ebtable_filter.ko
  CC      net/bridge/netfilter/ebtable_nat.mod.o
  LD [M]  net/bridge/netfilter/ebtable_nat.ko
  CC      net/bridge/netfilter/ebtables.mod.o
  LD [M]  net/bridge/netfilter/ebtables.ko
  CC      net/ipv4/esp4.mod.o
  LD [M]  net/ipv4/esp4.ko
  CC      net/ipv6/esp6.mod.o
  LD [M]  net/ipv6/esp6.ko
  CC      fs/exportfs/exportfs.mod.o
  LD [M]  fs/exportfs/exportfs.ko
  CC      fs/fat/fat.mod.o
  LD [M]  fs/fat/fat.ko
  CC      net/ipv6/netfilter/ip6_queue.mod.o
  LD [M]  net/ipv6/netfilter/ip6_queue.ko
  CC      net/ipv6/netfilter/ip6_tables.mod.o
  LD [M]  net/ipv6/netfilter/ip6_tables.ko
  CC      net/ipv6/ip6_tunnel.mod.o
  LD [M]  net/ipv6/ip6_tunnel.ko
  CC      net/ipv6/netfilter/ip6t_LOG.mod.o
  LD [M]  net/ipv6/netfilter/ip6t_LOG.ko
  CC      net/ipv6/netfilter/ip6t_MARK.mod.o
  LD [M]  net/ipv6/netfilter/ip6t_MARK.ko
  CC      net/ipv6/netfilter/ip6t_ah.mod.o
  LD [M]  net/ipv6/netfilter/ip6t_ah.ko
  CC      net/ipv6/netfilter/ip6t_dst.mod.o
  LD [M]  net/ipv6/netfilter/ip6t_dst.ko
  CC      net/ipv6/netfilter/ip6t_esp.mod.o
  LD [M]  net/ipv6/netfilter/ip6t_esp.ko
  CC      net/ipv6/netfilter/ip6t_eui64.mod.o
  LD [M]  net/ipv6/netfilter/ip6t_eui64.ko
  CC      net/ipv6/netfilter/ip6t_frag.mod.o
  LD [M]  net/ipv6/netfilter/ip6t_frag.ko
  CC      net/ipv6/netfilter/ip6t_hbh.mod.o
  LD [M]  net/ipv6/netfilter/ip6t_hbh.ko
  CC      net/ipv6/netfilter/ip6t_hl.mod.o
  LD [M]  net/ipv6/netfilter/ip6t_hl.ko
  CC      net/ipv6/netfilter/ip6t_ipv6header.mod.o
  LD [M]  net/ipv6/netfilter/ip6t_ipv6header.ko
  CC      net/ipv6/netfilter/ip6t_length.mod.o
  LD [M]  net/ipv6/netfilter/ip6t_length.ko
  CC      net/ipv6/netfilter/ip6t_limit.mod.o
  LD [M]  net/ipv6/netfilter/ip6t_limit.ko
  CC      net/ipv6/netfilter/ip6t_mac.mod.o
  LD [M]  net/ipv6/netfilter/ip6t_mac.ko
  CC      net/ipv6/netfilter/ip6t_mark.mod.o
  LD [M]  net/ipv6/netfilter/ip6t_mark.ko
  CC      net/ipv6/netfilter/ip6t_multiport.mod.o
  LD [M]  net/ipv6/netfilter/ip6t_multiport.ko
  CC      net/ipv6/netfilter/ip6t_owner.mod.o
  LD [M]  net/ipv6/netfilter/ip6t_owner.ko
  CC      net/ipv6/netfilter/ip6t_rt.mod.o
  LD [M]  net/ipv6/netfilter/ip6t_rt.ko
  CC      net/ipv6/netfilter/ip6table_filter.mod.o
  LD [M]  net/ipv6/netfilter/ip6table_filter.ko
  CC      net/ipv6/netfilter/ip6table_mangle.mod.o
  LD [M]  net/ipv6/netfilter/ip6table_mangle.ko
  CC      net/ipv6/netfilter/ip6table_raw.mod.o
  LD [M]  net/ipv6/netfilter/ip6table_raw.ko
  CC      net/ipv4/netfilter/ip_conntrack.mod.o
  LD [M]  net/ipv4/netfilter/ip_conntrack.ko
  CC      net/ipv4/netfilter/ip_conntrack_amanda.mod.o
  LD [M]  net/ipv4/netfilter/ip_conntrack_amanda.ko
  CC      net/ipv4/netfilter/ip_conntrack_ftp.mod.o
  LD [M]  net/ipv4/netfilter/ip_conntrack_ftp.ko
  CC      net/ipv4/netfilter/ip_conntrack_irc.mod.o
  LD [M]  net/ipv4/netfilter/ip_conntrack_irc.ko
  CC      net/ipv4/netfilter/ip_conntrack_tftp.mod.o
  LD [M]  net/ipv4/netfilter/ip_conntrack_tftp.ko
  CC      net/ipv4/netfilter/ip_nat_amanda.mod.o
  LD [M]  net/ipv4/netfilter/ip_nat_amanda.ko
  CC      net/ipv4/netfilter/ip_nat_ftp.mod.o
  LD [M]  net/ipv4/netfilter/ip_nat_ftp.ko
  CC      net/ipv4/netfilter/ip_nat_irc.mod.o
  LD [M]  net/ipv4/netfilter/ip_nat_irc.ko
  CC      net/ipv4/netfilter/ip_nat_snmp_basic.mod.o
  LD [M]  net/ipv4/netfilter/ip_nat_snmp_basic.ko
  CC      net/ipv4/netfilter/ip_nat_tftp.mod.o
  LD [M]  net/ipv4/netfilter/ip_nat_tftp.ko
  CC      net/ipv4/netfilter/ip_queue.mod.o
  LD [M]  net/ipv4/netfilter/ip_queue.ko
  CC      net/ipv4/netfilter/ip_tables.mod.o
  LD [M]  net/ipv4/netfilter/ip_tables.ko
  CC      net/ipv4/ipcomp.mod.o
  LD [M]  net/ipv4/ipcomp.ko
  CC      net/ipv6/ipcomp6.mod.o
  LD [M]  net/ipv6/ipcomp6.ko
  CC      net/ipv4/netfilter/ipt_CLASSIFY.mod.o
  LD [M]  net/ipv4/netfilter/ipt_CLASSIFY.ko
  CC      net/ipv4/netfilter/ipt_DSCP.mod.o
  LD [M]  net/ipv4/netfilter/ipt_DSCP.ko
  CC      net/ipv4/netfilter/ipt_ECN.mod.o
  LD [M]  net/ipv4/netfilter/ipt_ECN.ko
  CC      net/ipv4/netfilter/ipt_LOG.mod.o
  LD [M]  net/ipv4/netfilter/ipt_LOG.ko
  CC      net/ipv4/netfilter/ipt_MARK.mod.o
  LD [M]  net/ipv4/netfilter/ipt_MARK.ko
  CC      net/ipv4/netfilter/ipt_MASQUERADE.mod.o
  LD [M]  net/ipv4/netfilter/ipt_MASQUERADE.ko
  CC      net/ipv4/netfilter/ipt_NETMAP.mod.o
  LD [M]  net/ipv4/netfilter/ipt_NETMAP.ko
  CC      net/ipv4/netfilter/ipt_REDIRECT.mod.o
  LD [M]  net/ipv4/netfilter/ipt_REDIRECT.ko
  CC      net/ipv4/netfilter/ipt_REJECT.mod.o
  LD [M]  net/ipv4/netfilter/ipt_REJECT.ko
  CC      net/ipv4/netfilter/ipt_SAME.mod.o
  LD [M]  net/ipv4/netfilter/ipt_SAME.ko
  CC      net/ipv4/netfilter/ipt_TCPMSS.mod.o
  LD [M]  net/ipv4/netfilter/ipt_TCPMSS.ko
  CC      net/ipv4/netfilter/ipt_TOS.mod.o
  LD [M]  net/ipv4/netfilter/ipt_TOS.ko
  CC      net/ipv4/netfilter/ipt_ULOG.mod.o
  LD [M]  net/ipv4/netfilter/ipt_ULOG.ko
  CC      net/ipv4/netfilter/ipt_ah.mod.o
  LD [M]  net/ipv4/netfilter/ipt_ah.ko
  CC      net/ipv4/netfilter/ipt_conntrack.mod.o
  LD [M]  net/ipv4/netfilter/ipt_conntrack.ko
  CC      net/ipv4/netfilter/ipt_dscp.mod.o
  LD [M]  net/ipv4/netfilter/ipt_dscp.ko
  CC      net/ipv4/netfilter/ipt_ecn.mod.o
  LD [M]  net/ipv4/netfilter/ipt_ecn.ko
  CC      net/ipv4/netfilter/ipt_esp.mod.o
  LD [M]  net/ipv4/netfilter/ipt_esp.ko
  CC      net/ipv4/netfilter/ipt_helper.mod.o
  LD [M]  net/ipv4/netfilter/ipt_helper.ko
  CC      net/ipv4/netfilter/ipt_iprange.mod.o
  LD [M]  net/ipv4/netfilter/ipt_iprange.ko
  CC      net/ipv4/netfilter/ipt_length.mod.o
  LD [M]  net/ipv4/netfilter/ipt_length.ko
  CC      net/ipv4/netfilter/ipt_limit.mod.o
  LD [M]  net/ipv4/netfilter/ipt_limit.ko
  CC      net/ipv4/netfilter/ipt_mac.mod.o
  LD [M]  net/ipv4/netfilter/ipt_mac.ko
  CC      net/ipv4/netfilter/ipt_mark.mod.o
  LD [M]  net/ipv4/netfilter/ipt_mark.ko
  CC      net/ipv4/netfilter/ipt_multiport.mod.o
  LD [M]  net/ipv4/netfilter/ipt_multiport.ko
  CC      net/ipv4/netfilter/ipt_owner.mod.o
  LD [M]  net/ipv4/netfilter/ipt_owner.ko
  CC      net/ipv4/netfilter/ipt_physdev.mod.o
  LD [M]  net/ipv4/netfilter/ipt_physdev.ko
  CC      net/ipv4/netfilter/ipt_pkttype.mod.o
  LD [M]  net/ipv4/netfilter/ipt_pkttype.ko
  CC      net/ipv4/netfilter/ipt_recent.mod.o
  LD [M]  net/ipv4/netfilter/ipt_recent.ko
  CC      net/ipv4/netfilter/ipt_state.mod.o
  LD [M]  net/ipv4/netfilter/ipt_state.ko
  CC      net/ipv4/netfilter/ipt_tcpmss.mod.o
  LD [M]  net/ipv4/netfilter/ipt_tcpmss.ko
  CC      net/ipv4/netfilter/ipt_tos.mod.o
  LD [M]  net/ipv4/netfilter/ipt_tos.ko
  CC      net/ipv4/netfilter/ipt_ttl.mod.o
  LD [M]  net/ipv4/netfilter/ipt_ttl.ko
  CC      net/ipv4/netfilter/iptable_filter.mod.o
  LD [M]  net/ipv4/netfilter/iptable_filter.ko
  CC      net/ipv4/netfilter/iptable_mangle.mod.o
  LD [M]  net/ipv4/netfilter/iptable_mangle.ko
  CC      net/ipv4/netfilter/iptable_nat.mod.o
  LD [M]  net/ipv4/netfilter/iptable_nat.ko
  CC      net/ipv4/netfilter/iptable_raw.mod.o
  LD [M]  net/ipv4/netfilter/iptable_raw.ko
  CC      net/ipv6/ipv6.mod.o
  LD [M]  net/ipv6/ipv6.ko
  CC      fs/isofs/isofs.mod.o
  LD [M]  fs/isofs/isofs.ko
  CC      lib/libcrc32c.mod.o
  LD [M]  lib/libcrc32c.ko
  CC      drivers/block/loop.mod.o
  LD [M]  drivers/block/loop.ko
  CC      drivers/md/md.mod.o
  LD [M]  drivers/md/md.ko
  CC      crypto/md4.mod.o
  LD [M]  crypto/md4.ko
  CC      crypto/md5.mod.o
  LD [M]  crypto/md5.ko
  CC      crypto/michael_mic.mod.o
  LD [M]  crypto/michael_mic.ko
  CC      fs/msdos/msdos.mod.o
  LD [M]  fs/msdos/msdos.ko
  CC      drivers/block/nbd.mod.o
  LD [M]  drivers/block/nbd.ko
  CC      fs/nfsd/nfsd.mod.o
  LD [M]  fs/nfsd/nfsd.ko
  CC      fs/nls/nls_base.mod.o
  LD [M]  fs/nls/nls_base.ko
  CC      fs/nls/nls_cp437.mod.o
  LD [M]  fs/nls/nls_cp437.ko
  CC      fs/nls/nls_iso8859-1.mod.o
  LD [M]  fs/nls/nls_iso8859-1.ko
  CC      fs/nls/nls_iso8859-15.mod.o
  LD [M]  fs/nls/nls_iso8859-15.ko
  CC      fs/nls/nls_utf8.mod.o
  LD [M]  fs/nls/nls_utf8.ko
  CC      drivers/net/ppp_async.mod.o
  LD [M]  drivers/net/ppp_async.ko
  CC      drivers/net/ppp_deflate.mod.o
  LD [M]  drivers/net/ppp_deflate.ko
  CC      drivers/net/ppp_generic.mod.o
  LD [M]  drivers/net/ppp_generic.ko
  CC      drivers/net/ppp_synctty.mod.o
  LD [M]  drivers/net/ppp_synctty.ko
  CC      drivers/net/pppoe.mod.o
  LD [M]  drivers/net/pppoe.ko
  CC      drivers/net/pppox.mod.o
  LD [M]  drivers/net/pppox.ko
  CC      drivers/md/raid1.mod.o
  LD [M]  drivers/md/raid1.ko
  CC      drivers/md/raid5.mod.o
  LD [M]  drivers/md/raid5.ko
  CC      net/sched/sch_cbq.mod.o
  LD [M]  net/sched/sch_cbq.ko
  CC      net/sched/sch_csz.mod.o
  LD [M]  net/sched/sch_csz.ko
  CC      net/sched/sch_delay.mod.o
  LD [M]  net/sched/sch_delay.ko
  CC      net/sched/sch_dsmark.mod.o
  LD [M]  net/sched/sch_dsmark.ko
  CC      net/sched/sch_gred.mod.o
  LD [M]  net/sched/sch_gred.ko
  CC      net/sched/sch_hfsc.mod.o
  LD [M]  net/sched/sch_hfsc.ko
  CC      net/sched/sch_htb.mod.o
  LD [M]  net/sched/sch_htb.ko
  CC      net/sched/sch_ingress.mod.o
  LD [M]  net/sched/sch_ingress.ko
  CC      net/sched/sch_prio.mod.o
  LD [M]  net/sched/sch_prio.ko
  CC      net/sched/sch_red.mod.o
  LD [M]  net/sched/sch_red.ko
  CC      net/sched/sch_sfq.mod.o
  LD [M]  net/sched/sch_sfq.ko
  CC      net/sched/sch_tbf.mod.o
  LD [M]  net/sched/sch_tbf.ko
  CC      net/sched/sch_teql.mod.o
  LD [M]  net/sched/sch_teql.ko
  CC      drivers/scsi/scsi_mod.mod.o
  LD [M]  drivers/scsi/scsi_mod.ko
  CC      drivers/scsi/sd_mod.mod.o
  LD [M]  drivers/scsi/sd_mod.ko
  CC      crypto/serpent.mod.o
  LD [M]  crypto/serpent.ko
  CC      drivers/scsi/sg.mod.o
  LD [M]  drivers/scsi/sg.ko
  CC      crypto/sha1.mod.o
  LD [M]  crypto/sha1.ko
  CC      crypto/sha256.mod.o
  LD [M]  crypto/sha256.ko
  CC      crypto/sha512.mod.o
  LD [M]  crypto/sha512.ko
  CC      drivers/net/slhc.mod.o
  LD [M]  drivers/net/slhc.ko
  CC      drivers/scsi/sr_mod.mod.o
  LD [M]  drivers/scsi/sr_mod.ko
  CC      drivers/scsi/st.mod.o
  LD [M]  drivers/scsi/st.ko
  CC      crypto/twofish.mod.o
  LD [M]  crypto/twofish.ko
  CC      fs/udf/udf.mod.o
  LD [M]  fs/udf/udf.ko
  CC      fs/vfat/vfat.mod.o
  LD [M]  fs/vfat/vfat.ko
  CC      net/xfrm/xfrm_user.mod.o
  LD [M]  net/xfrm/xfrm_user.ko
  CC      drivers/md/xor.mod.o
  LD [M]  drivers/md/xor.ko
  CC      lib/zlib_deflate/zlib_deflate.mod.o
  LD [M]  lib/zlib_deflate/zlib_deflate.ko
make[2]: Leaving directory `/usr/src/xeno-unstable.bk/linux-2.6.7-xenU'
make -C linux-2.6.7-xenU ARCH=xen INSTALL_MOD_PATH=/usr/src/xeno-unstable.bk/install \
    modules_install
make[2]: Entering directory `/usr/src/xeno-unstable.bk/linux-2.6.7-xenU'
  INSTALL crypto/aes.ko
  INSTALL net/key/af_key.ko
  INSTALL net/ipv4/ah4.ko
  INSTALL net/ipv6/ah6.ko
  INSTALL crypto/arc4.ko
  INSTALL fs/binfmt_aout.ko
  INSTALL fs/binfmt_misc.ko
  INSTALL crypto/blowfish.ko
  INSTALL drivers/net/bsd_comp.ko
  INSTALL crypto/cast5.ko
  INSTALL crypto/cast6.ko
  INSTALL drivers/cdrom/cdrom.ko
  INSTALL net/sched/cls_fw.ko
  INSTALL net/sched/cls_route.ko
  INSTALL net/sched/cls_rsvp.ko
  INSTALL net/sched/cls_rsvp6.ko
  INSTALL net/sched/cls_tcindex.ko
  INSTALL net/sched/cls_u32.ko
  INSTALL lib/crc32.ko
  INSTALL crypto/crc32c.ko
  INSTALL crypto/crypto_null.ko
  INSTALL drivers/block/cryptoloop.ko
  INSTALL crypto/deflate.ko
  INSTALL crypto/des.ko
  INSTALL drivers/md/dm-crypt.ko
  INSTALL drivers/md/dm-mod.ko
  INSTALL drivers/net/dummy.ko
  INSTALL net/bridge/netfilter/ebt_802_3.ko
  INSTALL net/bridge/netfilter/ebt_among.ko
  INSTALL net/bridge/netfilter/ebt_arp.ko
  INSTALL net/bridge/netfilter/ebt_arpreply.ko
  INSTALL net/bridge/netfilter/ebt_dnat.ko
  INSTALL net/bridge/netfilter/ebt_ip.ko
  INSTALL net/bridge/netfilter/ebt_limit.ko
  INSTALL net/bridge/netfilter/ebt_log.ko
  INSTALL net/bridge/netfilter/ebt_mark.ko
  INSTALL net/bridge/netfilter/ebt_mark_m.ko
  INSTALL net/bridge/netfilter/ebt_pkttype.ko
  INSTALL net/bridge/netfilter/ebt_redirect.ko
  INSTALL net/bridge/netfilter/ebt_snat.ko
  INSTALL net/bridge/netfilter/ebt_stp.ko
  INSTALL net/bridge/netfilter/ebt_vlan.ko
  INSTALL net/bridge/netfilter/ebtable_broute.ko
  INSTALL net/bridge/netfilter/ebtable_filter.ko
  INSTALL net/bridge/netfilter/ebtable_nat.ko
  INSTALL net/bridge/netfilter/ebtables.ko
  INSTALL net/ipv4/esp4.ko
  INSTALL net/ipv6/esp6.ko
  INSTALL fs/exportfs/exportfs.ko
  INSTALL fs/fat/fat.ko
  INSTALL net/ipv6/netfilter/ip6_queue.ko
  INSTALL net/ipv6/netfilter/ip6_tables.ko
  INSTALL net/ipv6/ip6_tunnel.ko
  INSTALL net/ipv6/netfilter/ip6t_LOG.ko
  INSTALL net/ipv6/netfilter/ip6t_MARK.ko
  INSTALL net/ipv6/netfilter/ip6t_ah.ko
  INSTALL net/ipv6/netfilter/ip6t_dst.ko
  INSTALL net/ipv6/netfilter/ip6t_esp.ko
  INSTALL net/ipv6/netfilter/ip6t_eui64.ko
  INSTALL net/ipv6/netfilter/ip6t_frag.ko
  INSTALL net/ipv6/netfilter/ip6t_hbh.ko
  INSTALL net/ipv6/netfilter/ip6t_hl.ko
  INSTALL net/ipv6/netfilter/ip6t_ipv6header.ko
  INSTALL net/ipv6/netfilter/ip6t_length.ko
  INSTALL net/ipv6/netfilter/ip6t_limit.ko
  INSTALL net/ipv6/netfilter/ip6t_mac.ko
  INSTALL net/ipv6/netfilter/ip6t_mark.ko
  INSTALL net/ipv6/netfilter/ip6t_multiport.ko
  INSTALL net/ipv6/netfilter/ip6t_owner.ko
  INSTALL net/ipv6/netfilter/ip6t_rt.ko
  INSTALL net/ipv6/netfilter/ip6table_filter.ko
  INSTALL net/ipv6/netfilter/ip6table_mangle.ko
  INSTALL net/ipv6/netfilter/ip6table_raw.ko
  INSTALL net/ipv4/netfilter/ip_conntrack.ko
  INSTALL net/ipv4/netfilter/ip_conntrack_amanda.ko
  INSTALL net/ipv4/netfilter/ip_conntrack_ftp.ko
  INSTALL net/ipv4/netfilter/ip_conntrack_irc.ko
  INSTALL net/ipv4/netfilter/ip_conntrack_tftp.ko
  INSTALL net/ipv4/netfilter/ip_nat_amanda.ko
  INSTALL net/ipv4/netfilter/ip_nat_ftp.ko
  INSTALL net/ipv4/netfilter/ip_nat_irc.ko
  INSTALL net/ipv4/netfilter/ip_nat_snmp_basic.ko
  INSTALL net/ipv4/netfilter/ip_nat_tftp.ko
  INSTALL net/ipv4/netfilter/ip_queue.ko
  INSTALL net/ipv4/netfilter/ip_tables.ko
  INSTALL net/ipv4/ipcomp.ko
  INSTALL net/ipv6/ipcomp6.ko
  INSTALL net/ipv4/netfilter/ipt_CLASSIFY.ko
  INSTALL net/ipv4/netfilter/ipt_DSCP.ko
  INSTALL net/ipv4/netfilter/ipt_ECN.ko
  INSTALL net/ipv4/netfilter/ipt_LOG.ko
  INSTALL net/ipv4/netfilter/ipt_MARK.ko
  INSTALL net/ipv4/netfilter/ipt_MASQUERADE.ko
  INSTALL net/ipv4/netfilter/ipt_NETMAP.ko
  INSTALL net/ipv4/netfilter/ipt_REDIRECT.ko
  INSTALL net/ipv4/netfilter/ipt_REJECT.ko
  INSTALL net/ipv4/netfilter/ipt_SAME.ko
  INSTALL net/ipv4/netfilter/ipt_TCPMSS.ko
  INSTALL net/ipv4/netfilter/ipt_TOS.ko
  INSTALL net/ipv4/netfilter/ipt_ULOG.ko
  INSTALL net/ipv4/netfilter/ipt_ah.ko
  INSTALL net/ipv4/netfilter/ipt_conntrack.ko
  INSTALL net/ipv4/netfilter/ipt_dscp.ko
  INSTALL net/ipv4/netfilter/ipt_ecn.ko
  INSTALL net/ipv4/netfilter/ipt_esp.ko
  INSTALL net/ipv4/netfilter/ipt_helper.ko
  INSTALL net/ipv4/netfilter/ipt_iprange.ko
  INSTALL net/ipv4/netfilter/ipt_length.ko
  INSTALL net/ipv4/netfilter/ipt_limit.ko
  INSTALL net/ipv4/netfilter/ipt_mac.ko
  INSTALL net/ipv4/netfilter/ipt_mark.ko
  INSTALL net/ipv4/netfilter/ipt_multiport.ko
  INSTALL net/ipv4/netfilter/ipt_owner.ko
  INSTALL net/ipv4/netfilter/ipt_physdev.ko
  INSTALL net/ipv4/netfilter/ipt_pkttype.ko
  INSTALL net/ipv4/netfilter/ipt_recent.ko
  INSTALL net/ipv4/netfilter/ipt_state.ko
  INSTALL net/ipv4/netfilter/ipt_tcpmss.ko
  INSTALL net/ipv4/netfilter/ipt_tos.ko
  INSTALL net/ipv4/netfilter/ipt_ttl.ko
  INSTALL net/ipv4/netfilter/iptable_filter.ko
  INSTALL net/ipv4/netfilter/iptable_mangle.ko
  INSTALL net/ipv4/netfilter/iptable_nat.ko
  INSTALL net/ipv4/netfilter/iptable_raw.ko
  INSTALL net/ipv6/ipv6.ko
  INSTALL fs/isofs/isofs.ko
  INSTALL lib/libcrc32c.ko
  INSTALL drivers/block/loop.ko
  INSTALL drivers/md/md.ko
  INSTALL crypto/md4.ko
  INSTALL crypto/md5.ko
  INSTALL crypto/michael_mic.ko
  INSTALL fs/msdos/msdos.ko
  INSTALL drivers/block/nbd.ko
  INSTALL fs/nfsd/nfsd.ko
  INSTALL fs/nls/nls_base.ko
  INSTALL fs/nls/nls_cp437.ko
  INSTALL fs/nls/nls_iso8859-1.ko
  INSTALL fs/nls/nls_iso8859-15.ko
  INSTALL fs/nls/nls_utf8.ko
  INSTALL drivers/net/ppp_async.ko
  INSTALL drivers/net/ppp_deflate.ko
  INSTALL drivers/net/ppp_generic.ko
  INSTALL drivers/net/ppp_synctty.ko
  INSTALL drivers/net/pppoe.ko
  INSTALL drivers/net/pppox.ko
  INSTALL drivers/md/raid1.ko
  INSTALL drivers/md/raid5.ko
  INSTALL net/sched/sch_cbq.ko
  INSTALL net/sched/sch_csz.ko
  INSTALL net/sched/sch_delay.ko
  INSTALL net/sched/sch_dsmark.ko
  INSTALL net/sched/sch_gred.ko
  INSTALL net/sched/sch_hfsc.ko
  INSTALL net/sched/sch_htb.ko
  INSTALL net/sched/sch_ingress.ko
  INSTALL net/sched/sch_prio.ko
  INSTALL net/sched/sch_red.ko
  INSTALL net/sched/sch_sfq.ko
  INSTALL net/sched/sch_tbf.ko
  INSTALL net/sched/sch_teql.ko
  INSTALL drivers/scsi/scsi_mod.ko
  INSTALL drivers/scsi/sd_mod.ko
  INSTALL crypto/serpent.ko
  INSTALL drivers/scsi/sg.ko
  INSTALL crypto/sha1.ko
  INSTALL crypto/sha256.ko
  INSTALL crypto/sha512.ko
  INSTALL drivers/net/slhc.ko
  INSTALL drivers/scsi/sr_mod.ko
  INSTALL drivers/scsi/st.ko
  INSTALL crypto/twofish.ko
  INSTALL fs/udf/udf.ko
  INSTALL fs/vfat/vfat.ko
  INSTALL net/xfrm/xfrm_user.ko
  INSTALL drivers/md/xor.ko
  INSTALL lib/zlib_deflate/zlib_deflate.ko
if [ -r System.map ]; then /sbin/depmod -ae -F System.map -b /usr/src/xeno-unstable.bk/install -r 2.6.7-xenU; fi
make[2]: Leaving directory `/usr/src/xeno-unstable.bk/linux-2.6.7-xenU'
make -C linux-2.6.7-xenU ARCH=xen INSTALL_PATH=/usr/src/xeno-unstable.bk/install install
make[2]: Entering directory `/usr/src/xeno-unstable.bk/linux-2.6.7-xenU'
make[3]: `arch/i386/kernel/asm-offsets.s' is up to date.
  CC      init/main.o
  CHK     include/linux/compile.h
  UPD     include/linux/compile.h
  CC      init/version.o
  CC      init/do_mounts.o
  CC      init/do_mounts_rd.o
  CC      init/do_mounts_initrd.o
  LD      init/mounts.o
  CC      init/initramfs.o
  LD      init/built-in.o
  HOSTCC  usr/gen_init_cpio
  CPIO    usr/initramfs_data.cpio
  GZIP    usr/initramfs_data.cpio.gz
  AS      usr/initramfs_data.o
  LD      usr/built-in.o
  CC      arch/xen/kernel/ctrl_if.o
  CC      arch/xen/kernel/evtchn.o
  CC      arch/xen/kernel/fixup.o
  CC      arch/xen/kernel/process.o
  CC      arch/xen/kernel/reboot.o
  CC      arch/xen/kernel/xen_proc.o
  CC      arch/xen/kernel/empty.o
  LD      arch/xen/kernel/built-in.o
  CPP     arch/xen/i386/kernel/vmlinux.lds.s
  CC      arch/xen/i386/kernel/traps.o
  CC      arch/xen/i386/kernel/irq.o
  CC      arch/xen/i386/kernel/ldt.o
  CC      arch/xen/i386/kernel/setup.o
  AS      arch/xen/i386/kernel/entry.o
  CC      arch/xen/i386/kernel/time.o
  CC      arch/xen/i386/kernel/pci-dma.o
arch/xen/i386/kernel/pci-dma.c: In function `dma_alloc_coherent':
arch/xen/i386/kernel/pci-dma.c:43: warning: use of cast expressions as lvalues is deprecated
  CC      arch/xen/i386/kernel/process.o
  CC      arch/xen/i386/kernel/ioport.o
  CC      arch/xen/i386/kernel/signal.o
  CC      arch/xen/i386/kernel/i386_ksyms.o
  CC      arch/xen/i386/kernel/cpu/common.o
  CC      arch/xen/i386/kernel/cpu/proc.o
  CC      arch/xen/i386/kernel/cpu/amd.o
  CC      arch/xen/i386/kernel/cpu/cyrix.o
  CC      arch/xen/i386/kernel/cpu/centaur.o
  CC      arch/xen/i386/kernel/cpu/transmeta.o
  CC      arch/xen/i386/kernel/cpu/intel.o
  CC      arch/xen/i386/kernel/cpu/rise.o
  CC      arch/xen/i386/kernel/cpu/nexgen.o
  CC      arch/xen/i386/kernel/cpu/umc.o
  LD      arch/xen/i386/kernel/cpu/built-in.o
  CC      arch/xen/i386/kernel/timers/timer_tsc.o
  CC      arch/xen/i386/kernel/timers/timer.o
  CC      arch/xen/i386/kernel/timers/common.o
  CC      arch/xen/i386/kernel/timers/timer_none.o
  CC      arch/xen/i386/kernel/timers/timer_pit.o
  LD      arch/xen/i386/kernel/timers/built-in.o
  CC      arch/xen/i386/kernel/sysenter.o
  AS      arch/xen/i386/kernel/vsyscall-int80.o
  SYSCALL arch/xen/i386/kernel/vsyscall-int80.so
  AS      arch/xen/i386/kernel/vsyscall-sysenter.o
  SYSCALL arch/xen/i386/kernel/vsyscall-sysenter.so
  AS      arch/xen/i386/kernel/vsyscall.o
  CC      arch/xen/i386/kernel/semaphore.o
  CC      arch/xen/i386/kernel/vm86.o
  CC      arch/xen/i386/kernel/ptrace.o
  CC      arch/xen/i386/kernel/sys_i386.o
  CC      arch/xen/i386/kernel/i387.o
  CC      arch/xen/i386/kernel/dmi_scan.o
  CC      arch/xen/i386/kernel/bootflag.o
  CC      arch/xen/i386/kernel/doublefault.o
  CC      arch/xen/i386/kernel/module.o
  CC      arch/xen/i386/kernel/early_printk.o
  CC      arch/xen/i386/kernel/std_resources.o
  SYSCALL arch/xen/i386/kernel/vsyscall-syms.o
  LD      arch/xen/i386/kernel/built-in.o
  AS      arch/xen/i386/kernel/head.o
  CC      arch/xen/i386/kernel/init_task.o
  CPP     arch/xen/i386/kernel/vmlinux.lds.s
  CC      arch/xen/i386/mm/init.o
arch/xen/i386/mm/init.c: In function `paging_init':
arch/xen/i386/mm/init.c:468: warning: unused variable `i'
  CC      arch/xen/i386/mm/fault.o
  CC      arch/xen/i386/mm/ioremap.o
  CC      arch/xen/i386/mm/pgtable.o
  CC      arch/xen/i386/mm/hypervisor.o
  CC      arch/xen/i386/mm/extable.o
  CC      arch/xen/i386/mm/pageattr.o
  LD      arch/xen/i386/mm/built-in.o
  CC      kernel/sched.o
  CC      kernel/fork.o
  CC      kernel/exec_domain.o
  CC      kernel/panic.o
  CC      kernel/printk.o
  CC      kernel/profile.o
  CC      kernel/exit.o
  CC      kernel/itimer.o
  CC      kernel/time.o
  CC      kernel/softirq.o
  CC      kernel/resource.o
  CC      kernel/sysctl.o
  CC      kernel/capability.o
  CC      kernel/ptrace.o
  CC      kernel/timer.o
  CC      kernel/user.o
  CC      kernel/signal.o
  CC      kernel/sys.o
  CC      kernel/kmod.o
  CC      kernel/workqueue.o
  CC      kernel/pid.o
  CC      kernel/rcupdate.o
  CC      kernel/intermodule.o
  CC      kernel/extable.o
  CC      kernel/params.o
  CC      kernel/posix-timers.o
  CC      kernel/kthread.o
  CC      kernel/futex.o
  CC      kernel/dma.o
  CC      kernel/uid16.o
  CC      kernel/module.o
  CC      kernel/kallsyms.o
  IKCFG   kernel/ikconfig.h
  GZIP    kernel/config_data.gz
  IKCFG   kernel/config_data.h
  CC      kernel/configs.o
  LD      kernel/built-in.o
  CC      mm/bootmem.o
  CC      mm/filemap.o
  CC      mm/mempool.o
  CC      mm/oom_kill.o
  CC      mm/fadvise.o
  CC      mm/page_alloc.o
  CC      mm/page-writeback.o
  CC      mm/pdflush.o
  CC      mm/prio_tree.o
  CC      mm/readahead.o
  CC      mm/slab.o
  CC      mm/swap.o
  CC      mm/truncate.o
  CC      mm/vmscan.o
  CC      mm/fremap.o
  CC      mm/highmem.o
  CC      mm/madvise.o
  CC      mm/memory.o
  CC      mm/mincore.o
  CC      mm/mlock.o
  CC      mm/mmap.o
  CC      mm/mprotect.o
  CC      mm/mremap.o
  CC      mm/msync.o
  CC      mm/rmap.o
  CC      mm/shmem.o
  CC      mm/vmalloc.o
  CC      mm/page_io.o
  CC      mm/swap_state.o
  CC      mm/swapfile.o
  LD      mm/built-in.o
  CC      fs/open.o
  CC      fs/read_write.o
  CC      fs/file_table.o
  CC      fs/buffer.o
  CC      fs/bio.o
  CC      fs/super.o
  CC      fs/block_dev.o
  CC      fs/char_dev.o
  CC      fs/stat.o
  CC      fs/exec.o
  CC      fs/pipe.o
  CC      fs/namei.o
  CC      fs/fcntl.o
  CC      fs/ioctl.o
  CC      fs/readdir.o
  CC      fs/select.o
  CC      fs/fifo.o
  CC      fs/locks.o
  CC      fs/dcache.o
  CC      fs/inode.o
  CC      fs/attr.o
  CC      fs/bad_inode.o
  CC      fs/file.o
  CC      fs/dnotify.o
  CC      fs/filesystems.o
  CC      fs/namespace.o
  CC      fs/seq_file.o
  CC      fs/xattr.o
  CC      fs/libfs.o
  CC      fs/fs-writeback.o
  CC      fs/mpage.o
  CC      fs/direct-io.o
  CC      fs/aio.o
  CC      fs/eventpoll.o
  CC      fs/nfsctl.o
  CC      fs/binfmt_script.o
  CC      fs/binfmt_elf.o
  CC      fs/mbcache.o
  CC      fs/posix_acl.o
  CC      fs/xattr_acl.o
  CC      fs/cramfs/inode.o
  CC      fs/cramfs/uncompress.o
  LD      fs/cramfs/cramfs.o
  LD      fs/cramfs/built-in.o
  CC      fs/devpts/inode.o
  LD      fs/devpts/devpts.o
  LD      fs/devpts/built-in.o
  LD      fs/exportfs/built-in.o
  CC      fs/ext2/balloc.o
  CC      fs/ext2/bitmap.o
  CC      fs/ext2/dir.o
  CC      fs/ext2/file.o
  CC      fs/ext2/fsync.o
  CC      fs/ext2/ialloc.o
  CC      fs/ext2/inode.o
  CC      fs/ext2/ioctl.o
  CC      fs/ext2/namei.o
  CC      fs/ext2/super.o
  CC      fs/ext2/symlink.o
  CC      fs/ext2/xattr.o
  CC      fs/ext2/xattr_user.o
  CC      fs/ext2/xattr_trusted.o
  CC      fs/ext2/acl.o
  CC      fs/ext2/xattr_security.o
  LD      fs/ext2/ext2.o
  LD      fs/ext2/built-in.o
  CC      fs/ext3/balloc.o
  CC      fs/ext3/bitmap.o
  CC      fs/ext3/dir.o
  CC      fs/ext3/file.o
  CC      fs/ext3/fsync.o
  CC      fs/ext3/ialloc.o
  CC      fs/ext3/inode.o
  CC      fs/ext3/ioctl.o
  CC      fs/ext3/namei.o
  CC      fs/ext3/super.o
  CC      fs/ext3/symlink.o
  CC      fs/ext3/hash.o
  CC      fs/ext3/xattr.o
  CC      fs/ext3/xattr_user.o
  CC      fs/ext3/xattr_trusted.o
  CC      fs/ext3/acl.o
  CC      fs/ext3/xattr_security.o
  LD      fs/ext3/ext3.o
  LD      fs/ext3/built-in.o
  LD      fs/fat/built-in.o
  LD      fs/isofs/built-in.o
  CC      fs/jbd/transaction.o
  CC      fs/jbd/commit.o
  CC      fs/jbd/recovery.o
  CC      fs/jbd/checkpoint.o
  CC      fs/jbd/revoke.o
  CC      fs/jbd/journal.o
  LD      fs/jbd/jbd.o
  LD      fs/jbd/built-in.o
  CC      fs/lockd/clntlock.o
  CC      fs/lockd/clntproc.o
  CC      fs/lockd/host.o
  CC      fs/lockd/svc.o
  CC      fs/lockd/svclock.o
  CC      fs/lockd/svcshare.o
  CC      fs/lockd/svcproc.o
  CC      fs/lockd/svcsubs.o
  CC      fs/lockd/mon.o
  CC      fs/lockd/xdr.o
  CC      fs/lockd/lockd_syms.o
  CC      fs/lockd/xdr4.o
  CC      fs/lockd/svc4proc.o
  LD      fs/lockd/lockd.o
  LD      fs/lockd/built-in.o
  LD      fs/msdos/built-in.o
  CC      fs/nfs/dir.o
  CC      fs/nfs/file.o
  CC      fs/nfs/inode.o
  CC      fs/nfs/nfs2xdr.o
  CC      fs/nfs/pagelist.o
  CC      fs/nfs/proc.o
  CC      fs/nfs/read.o
  CC      fs/nfs/symlink.o
  CC      fs/nfs/unlink.o
  CC      fs/nfs/write.o
  CC      fs/nfs/nfs3proc.o
  CC      fs/nfs/nfs3xdr.o
  LD      fs/nfs/nfs.o
  LD      fs/nfs/built-in.o
  LD      fs/nfsd/built-in.o
  LD      fs/nls/built-in.o
  CC      fs/partitions/check.o
  CC      fs/partitions/msdos.o
  LD      fs/partitions/built-in.o
  CC      fs/proc/task_mmu.o
  CC      fs/proc/inode.o
  CC      fs/proc/root.o
  CC      fs/proc/base.o
  CC      fs/proc/generic.o
  CC      fs/proc/array.o
  CC      fs/proc/kmsg.o
  CC      fs/proc/proc_tty.o
  CC      fs/proc/proc_misc.o
  CC      fs/proc/kcore.o
  LD      fs/proc/proc.o
  LD      fs/proc/built-in.o
  CC      fs/ramfs/inode.o
  LD      fs/ramfs/ramfs.o
  LD      fs/ramfs/built-in.o
  CC      fs/sysfs/inode.o
  CC      fs/sysfs/file.o
  CC      fs/sysfs/dir.o
  CC      fs/sysfs/symlink.o
  CC      fs/sysfs/mount.o
  CC      fs/sysfs/bin.o
  CC      fs/sysfs/group.o
  LD      fs/sysfs/built-in.o
  LD      fs/udf/built-in.o
  LD      fs/vfat/built-in.o
  LD      fs/built-in.o
  CC      ipc/util.o
  CC      ipc/msgutil.o
  CC      ipc/msg.o
  CC      ipc/sem.o
  CC      ipc/shm.o
  CC      ipc/mqueue.o
  LD      ipc/built-in.o
  CC      security/commoncap.o
  LD      security/built-in.o
  CC      crypto/api.o
  CC      crypto/scatterwalk.o
  CC      crypto/cipher.o
  CC      crypto/digest.o
  CC      crypto/compress.o
  CC      crypto/proc.o
  CC      crypto/hmac.o
  LD      crypto/built-in.o
  CC      drivers/base/core.o
  CC      drivers/base/sys.o
  CC      drivers/base/interface.o
  CC      drivers/base/bus.o
  CC      drivers/base/driver.o
  CC      drivers/base/class.o
  CC      drivers/base/class_simple.o
  CC      drivers/base/platform.o
  CC      drivers/base/cpu.o
  CC      drivers/base/firmware.o
  CC      drivers/base/init.o
  CC      drivers/base/map.o
  CC      drivers/base/dmapool.o
  CC      drivers/base/power/shutdown.o
  LD      drivers/base/power/built-in.o
  LD      drivers/base/built-in.o
  CC      drivers/block/elevator.o
  CC      drivers/block/ll_rw_blk.o
  CC      drivers/block/ioctl.o
  CC      drivers/block/genhd.o
  CC      drivers/block/scsi_ioctl.o
  CC      drivers/block/noop-iosched.o
  CC      drivers/block/as-iosched.o
  CC      drivers/block/deadline-iosched.o
  CC      drivers/block/cfq-iosched.o
  CC      drivers/block/rd.o
  LD      drivers/block/built-in.o
  LD      drivers/cdrom/built-in.o
  CC      drivers/char/mem.o
  CC      drivers/char/random.o
  CC      drivers/char/tty_io.o
  CC      drivers/char/n_tty.o
  CC      drivers/char/tty_ioctl.o
  CC      drivers/char/pty.o
  CC      drivers/char/misc.o
  LD      drivers/char/built-in.o
  LD      drivers/firmware/built-in.o
  CC      drivers/input/input.o
  LD      drivers/input/built-in.o
  LD      drivers/md/built-in.o
  LD      drivers/media/common/built-in.o
  LD      drivers/media/dvb/b2c2/built-in.o
  LD      drivers/media/dvb/bt8xx/built-in.o
  LD      drivers/media/dvb/dvb-core/built-in.o
  LD      drivers/media/dvb/frontends/built-in.o
  LD      drivers/media/dvb/ttpci/built-in.o
  LD      drivers/media/dvb/ttusb-budget/built-in.o
  LD      drivers/media/dvb/ttusb-dec/built-in.o
  LD      drivers/media/dvb/built-in.o
  LD      drivers/media/radio/built-in.o
  LD      drivers/media/video/built-in.o
  LD      drivers/media/built-in.o
  LD      drivers/misc/built-in.o
  CC      drivers/net/mii.o
  CC      drivers/net/Space.o
  CC      drivers/net/net_init.o
  CC      drivers/net/loopback.o
  LD      drivers/net/built-in.o
  LD      drivers/scsi/built-in.o
  LD      drivers/serial/built-in.o
  LD      drivers/video/built-in.o
  LD      drivers/built-in.o
  LD      sound/built-in.o
  CC      drivers/xen/blkback/blkback.o
  CC      drivers/xen/blkback/control.o
  CC      drivers/xen/blkback/interface.o
drivers/xen/blkback/interface.c: In function `blkif_connect':
drivers/xen/blkback/interface.c:170: warning: implicit declaration of function `direct_remap_area_pages'
  CC      drivers/xen/blkback/vbd.o
  LD      drivers/xen/blkback/built-in.o
  CC      drivers/xen/blkfront/blkfront.o
  CC      drivers/xen/blkfront/vbd.o
  LD      drivers/xen/blkfront/built-in.o
  CC      drivers/xen/console/console.o
  LD      drivers/xen/console/built-in.o
  CC      drivers/xen/evtchn/evtchn.o
  LD      drivers/xen/evtchn/built-in.o
  CC      drivers/xen/netback/netback.o
drivers/xen/netback/netback.c: In function `netback_init':
drivers/xen/netback/netback.c:752: warning: use of cast expressions as lvalues is deprecated
  CC      drivers/xen/netback/control.o
  CC      drivers/xen/netback/interface.o
drivers/xen/netback/interface.c: In function `netif_connect':
drivers/xen/netback/interface.c:213: warning: implicit declaration of function `direct_remap_area_pages'
  LD      drivers/xen/netback/built-in.o
  CC      drivers/xen/netfront/netfront.o
  LD      drivers/xen/netfront/built-in.o
  CC      drivers/xen/privcmd/privcmd.o
  LD      drivers/xen/privcmd/built-in.o
  LD      drivers/xen/built-in.o
  CC      net/socket.o
  CC      net/802/p8023.o
  CC      net/802/sysctl_net_802.o
  LD      net/802/built-in.o
  CC      net/bridge/br.o
  CC      net/bridge/br_device.o
  CC      net/bridge/br_fdb.o
  CC      net/bridge/br_forward.o
  CC      net/bridge/br_if.o
  CC      net/bridge/br_input.o
  CC      net/bridge/br_ioctl.o
  CC      net/bridge/br_notify.o
  CC      net/bridge/br_stp.o
  CC      net/bridge/br_stp_bpdu.o
  CC      net/bridge/br_stp_if.o
  CC      net/bridge/br_stp_timer.o
  CC      net/bridge/br_sysfs_if.o
  CC      net/bridge/br_sysfs_br.o
  CC      net/bridge/br_netfilter.o
  LD      net/bridge/bridge.o
  LD      net/bridge/built-in.o
  LD      net/bridge/netfilter/built-in.o
  CC      net/core/sock.o
  CC      net/core/skbuff.o
  CC      net/core/iovec.o
  CC      net/core/datagram.o
  CC      net/core/scm.o
  CC      net/core/sysctl_net_core.o
  CC      net/core/flow.o
  CC      net/core/dev.o
  CC      net/core/ethtool.o
  CC      net/core/dev_mcast.o
  CC      net/core/dst.o
  CC      net/core/neighbour.o
  CC      net/core/rtnetlink.o
  CC      net/core/utils.o
  CC      net/core/link_watch.o
  CC      net/core/filter.o
  CC      net/core/net-sysfs.o
  CC      net/core/netfilter.o
  LD      net/core/built-in.o
  CC      net/ethernet/eth.o
  CC      net/ethernet/sysctl_net_ether.o
  LD      net/ethernet/built-in.o
  CC      net/ipv4/utils.o
  CC      net/ipv4/route.o
  CC      net/ipv4/inetpeer.o
  CC      net/ipv4/protocol.o
  CC      net/ipv4/ip_input.o
  CC      net/ipv4/ip_fragment.o
  CC      net/ipv4/ip_forward.o
  CC      net/ipv4/ip_options.o
  CC      net/ipv4/ip_output.o
  CC      net/ipv4/ip_sockglue.o
  CC      net/ipv4/tcp.o
  CC      net/ipv4/tcp_input.o
  CC      net/ipv4/tcp_output.o
  CC      net/ipv4/tcp_timer.o
  CC      net/ipv4/tcp_ipv4.o
  CC      net/ipv4/tcp_minisocks.o
  CC      net/ipv4/tcp_diag.o
  CC      net/ipv4/raw.o
  CC      net/ipv4/udp.o
  CC      net/ipv4/arp.o
  CC      net/ipv4/icmp.o
  CC      net/ipv4/devinet.o
  CC      net/ipv4/af_inet.o
  CC      net/ipv4/igmp.o
  CC      net/ipv4/sysctl_net_ipv4.o
  CC      net/ipv4/fib_frontend.o
  CC      net/ipv4/fib_semantics.o
  CC      net/ipv4/fib_hash.o
  CC      net/ipv4/proc.o
  CC      net/ipv4/fib_rules.o
  CC      net/ipv4/ip_nat_dumb.o
  CC      net/ipv4/ipmr.o
  CC      net/ipv4/syncookies.o
  LD      net/ipv4/netfilter/built-in.o
  CC      net/ipv4/xfrm4_policy.o
  CC      net/ipv4/xfrm4_state.o
  CC      net/ipv4/xfrm4_input.o
  CC      net/ipv4/xfrm4_tunnel.o
  LD      net/ipv4/built-in.o
  LD      net/ipv6/netfilter/built-in.o
  CC      net/ipv6/exthdrs_core.o
  LD      net/ipv6/built-in.o
  LD      net/key/built-in.o
  CC      net/netlink/af_netlink.o
  LD      net/netlink/built-in.o
  CC      net/packet/af_packet.o
  LD      net/packet/built-in.o
  CC      net/sched/sch_generic.o
  CC      net/sched/sch_api.o
  CC      net/sched/sch_fifo.o
  CC      net/sched/estimator.o
  CC      net/sched/cls_api.o
  CC      net/sched/police.o
  LD      net/sched/built-in.o
  CC      net/sunrpc/clnt.o
  CC      net/sunrpc/xprt.o
  CC      net/sunrpc/sched.o
  CC      net/sunrpc/auth.o
  CC      net/sunrpc/auth_null.o
  CC      net/sunrpc/auth_unix.o
  CC      net/sunrpc/svc.o
  CC      net/sunrpc/svcsock.o
  CC      net/sunrpc/svcauth.o
  CC      net/sunrpc/svcauth_unix.o
  CC      net/sunrpc/pmap_clnt.o
  CC      net/sunrpc/timer.o
  CC      net/sunrpc/xdr.o
  CC      net/sunrpc/sunrpc_syms.o
  CC      net/sunrpc/cache.o
  CC      net/sunrpc/rpc_pipe.o
  CC      net/sunrpc/stats.o
  CC      net/sunrpc/sysctl.o
  LD      net/sunrpc/sunrpc.o
  LD      net/sunrpc/built-in.o
  CC      net/unix/af_unix.o
  CC      net/unix/garbage.o
  CC      net/unix/sysctl_net_unix.o
  LD      net/unix/unix.o
  LD      net/unix/built-in.o
  CC      net/xfrm/xfrm_policy.o
  CC      net/xfrm/xfrm_state.o
  CC      net/xfrm/xfrm_input.o
  CC      net/xfrm/xfrm_algo.o
  CC      net/xfrm/xfrm_output.o
  CC      net/xfrm/xfrm_export.o
  LD      net/xfrm/built-in.o
  CC      net/sysctl_net.o
  LD      net/built-in.o
  CC      lib/kref.o
  LD      lib/zlib_deflate/built-in.o
  CC      lib/zlib_inflate/infblock.o
  CC      lib/zlib_inflate/infcodes.o
  CC      lib/zlib_inflate/inffast.o
  CC      lib/zlib_inflate/inflate.o
  CC      lib/zlib_inflate/inftrees.o
  CC      lib/zlib_inflate/infutil.o
  CC      lib/zlib_inflate/inflate_syms.o
  LD      lib/zlib_inflate/zlib_inflate.o
  LD      lib/zlib_inflate/built-in.o
  LD      lib/built-in.o
  CC      lib/bitmap.o
  CC      lib/bust_spinlocks.o
  CC      lib/cmdline.o
  CC      lib/ctype.o
  CC      lib/dec_and_lock.o
  CC      lib/div64.o
  CC      lib/dump_stack.o
  CC      lib/errno.o
  CC      lib/extable.o
  CC      lib/idr.o
  CC      lib/int_sqrt.o
  CC      lib/kobject.o
  CC      lib/parser.o
  CC      lib/radix-tree.o
  CC      lib/rbtree.o
  CC      lib/rwsem.o
  CC      lib/string.o
  CC      lib/vsprintf.o
  AR      lib/lib.a
  LD      arch/i386/lib/built-in.o
  AS      arch/i386/lib/checksum.o
  CC      arch/i386/lib/delay.o
  AS      arch/i386/lib/getuser.o
  CC      arch/i386/lib/memcpy.o
  CC      arch/i386/lib/strstr.o
  CC      arch/i386/lib/usercopy.o
  AR      arch/i386/lib/lib.a
  GEN     .version
  CHK     include/linux/compile.h
  UPD     include/linux/compile.h
  CC      init/version.o
  LD      init/built-in.o
  LD      .tmp_vmlinux1
drivers/xen/built-in.o(.text+0x4a13): In function `blkif_connect':
: undefined reference to `direct_remap_area_pages'
drivers/xen/built-in.o(.text+0x69b4): In function `netif_connect':
: undefined reference to `direct_remap_area_pages'
drivers/xen/built-in.o(.text+0x69f2): In function `netif_connect':
: undefined reference to `direct_remap_area_pages'
make[2]: *** [.tmp_vmlinux1] Error 1
make[2]: Leaving directory `/usr/src/xeno-unstable.bk/linux-2.6.7-xenU'
make[1]: *** [linux-xenU] Error 2
make[1]: Leaving directory `/usr/src/xeno-unstable.bk'
make: *** [linux26] Error 2

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Compile problem
@ 2006-10-17 15:22 Olivier Doremieux
  0 siblings, 0 replies; 8+ messages in thread
From: Olivier Doremieux @ 2006-10-17 15:22 UTC (permalink / raw)
  To: linux-raid

Hello,

When I am trying to compile the 2.5.4 release, I am getting this error :

In file included from util.c:34:
/usr/include/linux/blkpg.h:36: error: variable or field '__user' 
declared void
/usr/include/linux/blkpg.h:36: error: syntax error before '*' token
util.c: In function 'remove_partitions':
util.c:128: error: storage size of 'a' isn't known
cc1: warnings being treated as errors
util.c:128: warning: unused variable 'a'
make: *** [util.o] Error 1

Thanks in advance and thanks for the great work,

Olivier Doremieux

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2006-10-17 15:22 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-05-26  9:44 compile problem sjb
     [not found] ` <3ED1E212.30108-XuTx12Z7TonQT0dZR+AlfA@public.gmane.org>
2003-05-26 16:13   ` Nils Faerber
     [not found]     ` <20030526181327.21984b10.nils-t93Ne7XHvje5bSeCtf/tX7NAH6kLmebB@public.gmane.org>
2003-05-26 17:16       ` sjb
  -- strict thread matches above, loose matches on Subject: below --
2006-10-17 15:22 Compile problem Olivier Doremieux
2004-08-20  3:47 compile problem James Harper
2004-08-20  6:34 ` Ian Pratt
2004-08-20  7:13   ` James Harper
2003-03-04 21:25 Brian

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.