14 lines
226 B
Bash
Executable File
14 lines
226 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -ex
|
|
|
|
MODEL="$(grep CONFIG_VARIANT_DIR .config | cut -d '"' -f2)"
|
|
if [ -z "$MODEL" ]
|
|
then
|
|
MODEL="qemu"
|
|
fi
|
|
|
|
time make -j$(nproc) BUILD_TIMELESS=1
|
|
|
|
cp -v build/coreboot.rom "system76/$MODEL/coreboot"
|