update help text

This commit is contained in:
Tobias Powalowski 2024-09-07 23:20:26 +02:00
parent 7493e8859f
commit abe045ee4f
2 changed files with 6 additions and 6 deletions

View file

@ -6,16 +6,16 @@ _ISODIR="$(mktemp -d ISODIR.XXX)"
_BOOTLOADER="/usr/share/archboot/bootloader"
_usage () {
echo -e "\e[1m\e[36mArchboot\e[m\e[1m - Create ${_ARCH} USB/CD Image\e[m"
echo -e "\e[1m\e[36mArchboot\e[m\e[1m - Create ${_ARCH} ISO Image\e[m"
echo -e "\e[1m--------------------------------------\e[m"
echo "This will create an Archboot iso image."
echo "This will create an Archboot ISO image."
echo
echo "Options:"
echo -e " \e[1m-g\e[m Starting generation of image."
echo -e " \e[1m-g\e[m Start generation of an ISO image."
echo -e " \e[1m-c=CONFIG\e[m Which CONFIG should be used."
echo " ${_CONFIG_DIR} includes the config files"
echo " default=${_ARCH}.conf"
echo -e " \e[1m-i=IMAGENAME\e[m Your IMAGENAME."
echo -e " \e[1m-i=ISO\e[m Your custom ISO name."
echo -e " \e[1m-s\e[m Save initramfs files in current work directory"
echo
echo -e "Usage: \e[1m${_BASENAME} <options>\e[m"

View file

@ -10,12 +10,12 @@ _usage () {
echo "This will create an Archboot UKI image."
echo
echo "Options:"
echo -e " \e[1m-g\e[m Starting generation of image."
echo -e " \e[1m-g\e[m Start generation of an UKI image."
echo -e " \e[1m-c=CONFIG\e[m Which CONFIG should be used."
echo " ${_CONFIG_DIR} includes the config files"
echo " default=${_ARCH}.conf"
echo -e " \e[1m-cli='options'\e[m Your custom kernel commandline options."
echo -e " \e[1m-i=IMAGENAME\e[m Your IMAGENAME."
echo -e " \e[1m-i=UKI\e[m Your custom UKI image name."
echo
echo -e "Usage: \e[1m${_BASENAME} <options>\e[m"
exit 0