summaryrefslogtreecommitdiff
path: root/mkarchiso
diff options
context:
space:
mode:
authorAaron Griffin <aaron@archlinux.org>2006-09-28 02:15:25 +0000
committerAaron Griffin <aaron@archlinux.org>2006-09-28 02:15:25 +0000
commitc464db595165a847e5fc81a57133f68a9c2e0ef8 (patch)
tree6419418b51e45d275e5d3ccf0a61dc3ae0697131 /mkarchiso
parent59ddc5be61a1ee5dadc32c8a2255931d62bbce2a (diff)
git-svn-id: http://phraktured.net/archiso@13 00a9fe69-e71b-0410-bb23-df0e5024db41
Diffstat (limited to 'mkarchiso')
-rwxr-xr-xmkarchiso49
1 files changed, 25 insertions, 24 deletions
diff --git a/mkarchiso b/mkarchiso
index 28b1b3f..4710a15 100755
--- a/mkarchiso
+++ b/mkarchiso
@@ -32,17 +32,18 @@ usage ()
exit 1
}
-while getopts 'c:i:n:s:pvh' arg; do
+while getopts 'c:i:fvh' arg; do
case "${arg}" in
c) CONFIG="${OPTARG}" ;;
i) CPIOCONFIG="${OPTARG}" ;;
- v) FORCE="f" ;;
+ f) FORCE="y" ;;
v) QUIET="n" ;;
h|?) usage ;;
*) echo "invalid argument '${arg}'"; usage ;;
esac
done
shift $(($OPTIND - 1))
+echo "ARGS: $@"
[ $# -le 1 ] && usage
@@ -57,23 +58,6 @@ esac
[ "x${work_dir}" = "x" ] && (echo "please specify a working directory" && usage)
-if [ -e "${work_dir}" -a "${FORCE}" = "n" ]; then
- echo "Working dir '${work_dir}' already exists, aborting..."
- exit 1
-fi
-
-if [ "${command_name}" = "iso" -o "${command_name}" = "all" ]; then
- [ "x${isoname}" = "x" ] && (echo "please specify an iso name" && usage)
- if [ -e "${isoname}" -a "${FORCE}" = "n"]; then
- echo "ISO Image '${isoname}' already exists, aborting..."
- exit 1
- fi
- if [ -e "${CPIOCONFIG}" ]; then
- echo "mkinitcpio config '${CPIOCONFIG}' does not exist, aborting..."
- exit 1
- fi
-fi
-
#TODO - do we even need a config file?
if [ -e "${CONFIG}" ]; then
source "${CONFIG}"
@@ -134,6 +118,11 @@ install_pkgfile ()
}
if [ "${command_name}" = "install" -o "${command_name}" = "all" ]; then
+ if [ -e "${work_dir}" -a "${FORCE}" = "n" ]; then
+ echo "Working dir '${work_dir}' already exists, aborting..."
+ exit 1
+ fi
+
mkdir -p "${isoroot}"
mkdir -p "${instroot}"
@@ -176,7 +165,7 @@ if [ "${command_name}" = "install" -o "${command_name}" = "all" ]; then
find "${instroot}/boot" -name *.img -delete #TODO, will this delete our special stuff?
echo "Applying default configuration for the Arch ISO."
- cp -rf ${DEF_CONFIG_DIR}/* "${instroot}"
+ cp -rfa ${DEF_CONFIG_DIR}/* "${instroot}"
echo "Copyright (C) 2006, Arch Linux (Judd Vinet)" > "${instroot}/etc/copyright"
@@ -228,6 +217,20 @@ if [ "${command_name}" = "squash" -o "${command_name}" = "all" ]; then
fi
if [ "${command_name}" = "iso" -o "${command_name}" = "all" ]; then
+ [ "x${isoname}" = "x" ] && (echo "please specify an iso name" && usage)
+ if [ -e "${isoname}" ]; then
+ if [ "${FORCE}" = "y" ]; then
+ rm -rf "${isoname}"
+ else
+ echo "ISO Image '${isoname}' already exists, aborting..."
+ exit 1
+ fi
+ fi
+ if [ ! -e "${CPIOCONFIG}" ]; then
+ echo "mkinitcpio config '${CPIOCONFIG}' does not exist, aborting..."
+ exit 1
+ fi
+
kernelver=$(_kversion)
basedir=${instroot}
[ "${instroot:0:1}" != "/" ] && basedir="$(pwd)/${instroot}"
@@ -238,13 +241,11 @@ if [ "${command_name}" = "iso" -o "${command_name}" = "all" ]; then
fi
cp ${instroot}/usr/lib/grub/i386-pc/* "${isoroot}/boot/grub"
-fi
-if [ "${SKIP_ISO}" = "n" ]; then
echo "Creating ISO image..."
q=""
- [ "${QUIET}" = "y" ] && q="-q"
- mkisofs "${q}" -r -l -b "boot/grub/stage2_eltorito" -uid 0 -gid 0 -no-emul-boot \
+ #[ "${QUIET}" = "y" ] && q="-q"
+ mkisofs ${q} -r -l -b "boot/grub/stage2_eltorito" -uid 0 -gid 0 -no-emul-boot \
-boot-load-size 4 -boot-info-table -publisher "Arch Linux <archlinux.org>" \
-input-charset=UTF-8 -p "prepared by $NAME" -A "Arch Linux Live/Rescue CD" \
-copyright /etc/copyright -o "${isoname}" "${isoroot}"