Add generic installation scripts for Arch

This commit is contained in:
Manuel Thalmann 2024-05-06 13:11:59 +02:00
parent d5ea53b891
commit d02fc8e71c
2 changed files with 20 additions and 0 deletions

View file

@ -0,0 +1,11 @@
#!/bin/bash -e
pushd "${BASH_SOURCE%/*}" > /dev/null;
function installDrivers() {
local dir="${BASH_SOURCE%/*}";
. "$dir/../../../scripts/Arch/Config/SecureBoot/install.sh";
}
. "../../../scripts/Arch/OS/install.sh";
popd > /dev/null;

View file

@ -0,0 +1,9 @@
#!/bin/bash -e
pushd "${BASH_SOURCE%/*}" > /dev/null;
ARCH_MOUNT_ROOT="/mnt" \
ARCH_HOSTNAME="archlinux" \
USER_DISPLAYNAME="Manuel Thalmann" \
. "../../../scripts/Arch/OS/setup.sh";
popd > /dev/null;