Compare commits

..

2 commits

Author SHA1 Message Date
Tobias Powalowski
d00823f4d1 fix repository firmware 2024-09-09 11:23:36 +02:00
Tobias Powalowski
c2ec19d400 fix CUSTOM_WAYLAND 2024-09-09 10:13:20 +02:00
4 changed files with 7 additions and 3 deletions

View file

@ -61,7 +61,7 @@ if [[ -n "${_G_RELEASE}" ]]; then
fi fi
# install custom xorg or wayland # install custom xorg or wayland
#shellcheck disable=SC2128 #shellcheck disable=SC2128
if [[ -n "${_CUSTOM_X}" || -n "${_CUSTOM_WAYLAND}" ]]; then if [[ -n "${_CUSTOM_X}" || -n "${_CUSTOM_WL}" ]]; then
_custom_wayland_xorg _custom_wayland_xorg
fi fi
# Gnome, KDE/PLASMA or XFCE launch # Gnome, KDE/PLASMA or XFCE launch

View file

@ -24,6 +24,10 @@ _KEYRING=(archlinux-keyring)
_LABEL="Exit" _LABEL="Exit"
_LOCAL_DB="${_CACHEDIR}/archboot.db" _LOCAL_DB="${_CACHEDIR}/archboot.db"
_LOG="/dev/tty11" _LOG="/dev/tty11"
_LINUX_FIRMWARE=(
linux-firmware
linux-firmware-marvell
)
_MAN_INFO_PACKAGES=( _MAN_INFO_PACKAGES=(
man-db man-db
man-pages man-pages

View file

@ -159,7 +159,7 @@ _install_base_packages() {
else else
_MKINITCPIO=initramfs _MKINITCPIO=initramfs
fi fi
_PACKAGES+=(linux-firmware linux-firmware-marvell) _PACKAGES+=(${_LINUX_FIRMWARE[@]})
if [[ "${2}" == "use_binfmt" ]]; then if [[ "${2}" == "use_binfmt" ]]; then
#shellcheck disable=SC2068,SC2145 #shellcheck disable=SC2068,SC2145
echo "Downloading ${_KEYRING[@]} ${_PACKAGES[@]} to ${1}..." echo "Downloading ${_KEYRING[@]} ${_PACKAGES[@]} to ${1}..."

View file

@ -20,7 +20,7 @@ _download_packages() {
_pacman_key_system _pacman_key_system
fi fi
#shellcheck disable=SC2206 #shellcheck disable=SC2206
_PACKAGES+=(${_KEYRING[@]} ${_ARCHBOOT} ${_MAN_INFO_PACKAGES[@]}) _PACKAGES+=(${_KEYRING[@]} ${_LINUX_FIRMWARE[@]} ${_ARCHBOOT} ${_MAN_INFO_PACKAGES[@]})
#shellcheck disable=SC2145 #shellcheck disable=SC2145
echo "Downloading ${_PACKAGES[@]} to ${1}..." echo "Downloading ${_PACKAGES[@]} to ${1}..."
#shellcheck disable=SC2086,SC2068 #shellcheck disable=SC2086,SC2068