diff options
Diffstat (limited to 'archiso')
-rwxr-xr-x | archiso/mkarchiso | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/archiso/mkarchiso b/archiso/mkarchiso index 1fdd184..2427e14 100755 --- a/archiso/mkarchiso +++ b/archiso/mkarchiso @@ -63,6 +63,15 @@ esac [ "x${imgname}" = "x" ] && (echo "Image name must be specified" && usage 1) [ "x${work_dir}" = "x" ] && (echo "Please specify a working directory" && usage 1) + +echo "${APPNAME} : Configuration Settings" +echo " mkinitcpio config file: ${CPIOCONFIG}" +echo " mount description file: ${MOUNTFILE}" +echo " working directory: ${work_dir}" +echo " image name: ${imgname}" +echo " image type: ${IMG_TYPE}" + + _kversion () { # Man this is gross... we need a better way to get the kernel version @@ -135,7 +144,7 @@ command_install () { # pacman DBs are big, delete all sync dbs rm -rf "${work_dir}/var/lib/pacman/sync" - #TODO test for existance + #TODO test for existance of images in work_dir cp "${MOUNTFILE}" "${work_dir}/mounts" # always make an addon out of DEF_CONFIG_DIR |