Add generic installation scripts for Arch
This commit is contained in:
parent
063fae07d8
commit
dc6f4491a4
2 changed files with 20 additions and 0 deletions
11
profiles/Generic/Arch/install.sh
Normal file
11
profiles/Generic/Arch/install.sh
Normal 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;
|
9
profiles/Generic/Arch/setup.sh
Normal file
9
profiles/Generic/Arch/setup.sh
Normal 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;
|
Loading…
Reference in a new issue