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

scripts/mkimg.standard.sh: use `case ... in`

parent 2eddc637
No related branches found
No related tags found
No related merge requests found
......@@ -10,13 +10,16 @@ profile_standard() {
output_format="iso"
kernel_cmdline="nomodeset"
kernel_addons="xtables-addons"
if [ "$ARCH" = "s390x" ]; then
case "$ARCH" in
s390x)
apks="$apks s390-tools"
initfs_features="$initfs_features dasd_mod qeth"
initfs_cmdline="modules=loop,squashfs,dasd_mod,qeth quiet"
fi
if [ "$ARCH" = "ppc64le" ]; then
;;
ppc64le)
initfs_cmdline="modules=loop,squashfs,sd-mod,usb-storage,ibmvscsi quiet"
;;
esac
fi
}
......
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