Merge remote-tracking branch 'ms/x86_64' into next

This commit is contained in:
Michael Tremer
2015-09-11 15:06:09 +01:00
47 changed files with 29297 additions and 30 deletions

15
make.sh
View File

@@ -245,6 +245,11 @@ prepareenv() {
buildtoolchain() {
local error=false
case "${TARGET_ARCH}:${BUILD_ARCH}" in
# x86_64
x86_64:x86_64)
# This is working.
;;
# x86
i586:i586|i586:i686|i586:x86_64)
# These are working.
@@ -413,6 +418,16 @@ buildipfire() {
ipfiremake iptables
case "${TARGET_ARCH}" in
x86_64)
ipfiremake linux KCFG=""
ipfiremake backports KCFG=""
ipfiremake cryptodev KCFG=""
ipfiremake e1000e KCFG=""
# ipfiremake igb KCFG=""
ipfiremake ixgbe KCFG=""
ipfiremake xtables-addons KCFG=""
ipfiremake linux-initrd KCFG=""
;;
i586)
# x86-pae (Native and new XEN) kernel build
ipfiremake linux KCFG="-pae"