summaryrefslogtreecommitdiff
path: root/util/mainboard/google/hatch/create_coreboot_variant.sh
diff options
context:
space:
mode:
Diffstat (limited to 'util/mainboard/google/hatch/create_coreboot_variant.sh')
-rwxr-xr-xutil/mainboard/google/hatch/create_coreboot_variant.sh14
1 files changed, 7 insertions, 7 deletions
diff --git a/util/mainboard/google/hatch/create_coreboot_variant.sh b/util/mainboard/google/hatch/create_coreboot_variant.sh
index 184e54c810..beaf302580 100755
--- a/util/mainboard/google/hatch/create_coreboot_variant.sh
+++ b/util/mainboard/google/hatch/create_coreboot_variant.sh
@@ -13,7 +13,7 @@
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
-VERSION="1.0.0"
+VERSION="1.0.1"
SCRIPT=$(basename -- "${0}")
export LC_ALL=C
@@ -21,9 +21,8 @@ export LC_ALL=C
if [[ "$#" -lt 1 ]]; then
echo "Usage: ${SCRIPT} variant_name [b:bug_number]"
echo "e.g. ${SCRIPT} kohaku b:140261109"
- echo "Adds a new variant of Hatch to Kconfig and Kconfig.name, creates the"
- echo "skeleton files for acpi, ec, and gpio, copies the makefile for"
- echo "SPD sources, and sets up a basic overridetree"
+ echo "* Adds a new variant of the baseboard to Kconfig and Kconfig.name"
+ echo "* Copies the template files for the baseboard to the new variant"
exit 1
fi
@@ -78,11 +77,12 @@ git add Kconfig Kconfig.name
# Now commit the files.
git commit -sm "${BASE}: Create ${VARIANT} variant
+Create the ${VARIANT} variant of the ${BASE} baseboard by
+copying the baseboard template files to a new directory
+named for the variant.
+
(Auto-Generated by ${SCRIPT} version ${VERSION}).
BUG=${BUG}
TEST=util/abuild/abuild -p none -t google/${BASE} -x -a
make sure the build includes GOOGLE_${VARIANT_UPPER}"
-
-echo "Please check all the files (git show), make any changes you want,"
-echo "and then push to coreboot HEAD:refs/for/master"