aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorAriadne Conill <ariadne@dereferenced.org>2020-04-22 07:20:11 -0600
committerAriadne Conill <ariadne@dereferenced.org>2020-04-22 07:22:14 -0600
commitdcca5cdb09eee1309a1680004808a0bfbe763ecc (patch)
tree23616ed34d32603d2f4b3d1f8a1898969ef786a3 /scripts
parent614f419a9edfc097f856f6615065d03d7951f0d5 (diff)
downloadalpine_aports-dcca5cdb09eee1309a1680004808a0bfbe763ecc.tar.bz2
alpine_aports-dcca5cdb09eee1309a1680004808a0bfbe763ecc.tar.xz
alpine_aports-dcca5cdb09eee1309a1680004808a0bfbe763ecc.zip
scripts: mkimg netboot: add mips64 definitions
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/mkimg.netboot.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/mkimg.netboot.sh b/scripts/mkimg.netboot.sh
index 8520fc60dd..ac18752eea 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" 15 arch="aarch64 armhf armv7 ppc64le x86 x86_64 s390x mips64"
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,6 +28,7 @@ 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";;
31 esac 32 esac
32} 33}
33 34