mmga

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

config.inc (1142B)


      1 # Which payload to use. Supported payloads: grub, seabios
      2 PAYLOAD=grub
      3 
      4 # Example: macbookair5_2
      5 MODEL=
      6 
      7 # If empty, default grub.cfg (from this repo) will be used. Skip if you use SeaBIOS.
      8 GRUB_CFG_PATH=
      9 
     10 # Path to cloned coreboot repo.
     11 COREBOOT_PATH=
     12 
     13 # Path to flashrom binary. Minimal required flashrom version is 1.0.
     14 # Do not use flashrom from Debian repos. Instead, get the latest version from git and build:
     15 #
     16 # git clone https://review.coreboot.org/flashrom.git
     17 # cd flashrom
     18 # make -j$(nproc)
     19 #
     20 FLASHROM=/usr/local/sbin/flashrom
     21 
     22 # In case if flashrom detects multiple chips, put "-c CHIP_MODEL" here.
     23 FLASHROM_ARGS=
     24 
     25 # If you want to use original Intel ME image in the final (stage2) ROM, set to 1
     26 STAGE2_USE_FULL_ME=0
     27 
     28 # Other required utilities. Note, that they need to be built. To do that,
     29 # `cd` to each util's directory and run `make`.
     30 # If COREBOOT_PATH is set correctly, you don't need to edit these values.
     31 IFDTOOL=${COREBOOT_PATH}/util/ifdtool/ifdtool
     32 CBFSTOOL=${COREBOOT_PATH}/util/cbfstool/cbfstool
     33 
     34 # This should just work once COREBOOT_PATH is set correctly.
     35 ME_CLEANER=${COREBOOT_PATH}/util/me_cleaner/me_cleaner.py