Files
system76-coreboot/rebuild.sh
2019-03-02 13:45:13 -07:00

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"