git-svn-id: http://phraktured.net/archiso@4 00a9fe69-e71b-0410-bb23-df0e5024db41
This commit is contained in:
parent
9275011f0e
commit
9e499e11b2
@ -10,14 +10,21 @@ run_hook ()
|
|||||||
msg "done."
|
msg "done."
|
||||||
|
|
||||||
squashfound=0
|
squashfound=0
|
||||||
|
#TODO check for usb devices as well...
|
||||||
msg -n ":: Scanning for boot cdrom device..."
|
msg -n ":: Scanning for boot cdrom device..."
|
||||||
|
squashimg="/tmpfs/bootcd/archlive.sqfs"
|
||||||
|
|
||||||
|
/bin/modprobe -q isofs >/dev/null 2>&1
|
||||||
|
PS1="ramfs$ " /bin/sh -i
|
||||||
for cdrom in /dev/cd/*; do
|
for cdrom in /dev/cd/*; do
|
||||||
if mount -r -t iso9660 "${cdrom}" /tmpfs/bootcd >/dev/null 2>&1; then
|
if mount -r -t isofs "${cdrom}" /tmpfs/bootcd >/dev/null 2>&1; then
|
||||||
if [ -e /tmpfs/bootcd/archlive.sqfs ]; then
|
if [ -e "${squashimg}" ]; then
|
||||||
squashfound=1
|
squashfound=1
|
||||||
msg "${cdrom}"
|
msg "${cdrom}"
|
||||||
break
|
break
|
||||||
fi
|
fi
|
||||||
|
else
|
||||||
|
echo "Failed to mount ${cdrom}"
|
||||||
fi
|
fi
|
||||||
[ ${squashfound} -eq 0 ] && umount /tmpfs/bootcd >/dev/null 2>&1
|
[ ${squashfound} -eq 0 ] && umount /tmpfs/bootcd >/dev/null 2>&1
|
||||||
done
|
done
|
||||||
@ -27,15 +34,20 @@ run_hook ()
|
|||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [ "${copytoram}" == "y" ]; then
|
||||||
|
/bin/cat /tmpfs/bootcd/archlive.sqfs > /tmpfs/archlive.sqfs
|
||||||
|
squashimg="/tmpfs/archlive.sqfs"
|
||||||
|
fi
|
||||||
|
|
||||||
msg -n ":: Mounting squashfs image..."
|
msg -n ":: Mounting squashfs image..."
|
||||||
/bin/modprobe -q squashfs >/dev/null 2>&1
|
/bin/modprobe -q squashfs >/dev/null 2>&1
|
||||||
/bin/mkdir -p /tmpfs/squashfs_root
|
/bin/mkdir -p /tmpfs/squashfs_root
|
||||||
if ! /bin/losetup /dev/loop0 /tmpfs/bootcd/archlive.sqfs; then
|
if ! /bin/losetup /dev/loop0 "${squashimg}"; then
|
||||||
echo "ERROR: Cannot mount loop device /dev/loop0...aborting"
|
echo "ERROR: Cannot mount loop device /dev/loop0...aborting"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
/bin/mount -r -t squashfs /dev/loop0 /tmpfs/squashfs_root
|
/bin/mount -r -t squashfs /dev/loop0 /tmpfs/squashfs_root
|
||||||
#mount.full -r -t squashfs -o loop /tmpfs/bootcd/squashfs_image /tmpfs/squashfs_root
|
|
||||||
msg "done."
|
msg "done."
|
||||||
|
|
||||||
msg -n ":: Mounting root (union) filesystem..."
|
msg -n ":: Mounting root (union) filesystem..."
|
||||||
@ -52,5 +64,8 @@ run_hook ()
|
|||||||
[ "x${udevpid}" != "x" ] && /bin/kill -9 $udevpid 2>&1 >/dev/null
|
[ "x${udevpid}" != "x" ] && /bin/kill -9 $udevpid 2>&1 >/dev/null
|
||||||
#Yep, we're bailing out here. We don't need kinit.
|
#Yep, we're bailing out here. We don't need kinit.
|
||||||
msg ":: Passing control to Archlinux Initscripts...Please Wait"
|
msg ":: Passing control to Archlinux Initscripts...Please Wait"
|
||||||
|
/bin/umount /sys
|
||||||
|
/bin/umount /proc
|
||||||
|
/bin/umount /dev
|
||||||
exec /bin/run-init -c /dev/console /real_root /sbin/init ${CMDLINE}
|
exec /bin/run-init -c /dev/console /real_root /sbin/init ${CMDLINE}
|
||||||
}
|
}
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
# vim: set ft=sh:
|
# vim: set ft=sh:
|
||||||
install ()
|
install ()
|
||||||
{
|
{
|
||||||
MODULES="cdrom ide-cd ide-core ide-generic unionfs squashfs iso9660 $(all_modules '/kernel/fs' | grep -v "nls") "
|
MODULES="cdrom ide-cd ide-core ide-generic unionfs squashfs isofs $(all_modules '/kernel/fs' | grep -v "nls") "
|
||||||
BINARIES=""
|
BINARIES=""
|
||||||
FILES=""
|
FILES=""
|
||||||
add_binary /bin/mount /bin/mount.full
|
add_binary /bin/mount /bin/mount.full
|
||||||
add_dir /real_root
|
add_dir /real_root
|
||||||
add_dir /tmpfs
|
add_dir /tmpfs
|
||||||
SCRIPT="liveiso"
|
SCRIPT="archlive"
|
||||||
}
|
}
|
||||||
|
16
mkarchiso
16
mkarchiso
@ -108,7 +108,7 @@ _kversion ()
|
|||||||
_safepacman ()
|
_safepacman ()
|
||||||
{
|
{
|
||||||
FAKEROOTSAV=$FAKEROOTKEY; unset FAKEROOTKEY
|
FAKEROOTSAV=$FAKEROOTKEY; unset FAKEROOTKEY
|
||||||
if ! pacman -Sf --noconfirm -r "${instroot}" $* >/dev/null 2>&1; then
|
if ! pacman -Sf --noconfirm -r "${instroot}" $* 2>&1 | grep "\[#"; then
|
||||||
echo "pacman failed to install '$*', aborting..."
|
echo "pacman failed to install '$*', aborting..."
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
@ -118,12 +118,9 @@ safe_install_pkgfile ()
|
|||||||
{
|
{
|
||||||
if [ -e "${1}" ]; then
|
if [ -e "${1}" ]; then
|
||||||
toinstall=""
|
toinstall=""
|
||||||
echo " Installing packages:"
|
|
||||||
while read pkg; do
|
while read pkg; do
|
||||||
#skip packages listed in IGNOREPKGS
|
#skip packages listed in IGNOREPKGS
|
||||||
echo $ignorepkgs | grep "\<$name\>" >/dev/null 2>&1 && continue
|
echo $ignorepkgs | grep "\<$pkg\>" >/dev/null 2>&1 && continue
|
||||||
|
|
||||||
echo " ${pkg}"
|
|
||||||
toinstall="${toinstall} ${pkg}"
|
toinstall="${toinstall} ${pkg}"
|
||||||
done < ${1}
|
done < ${1}
|
||||||
_safepacman "${toinstall}"
|
_safepacman "${toinstall}"
|
||||||
@ -133,7 +130,7 @@ safe_install_pkgfile ()
|
|||||||
_pacman ()
|
_pacman ()
|
||||||
{
|
{
|
||||||
FAKEROOTSAV=$FAKEROOTKEY; unset FAKEROOTKEY
|
FAKEROOTSAV=$FAKEROOTKEY; unset FAKEROOTKEY
|
||||||
if ! fakechroot pacman -Sf --noconfirm -r "${instroot}" $* >/dev/null 2>&1; then
|
if ! fakechroot pacman -Sf --noconfirm -r "${instroot}" $* 2>&1 | grep "\[#"; then
|
||||||
echo "pacman failed to install '$*', aborting..."
|
echo "pacman failed to install '$*', aborting..."
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
@ -144,12 +141,8 @@ install_pkgfile ()
|
|||||||
{
|
{
|
||||||
if [ -e "${1}" ]; then
|
if [ -e "${1}" ]; then
|
||||||
toinstall=""
|
toinstall=""
|
||||||
echo " Installing packages:"
|
|
||||||
while read pkg; do
|
while read pkg; do
|
||||||
#skip packages listed in IGNOREPKGS
|
echo $ignorepkgs | grep "\<$pkg\>" >/dev/null 2>&1 && continue
|
||||||
echo $ignorepkgs | grep "\<$name\>" >/dev/null 2>&1 && continue
|
|
||||||
|
|
||||||
echo " ${pkg}"
|
|
||||||
toinstall="${toinstall} ${pkg}"
|
toinstall="${toinstall} ${pkg}"
|
||||||
done < ${1}
|
done < ${1}
|
||||||
_pacman "${toinstall}"
|
_pacman "${toinstall}"
|
||||||
@ -273,6 +266,7 @@ if [ "${SKIP_ISO}" = "n" ]; then
|
|||||||
echo "Creating ISO image..."
|
echo "Creating ISO image..."
|
||||||
mkisofs ${q} -r -l -b "boot/grub/stage2_eltorito" -uid 0 -gid 0 -no-emul-boot \
|
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>" \
|
-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 \
|
-p "prepared by $NAME" -A "Arch Linux Live/Rescue CD" -copyright /etc/copyright \
|
||||||
-o "${isoname}" "${isoroot}"
|
-o "${isoname}" "${isoroot}"
|
||||||
fi
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user