2022-11-07 23:34:09 +00:00
|
|
|
#!/bin/bash
|
|
|
|
set -e
|
2023-03-29 00:13:53 +00:00
|
|
|
|
|
|
|
if [ -d "output" ]; then
|
|
|
|
rm -rf "output"
|
|
|
|
fi
|
|
|
|
|
|
|
|
# i386 legacy (single language)
|
|
|
|
source wdvn-env-i386
|
|
|
|
WDVN_FAT=0 wdvn-make "output" shrink-nodocs base hardware graphical-me.fier.de live finish legacy
|
|
|
|
wdvn-image-iso "output" "$(wdvn-name)_legacy_en.iso"
|
|
|
|
rm -rf "output"
|
2022-11-07 23:34:09 +00:00
|
|
|
|
|
|
|
# i386 proprietary
|
2023-04-21 05:58:29 +00:00
|
|
|
WDVN_FAT=1 wdvn-make "output" base hardware hardware-proprietary graphical-xfce4 live finish
|
2023-03-29 00:13:53 +00:00
|
|
|
wdvn-image-iso "output" "$(wdvn-name)_proprietary.iso"
|
|
|
|
rm -rf "output"
|
2022-11-07 23:34:09 +00:00
|
|
|
|
|
|
|
# amd64 proprietary
|
|
|
|
source wdvn-env-amd64
|
2023-04-21 05:58:29 +00:00
|
|
|
WDVN_FAT=1 wdvn-make "output" base hardware hardware-proprietary graphical-xfce4 live finish
|
2023-03-29 00:13:53 +00:00
|
|
|
wdvn-image-iso "output" "$(wdvn-name)_proprietary.iso"
|
|
|
|
rm -rf "output"
|
2022-11-07 23:34:09 +00:00
|
|
|
|
|
|
|
echo ""
|
2023-04-21 05:58:29 +00:00
|
|
|
echo "Success!"
|