Skip to content
Snippets Groups Projects
Commit 4ed79f37 authored by Natanael Copa's avatar Natanael Copa
Browse files

scripts/mkimg.netboot.sh: fix kernels for armhf

there are no linux-lts kernel for armhf
parent 34dd2409
No related merge requests found
......@@ -12,7 +12,10 @@ profile_netboot() {
"
arch="aarch64 armhf armv7 ppc64le x86 x86_64 s390x"
kernel_cmdline="nomodeset"
kernel_flavors="lts"
case "$ARCH" in
armhf) kernel_flavors= ;;
*) kernel_flavors="lts";;
esac
modloop_sign=yes
apks=""
initfs_features="base network squashfs usb virtio"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment