11 lines
246 B
Bash
Executable file
11 lines
246 B
Bash
Executable file
#!/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;
|