1 AC_MSG_CHECKING(if you are running user mode linux for $host_cpu ...)
2 if test -e $LINUX/include/asm-um ; then
3 if test X`ls -id $LINUX/include/asm/ | awk '{print $1}'` = X`ls -id $LINUX/include/asm-um | awk '{print $1}'` ; then
7 AC_MSG_RESULT(no (asm doesn't point at asm-um))
11 AC_MSG_RESULT(no (asm-um missing))
14 AC_MSG_CHECKING(setting make flags system architecture: )
17 AC_MSG_RESULT($host_cpu)
18 KCFLAGS='-g -Wall -pipe -Wno-trigraphs -Wstrict-prototypes -fno-strict-aliasing -fno-common '
19 KCPPFLAGS='-D__KERNEL__ -U__i386__ -Ui386 -DUM_FASTCALL -D__arch_um__ -DSUBARCH="i386" -DNESTING=0 -D_LARGEFILE64_SOURCE -Derrno=kernel_errno -DPATCHLEVEL=4 -DMODULE -I$(LINUX)/arch/um/include '
23 AC_MSG_RESULT($host_cpu)
24 KCFLAGS='-g -O2 -Wall -Wstrict-prototypes -pipe'
25 KCPPFLAGS='-D__KERNEL__ -DMODULE '
30 AC_MSG_RESULT($host_cpu)
31 KCFLAGS='-g -O2 -Wall -Wstrict-prototypes -Wno-trigraphs -fomit-frame-pointer -fno-strict-aliasing -fno-common -pipe -mno-fp-regs -ffixed-8 -mcpu=ev5 -Wa,-mev6'
32 KCPPFLAGS='-D__KERNEL__ -DMODULE '
37 AC_MSG_RESULT($host_cpu)
38 KCFLAGS='-g -O2 -Wall -Wstrict-prototypes -Wno-trigraphs -fomit-frame-pointer -fno-strict-aliasing -fno-common -pipe -mno-fp-regs -ffixed-8 -mcpu=ev5 -Wa,-mev6'
39 KCPPFLAGS='-D__KERNEL__ -DMODULE '
44 AC_MSG_RESULT($host_cpu)
45 KCFLAGS='-g -O2 -Wall -Wstrict-prototypes -Wno-trigraphs -fomit-frame-pointer -fno-strict-aliasing -fno-common -pipe -mno-fp-regs -ffixed-8 -mcpu=ev5 -Wa,-mev5'
46 KCPPFLAGS='-D__KERNEL__ -DMODULE '
51 AC_MSG_RESULT($host_cpu)
52 KCFLAGS='-g -O2 -Wall -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -pipe -ffixed-r13 -mfixed-range=f10-f15,f32-f127 -falign-functions=32 -mb-step'
53 KCPPFLAGS='-D__KERNEL__ -DMODULE'
58 AC_MSG_RESULT($host_cpu)
59 KCFLAGS='-O2 -Wall -Wstrict-prototypes -Wno-trigraphs -fomit-frame-pointer -fno-strict-aliasing -fno-common -Wno-unused -m64 -pipe -mno-fpu -mcpu=ultrasparc -mcmodel=medlow -ffixed-g4 -fcall-used-g5 -fcall-used-g7 -Wno-sign-compare -Wa,--undeclared-regs'
60 KCPPFLAGS='-D__KERNEL__'
66 AC_MSG_RESULT($host_cpu)
67 KCFLAGS='-O2 -Wall -Wstrict-prototypes -Wno-trigraphs -fomit-frame-pointer -fno-strict-aliasing -fno-common -D__powerpc__ -fsigned-char -msoft-float -pipe -ffixed-r2 -Wno-uninitialized -mmultiple -mstring'
68 KCPPFLAGS='-D__KERNEL__'
69 MOD_LINK=elf32ppclinux
73 AC_ERROR("Unknown Linux Platform: $host_cpu")
77 AC_MSG_CHECKING(for MODVERSIONS)
78 if egrep -e 'MODVERSIONS.*1' $LINUX/include/linux/autoconf.h >/dev/null 2>&1;
80 MFLAGS="-DMODULE -DMODVERSIONS -include $LINUX/include/linux/modversions.h -DEXPORT_SYMTAB"
87 AC_MSG_CHECKING(for SMP)
88 if egrep -e SMP=y $LINUX/.config >/dev/null 2>&1; then
96 CFLAGS="$KCFLAGS $MFLAGS"
97 ARCHCPPFLAGS="$KCPPFLAGS"