14 lines
264 B
Bash
Executable file
14 lines
264 B
Bash
Executable file
#!/bin/bash -e
|
|
function install() {
|
|
local dir="$(realpath "${BASH_SOURCE%/*}")";
|
|
|
|
function installDrivers() {
|
|
. "$dir/../../../../../scripts/Arch/Config/SecureBoot/install.sh";
|
|
}
|
|
|
|
|
|
. "../../../../../scripts/Arch/OS/install.sh";
|
|
}
|
|
|
|
install;
|