summaryrefslogtreecommitdiff
path: root/archiso/mkarchiso
diff options
context:
space:
mode:
authorAaron Griffin <aaronmgriffin@gmail.com>2008-09-06 20:45:45 -0500
committerAaron Griffin <aaronmgriffin@gmail.com>2008-09-06 20:45:45 -0500
commit98318ea039c39bff953c6b83010e48791ee6d286 (patch)
treeb817b6594cea311c3fdfe31dabbe33d80e56a5c5 /archiso/mkarchiso
parent8966351b12bbcf2f8fffbd8c3a4b00e7529349b8 (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/mkarchiso')
-rwxr-xr-xarchiso/mkarchiso12
1 files changed, 6 insertions, 6 deletions
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