17 lines
453 B
Bash
Executable File
17 lines
453 B
Bash
Executable File
#!/bin/bash
|
|
echo "========================="
|
|
echo "| LOGEN VOID |"
|
|
echo " ------------------------"
|
|
CURRENT=https://repo.voidlinux.eu/current
|
|
NONFREE=https://repo.voidlinux.eu/current/nonfree
|
|
MULTILIB=https://repo.voidlinux.eu/current/multilib
|
|
|
|
|
|
|
|
./mklive.sh \
|
|
-r ${CURRENT} \
|
|
-r ${NONFREE} \
|
|
-r ${MULTILIB} \
|
|
-p "$(grep '^[^#].' logen.packages)" \
|
|
-T "Logen Void" \
|
|
-o logen-void-build_1-live-x86_64-xfce4-4.14.22.iso |