summaryrefslogtreecommitdiff
path: root/config.inc
diff options
context:
space:
mode:
authorEvgeny Zinoviev <me@ch1p.io>2019-06-12 00:05:01 +0300
committerEvgeny Zinoviev <me@ch1p.io>2019-06-12 00:05:01 +0300
commit379714eed72e7bd14d352018798b958d90545dd3 (patch)
treeac3c104eafbbb1ce53ab240cbf964a8197853991 /config.inc
initial
Diffstat (limited to 'config.inc')
-rw-r--r--config.inc35
1 files changed, 35 insertions, 0 deletions
diff --git a/config.inc b/config.inc
new file mode 100644
index 0000000..47091c6
--- /dev/null
+++ b/config.inc
@@ -0,0 +1,35 @@
+# Which payload to use. Supported payloads: grub, seabios
+PAYLOAD=grub
+
+# Example: macbookair5_2
+MODEL=
+
+# If empty, default grub.cfg (from this repo) will be used. Skip if you use SeaBIOS.
+GRUB_CFG_PATH=
+
+# Path to cloned coreboot repo.
+COREBOOT_PATH=
+
+# Path to flashrom binary. Minimal required flashrom version is 1.0.
+# Do not use flashrom from Debian repos. Instead, get the latest version from git and build:
+#
+# git clone https://review.coreboot.org/flashrom.git
+# cd flashrom
+# make -j$(nproc)
+#
+FLASHROM=/usr/local/sbin/flashrom
+
+# In case if flashrom detects multiple chips, put "-c CHIP_MODEL" here.
+FLASHROM_ARGS=
+
+# If you want to use original Intel ME image in the final (stage2) ROM, set to 1
+STAGE2_USE_FULL_ME=0
+
+# Other required utilities. Note, that they need to be built. To do that,
+# `cd` to each util's directory and run `make`.
+# If COREBOOT_PATH is set correctly, you don't need to edit these values.
+IFDTOOL=${COREBOOT_PATH}/util/ifdtool/ifdtool
+CBFSTOOL=${COREBOOT_PATH}/util/cbfstool/cbfstool
+
+# This should just work once COREBOOT_PATH is set correctly.
+ME_CLEANER=${COREBOOT_PATH}/util/me_cleaner/me_cleaner.py