diff options
author | Aaron Griffin <aaronmgriffin@gmail.com> | 2008-09-06 20:45:45 -0500 |
---|---|---|
committer | Aaron Griffin <aaronmgriffin@gmail.com> | 2008-09-06 20:45:45 -0500 |
commit | 98318ea039c39bff953c6b83010e48791ee6d286 (patch) | |
tree | b817b6594cea311c3fdfe31dabbe33d80e56a5c5 /archiso | |
parent | 8966351b12bbcf2f8fffbd8c3a4b00e7529349b8 (diff) |
Rename "default-config" to "overlay"
I like difficulty and then name was annoying me
Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
Diffstat (limited to 'archiso')
-rw-r--r-- | archiso/hooks/archiso | 2 | ||||
-rwxr-xr-x | archiso/mkarchiso | 12 |
2 files changed, 7 insertions, 7 deletions
diff --git a/archiso/hooks/archiso b/archiso/hooks/archiso index 8a6b648..376593b 100644 --- a/archiso/hooks/archiso +++ b/archiso/hooks/archiso @@ -55,7 +55,7 @@ run_hook () addon_dir="${BOOT_MOUNT}/addons" # always layer default configuration - _mnt_squashfs "${addon_dir}/default-config.sqfs" + _mnt_squashfs "${addon_dir}/overlay.sqfs" if [ -e "${addon_dir}/config" ]; then msg ":: Mounting addons" 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 <working dir> : where to build the image root" - echo " squash <working dir> : generate a squashfs image of the installed root" + echo " install <working dir> : where to build the image root" + echo " squash <working dir> : generate a squashfs image of the installed root" echo " img <working dir> <image name> : build an image from the working directory" echo " all <working dir> <image name> : 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 |