From 98318ea039c39bff953c6b83010e48791ee6d286 Mon Sep 17 00:00:00 2001 From: Aaron Griffin Date: Sat, 6 Sep 2008 20:45:45 -0500 Subject: Rename "default-config" to "overlay" I like difficulty and then name was annoying me Signed-off-by: Aaron Griffin --- archiso/mkarchiso | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'archiso/mkarchiso') diff --git a/archiso/mkarchiso b/archiso/mkarchiso index 52087fa..193c51a 100755 --- a/archiso/mkarchiso +++ b/archiso/mkarchiso @@ -1,7 +1,7 @@ #!/bin/bash CPIOCONFIG="$(pwd)/archiso-mkinitcpio.conf" -DEF_CONFIG_DIR="$(pwd)/default-config" +DEF_CONFIG_DIR="$(pwd)/overlay" PKGFILE="$(pwd)/packages.list" PKGLIST="" QUIET="y" @@ -28,8 +28,8 @@ usage () echo " -v Enable verbose output." echo " -h This message." echo " commands:" - echo " install : where to build the image root" - echo " squash : generate a squashfs image of the installed root" + echo " install : where to build the image root" + echo " squash : generate a squashfs image of the installed root" echo " img : build an image from the working directory" echo " all : perform all of the above, in order" exit $1 @@ -171,11 +171,11 @@ if [ "${command_name}" = "install" -o "${command_name}" = "all" ]; then fi # always make an addon out of DEF_CONFIG_DIR - echo "Creating default-config addon..." + echo "Creating default overlay..." if [ "${QUIET}" = "y" ]; then - mksquashfs "${DEF_CONFIG_DIR}" "${imgroot}/addons/default-config.sqfs" -noappend >/dev/null + mksquashfs "${DEF_CONFIG_DIR}" "${imgroot}/addons/overlay.sqfs" -noappend >/dev/null else - mksquashfs "${DEF_CONFIG_DIR}" "${imgroot}/addons/default-config.sqfs" -noappend + mksquashfs "${DEF_CONFIG_DIR}" "${imgroot}/addons/overlay.sqfs" -noappend fi fi -- cgit v1.2.3-54-g00ecf