39 lines
1.9 KiB
Diff
39 lines
1.9 KiB
Diff
--- NVIDIA-Linux-x86-340.107/kernel/conftest_orig.sh 2018-10-18 11:31:58.727173092 +1100
|
|
+++ NVIDIA-Linux-x86-340.107/kernel/conftest.sh 2018-10-18 11:32:10.909169831 +1100
|
|
@@ -27,7 +27,7 @@
|
|
COMPILE_TEST_HEADERS="macros functions symbols types generic headers"
|
|
KERNEL_ARCH="$ARCH"
|
|
|
|
-if [ "$ARCH" = "i386" -o "$ARCH" = "x86_64" ]; then
|
|
+if [ "$ARCH" = "i386" -o "$ARCH" = "x86" -o "$ARCH" = "x86_64" ]; then
|
|
if [ -d "$SOURCES/arch/x86" ]; then
|
|
KERNEL_ARCH="x86"
|
|
fi
|
|
@@ -213,7 +213,7 @@
|
|
|
|
if [ "$OUTPUT" != "$SOURCES" ]; then
|
|
MACH_CFLAGS="-I$HEADERS/asm-$ARCH/mach-default"
|
|
- if [ "$ARCH" = "i386" -o "$ARCH" = "x86_64" ]; then
|
|
+ if [ "$ARCH" = "i386" -o "$ARCH" = "x86" -o "$ARCH" = "x86_64" ]; then
|
|
MACH_CFLAGS="$MACH_CFLAGS -I$HEADERS/asm-x86/mach-default"
|
|
MACH_CFLAGS="$MACH_CFLAGS -I$SOURCES/arch/x86/include/asm/mach-default"
|
|
MACH_CFLAGS="$MACH_CFLAGS -I$HEADERS/arch/x86/include/uapi"
|
|
@@ -230,7 +230,7 @@
|
|
fi
|
|
else
|
|
MACH_CFLAGS="-I$HEADERS/asm/mach-default"
|
|
- if [ "$ARCH" = "i386" -o "$ARCH" = "x86_64" ]; then
|
|
+ if [ "$ARCH" = "i386" -o "$ARCH" = "x86" -o "$ARCH" = "x86_64" ]; then
|
|
MACH_CFLAGS="$MACH_CFLAGS -I$HEADERS/asm-x86/mach-default"
|
|
MACH_CFLAGS="$MACH_CFLAGS -I$SOURCES/arch/x86/include/asm/mach-default"
|
|
MACH_CFLAGS="$MACH_CFLAGS -I$HEADERS/arch/x86/include/uapi"
|
|
@@ -250,7 +250,7 @@
|
|
CFLAGS="$BASE_CFLAGS $MACH_CFLAGS $OUTPUT_CFLAGS $AUTOCONF_CFLAGS"
|
|
CFLAGS="$CFLAGS -I$HEADERS -I$HEADERS/uapi -I$OUTPUT/include/generated/uapi"
|
|
|
|
- if [ "$ARCH" = "i386" -o "$ARCH" = "x86_64" ]; then
|
|
+ if [ "$ARCH" = "i386" -o "$ARCH" = "x86" -o "$ARCH" = "x86_64" ]; then
|
|
CFLAGS="$CFLAGS -I$SOURCES/arch/x86/include"
|
|
CFLAGS="$CFLAGS -I$SOURCES/arch/x86/include/uapi"
|
|
CFLAGS="$CFLAGS -I$OUTPUT/arch/x86/include/generated"
|