index : archiso32 | |
Archlinux32 iso tools | gitolite user |
summaryrefslogtreecommitdiff |
author | Aaron Griffin <aaronmgriffin@gmail.com> | 2008-10-19 19:54:18 -0500 |
---|---|---|
committer | Aaron Griffin <aaronmgriffin@gmail.com> | 2008-10-19 19:57:09 -0500 |
commit | e7a7902104bbb9b490802c7b471cf4a47dce534d (patch) | |
tree | 9a560dc7c83ca7a0b2f40e94003406acd5c0b307 /archiso | |
parent | 00848934b6cfda59e84bf4d3434ca3bcd599c7a0 (diff) |
-rwxr-xr-x | archiso/mkarchiso | 11 |
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 |