aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2020-04-28 15:31:38 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2020-04-28 15:31:38 +0000
commita715ac6a205848b7846b970b7bc1895b1ea5fea8 (patch)
treedbbc71754e34e862944f8704b3dae5fa8cd8c5d4
parent3c09253768db328e5d2d466ed0ab707d00cff5e0 (diff)
downloadalpine_aports-a715ac6a205848b7846b970b7bc1895b1ea5fea8.tar.bz2
alpine_aports-a715ac6a205848b7846b970b7bc1895b1ea5fea8.tar.xz
alpine_aports-a715ac6a205848b7846b970b7bc1895b1ea5fea8.zip
scripts/mkimg.netboot.sh: disable on mips64
Thre are a couple of problems with the mips kernels: - linux-octeon does not have initramfs - System.map has different name (upstream problem) Those issues needs to be solved before we can ship netboot support for mips64.
-rwxr-xr-xscripts/mkimg.netboot.sh3
1 files changed, 1 insertions, 2 deletions
diff --git a/scripts/mkimg.netboot.sh b/scripts/mkimg.netboot.sh
index ac18752eea..8520fc60dd 100755
--- a/scripts/mkimg.netboot.sh
+++ b/scripts/mkimg.netboot.sh
@@ -12,7 +12,7 @@ profile_netboot() {
12 desc="Kernel, initramfs and modloop for 12 desc="Kernel, initramfs and modloop for
13 netboot. 13 netboot.
14 " 14 "
15 arch="aarch64 armhf armv7 ppc64le x86 x86_64 s390x mips64" 15 arch="aarch64 armhf armv7 ppc64le x86 x86_64 s390x"
16 kernel_cmdline="nomodeset" 16 kernel_cmdline="nomodeset"
17 case "$ARCH" in 17 case "$ARCH" in
18 armhf) kernel_flavors= ;; 18 armhf) kernel_flavors= ;;
@@ -28,7 +28,6 @@ profile_netboot() {
28 s390x) initfs_features="$initfs_features dasd_mod qeth";; 28 s390x) initfs_features="$initfs_features dasd_mod qeth";;
29 aarch64) kernel_flavors="$kernel_flavors rpi";; 29 aarch64) kernel_flavors="$kernel_flavors rpi";;
30 armhf|armv7) kernel_flavors="$kernel_flavors rpi rpi2";; 30 armhf|armv7) kernel_flavors="$kernel_flavors rpi rpi2";;
31 mips64) kernel_flavors="$kernel_flavors octeon";;
32 esac 31 esac
33} 32}
34 33