Add newer flavors to customization script

Also add hint about `$SDCARD`
This commit is contained in:
Werner 2020-10-13 07:11:52 +02:00 committed by GitHub
parent 0443bb082d
commit 98fc5586df
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -10,6 +10,7 @@
# NOTE: If you want to transfer files between chroot and host
# userpatches/overlay directory on host is bind-mounted to /tmp/overlay in chroot
# The sd card's root path is accessible via $SDCARD variable.
RELEASE=$1
LINUXFAMILY=$2
@ -18,9 +19,6 @@ BUILD_DESKTOP=$4
Main() {
case $RELEASE in
xenial)
# your code here
;;
stretch)
# your code here
# InstallOpenMediaVault # uncomment to get an OMV 4 image
@ -28,9 +26,15 @@ Main() {
buster)
# your code here
;;
bullseye)
# your code here
;;
bionic)
# your code here
;;
focal)
# your code here
;;
esac
} # Main