From c771aad44f592baae32249669f5369fc4206e72c Mon Sep 17 00:00:00 2001 From: Leah Rowe Date: Sat, 11 Dec 2021 14:25:26 +0000 Subject: add scripts for modifying coreboot configs --- modify | 102 ++++++++++++++++++++++++++++++ resources/scripts/modify/coreboot/configs | 82 ++++++++++++++++++++++++ resources/scripts/modify/seabios/configs | 64 +++++++++++++++++++ 3 files changed, 248 insertions(+) create mode 100755 modify create mode 100755 resources/scripts/modify/coreboot/configs create mode 100755 resources/scripts/modify/seabios/configs diff --git a/modify b/modify new file mode 100755 index 00000000..dbfd19cc --- /dev/null +++ b/modify @@ -0,0 +1,102 @@ +#!/usr/bin/env bash + +# generic scripts for modifying configs and such +# +# Copyright (C) 2014, 2015, 2020, 2021 Leah Rowe +# Copyright (C) 2015 Patrick "P. J." McDermott +# Copyright (C) 2015, 2016 Klemens Nanni +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +# + +[ "x${DEBUG+set}" = 'xset' ] && set -v +set -u -e + +projectname="$(cat projectname)" +./resources/scripts/misc/versioncheck + +modify=./resources/scripts/modify + +listmodes() { + for mode in "${modify}"/*; do + printf '%s\n' "${mode##*/}" + done +} + +# Takes exactly one mode as parameter +listoptions() { + for option in "${modify}"/"${1}"/*; do + printf '%s\n' "${option##*/}" + done +} + +help() { + cat <<- EOF + USAGE: ./modify