diff options
author | Swift Geek <swiftgeek@gmail.com> | 2018-10-09 22:46:25 +0000 |
---|---|---|
committer | Gogs <gogitservice@gmail.com> | 2018-10-09 22:46:25 +0000 |
commit | 2c9bf26f2a47d2334bae3b9902e952fc20b29ee5 (patch) | |
tree | ccc874cc093e3a10cb481aed8d38c6e410e0845a /projects/coreboot/coreboot-helper | |
parent | 1c2b39c0412ddb3856c6e92f6f221a8a26b10eba (diff) | |
parent | 0fce215ebc61a162e95e745d42eb87849cd0b85d (diff) | |
download | librebootfr-2c9bf26f2a47d2334bae3b9902e952fc20b29ee5.tar.gz librebootfr-2c9bf26f2a47d2334bae3b9902e952fc20b29ee5.zip |
Merge branch 'coreboot-rework' of and_who/libreboot into master
Diffstat (limited to 'projects/coreboot/coreboot-helper')
-rwxr-xr-x | projects/coreboot/coreboot-helper | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/projects/coreboot/coreboot-helper b/projects/coreboot/coreboot-helper index 8a528fa5..d32ccb67 100755 --- a/projects/coreboot/coreboot-helper +++ b/projects/coreboot/coreboot-helper @@ -25,10 +25,18 @@ coreboot_arch() { project_file_contents "$project" "$CONFIGS" "$ARCH" "$@" } +coreboot_config() { + project_file_contents_herit "$project" "$CONFIGS" "$CONFIG" "$@" +} + coreboot_config_path() { project_file_path "$project" "$CONFIGS" "$CONFIG" "$@" } +coreboot_variant_config_path() { + project_file_path "$project" "$CONFIGS" "$VARIANTS/$board" "$@" +} + coreboot_ec_check() { project_file_test "$project" "$CONFIGS" "$EC" "$@" } |