summaryrefslogtreecommitdiffstats
path: root/sys/conf
diff options
context:
space:
mode:
authorimp <imp@FreeBSD.org>2014-02-04 18:24:25 +0000
committerimp <imp@FreeBSD.org>2014-02-04 18:24:25 +0000
commitfdc52c1fa04b64b01ee1dd7359d122b2ccb43cea (patch)
treefad85c15f4822275f50ee63a7a7825b21632de16 /sys/conf
parent3cf9b263cdd1c3eb449f87f1f03c00efdcb0938c (diff)
downloadFreeBSD-src-fdc52c1fa04b64b01ee1dd7359d122b2ccb43cea.zip
FreeBSD-src-fdc52c1fa04b64b01ee1dd7359d122b2ccb43cea.tar.gz
Bump the version of config to the latest (3 year old, so upgrade
worries are long past). Also remove redundant MACHINE= declarations and passing MACHINE/MACHINE_ARCH to module builds. That's now done in common code.
Diffstat (limited to 'sys/conf')
-rw-r--r--sys/conf/Makefile.amd644
-rw-r--r--sys/conf/Makefile.arm4
-rw-r--r--sys/conf/Makefile.i3866
-rw-r--r--sys/conf/Makefile.ia642
-rw-r--r--sys/conf/Makefile.mips5
-rw-r--r--sys/conf/Makefile.pc986
-rw-r--r--sys/conf/Makefile.powerpc2
-rw-r--r--sys/conf/Makefile.sparc642
8 files changed, 8 insertions, 23 deletions
diff --git a/sys/conf/Makefile.amd64 b/sys/conf/Makefile.amd64
index 97f4d3c..0918417 100644
--- a/sys/conf/Makefile.amd64
+++ b/sys/conf/Makefile.amd64
@@ -18,7 +18,7 @@
#
# Which version of config(8) is required.
-%VERSREQ= 600004
+%VERSREQ= 600012
STD8X16FONT?= iso
@@ -37,8 +37,6 @@ INCLUDES+= -I$S/contrib/libfdt
CFLAGS+= -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer
.endif
-MKMODULESENV+= MACHINE=amd64
-
# XXX: clang integrated-as doesn't grok .codeNN directives yet
ASM_CFLAGS.acpi_wakecode.S= ${CLANG_NO_IAS}
ASM_CFLAGS.mpboot.S= ${CLANG_NO_IAS}
diff --git a/sys/conf/Makefile.arm b/sys/conf/Makefile.arm
index d3332b4..95184f3 100644
--- a/sys/conf/Makefile.arm
+++ b/sys/conf/Makefile.arm
@@ -17,7 +17,7 @@
#
# Which version of config(8) is required.
-%VERSREQ= 600004
+%VERSREQ= 600012
STD8X16FONT?= iso
@@ -126,8 +126,6 @@ ${KERNEL_KO}.tramp: ${KERNEL_KO} $S/$M/$M/inckern.S $S/$M/$M/elf_trampoline.c
rm ${KERNEL_KO}.tmp.gz ${KERNEL_KO}.tramp.noheader opt_kernname.h \
inflate-tramp.o tmphack.S
-MKMODULESENV+= MACHINE=${MACHINE}
-
%BEFORE_DEPEND
%OBJS
diff --git a/sys/conf/Makefile.i386 b/sys/conf/Makefile.i386
index 4651e8d..e2f72bf 100644
--- a/sys/conf/Makefile.i386
+++ b/sys/conf/Makefile.i386
@@ -17,7 +17,7 @@
#
# Which version of config(8) is required.
-%VERSREQ= 600004
+%VERSREQ= 600012
STD8X16FONT?= iso
@@ -32,10 +32,6 @@ S= ../../..
INCLUDES+= -I$S/contrib/libfdt
-MACHINE=i386
-
-MKMODULESENV+= MACHINE=${MACHINE}
-
# XXX: clang integrated-as doesn't grok .codeNN directives yet
ASM_CFLAGS.acpi_wakecode.S= ${CLANG_NO_IAS}
ASM_CFLAGS.mpboot.s= ${CLANG_NO_IAS}
diff --git a/sys/conf/Makefile.ia64 b/sys/conf/Makefile.ia64
index f736866..de4d41c 100644
--- a/sys/conf/Makefile.ia64
+++ b/sys/conf/Makefile.ia64
@@ -17,7 +17,7 @@
#
# Which version of config(8) is required.
-%VERSREQ= 600004
+%VERSREQ= 600012
STD8X16FONT?= iso
diff --git a/sys/conf/Makefile.mips b/sys/conf/Makefile.mips
index 69eea9e..09eca75 100644
--- a/sys/conf/Makefile.mips
+++ b/sys/conf/Makefile.mips
@@ -15,7 +15,7 @@
#
# Which version of config(8) is required.
-%VERSREQ= 600004
+%VERSREQ= 600012
STD8X16FONT?= iso
@@ -39,8 +39,6 @@ KERNLOADADDR?=0x80001000
# To be changed later
TRAMPLOADADDR?=0x807963c0
-MKMODULESENV+= MACHINE=${MACHINE} MACHINE_ARCH=${MACHINE_ARCH}
-
# We default to the MIPS32 ISA, if none specified in the
# kernel configuration file.
ARCH_FLAGS?=-march=mips32
@@ -60,7 +58,6 @@ TRAMP_ELFSIZE=64
TRAMP_ELFSIZE=32
.endif
-# XXX hardcoded kernel entry point
ASM_CFLAGS+=${CFLAGS} -D_LOCORE -DLOCORE
.if !defined(WITHOUT_KERNEL_TRAMPOLINE)
diff --git a/sys/conf/Makefile.pc98 b/sys/conf/Makefile.pc98
index e3a265d..728261b 100644
--- a/sys/conf/Makefile.pc98
+++ b/sys/conf/Makefile.pc98
@@ -19,7 +19,7 @@
#
# Which version of config(8) is required.
-%VERSREQ= 600004
+%VERSREQ= 600012
.if !defined(S)
.if exists(./@/.)
@@ -30,10 +30,6 @@ S= ../../..
.endif
.include "$S/conf/kern.pre.mk"
-MACHINE=pc98
-
-MKMODULESENV+= MACHINE=${MACHINE}
-
# XXX: clang integrated-as doesn't grok .codeNN directives yet
ASM_CFLAGS.mpboot.s= ${CLANG_NO_IAS}
ASM_CFLAGS+= ${ASM_CFLAGS.${.IMPSRC:T}}
diff --git a/sys/conf/Makefile.powerpc b/sys/conf/Makefile.powerpc
index 2abc4d4..015efc6 100644
--- a/sys/conf/Makefile.powerpc
+++ b/sys/conf/Makefile.powerpc
@@ -17,7 +17,7 @@
#
# Which version of config(8) is required.
-%VERSREQ= 600010
+%VERSREQ= 600012
STD8X16FONT?= iso
diff --git a/sys/conf/Makefile.sparc64 b/sys/conf/Makefile.sparc64
index 947ec87..736f9cb 100644
--- a/sys/conf/Makefile.sparc64
+++ b/sys/conf/Makefile.sparc64
@@ -17,7 +17,7 @@
#
# Which version of config(8) is required.
-%VERSREQ= 600004
+%VERSREQ= 600012
STD8X16FONT?= iso
OpenPOWER on IntegriCloud