'fixed git calls in hooks, changed 64MB RAM message again to not use >= anymore'

This commit is contained in:
Tobias Powalowski 2007-11-20 12:27:09 +01:00
parent 4269d82b0c
commit 4a402037ad
3 changed files with 6 additions and 6 deletions

View file

@ -1,9 +1,9 @@
Available boot options (no input will boot the install/rescue system):
- 'arch <any_other_boot_option>' to boot the install/rescue system.
- 'arch root=/dev/??? <any_other_boot_option>' to boot into an existing system.
- 'lowmem <any_other_boot_option>' to boot the >=64MB RAM install system.
- 'lowmem <any_other_boot_option>' to boot the 64MB RAM install system.
- 'lowmem root=/dev/??? <any_other_boot_option>' to boot into an existing
>=64MB RAM system.
64MB RAM system.
- If you have trouble with IDE drives, use the "ide-legacy" boot option.
- If your system hangs during the boot process, any combinations of the
boot options noapic acpi=off pci=routeirq nosmp may be useful.

View file

@ -33,7 +33,7 @@ install ()
# fix km script
KM=$(mktemp /tmp/km.XXXX)
if ! [ "${LOCALSETUP}" = "yes" ]; then
cp -f ${GIT_INSTALLER_TREE}/arch/scripts/km ${KM}
cp -f /etc/archboot/scripts/km ${KM}
else
cp -f ${KMSCRIPT} ${KM}
fi
@ -59,7 +59,7 @@ install ()
fi
DOCS=$(mktemp /tmp/docs.XXXX)
if ! [ "${LOCALSETUP}" = "yes" ]; then
cp -f ${GIT_INSTALLER_TREE}/arch-install-guide.txt ${DOCS}
cp -f ${GIT_INSTALLER_TREE}/installer/arch-install-guide.txt ${DOCS}
else
cp -f ${DOCUMENTATION} ${DOCS}
fi
@ -67,7 +67,7 @@ install ()
add_file "${DOCS}.gz" "/arch/archdoc.txt.gz"
add_dir "/src"
if ! [ "${LOCALSETUP}" = "yes" ]; then
! [ "${TEMPDIR}" = "" ] && cp ${GIT_INSTALLER_TREE}/arch-install-guide.txt ${TEMPDIR}/arch/archdoc.txt
! [ "${TEMPDIR}" = "" ] && cp ${GIT_INSTALLER_TREE}/installer/arch-install-guide.txt ${TEMPDIR}/arch/archdoc.txt
else
! [ "${TEMPDIR}" = "" ] && cp -f ${DOCUMENTATION} ${TEMPDIR}/arch/archdoc.txt
fi

View file

@ -30,7 +30,7 @@ install ()
# always needed for every install
cd ${GIT_INSTALLER_TREE}
if ! [ "${LOCALSETUP}" = "yes" ]; then
git-cone ${GIT_INSTALL}
git-clone ${GIT_INSTALLER}
fi
mkdir -p ${TEMPDIR}/arch
add_dir "/src"