aboutsummaryrefslogtreecommitdiffstats
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)
downloadaports-a715ac6a205848b7846b970b7bc1895b1ea5fea8.tar.bz2
aports-a715ac6a205848b7846b970b7bc1895b1ea5fea8.tar.xz
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() {
desc="Kernel, initramfs and modloop for
netboot.
"
- arch="aarch64 armhf armv7 ppc64le x86 x86_64 s390x mips64"
+ arch="aarch64 armhf armv7 ppc64le x86 x86_64 s390x"
kernel_cmdline="nomodeset"
case "$ARCH" in
armhf) kernel_flavors= ;;
@@ -28,7 +28,6 @@ profile_netboot() {
s390x) initfs_features="$initfs_features dasd_mod qeth";;
aarch64) kernel_flavors="$kernel_flavors rpi";;
armhf|armv7) kernel_flavors="$kernel_flavors rpi rpi2";;
- mips64) kernel_flavors="$kernel_flavors octeon";;
esac
}