summaryrefslogtreecommitdiff
path: root/scripts/install-system.in
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/install-system.in')
-rwxr-xr-xscripts/install-system.in6
1 files changed, 2 insertions, 4 deletions
diff --git a/scripts/install-system.in b/scripts/install-system.in
index fc5ad7c4..4c31b2ad 100755
--- a/scripts/install-system.in
+++ b/scripts/install-system.in
@@ -458,13 +458,11 @@ install_root_filesystem () {
# make the dir for the boot files and copy em' over
mkdir -p $rootfsdir/boot
output=$(cp -pR /boot/* $rootfsdir/boot/)
- output+=$(cp /live/image/live/initrd*.img* $rootfsdir/boot/initrd.img)
status=$?
- output+=$(cp /live/image/live/initrd.img-* $rootfsdir/boot/initrd.img)
+ output+=$(cp /live/image/live/initrd1.img $rootfsdir/boot/initrd.img)
status=$status$?
if [ "$status" -ne 0 ]; then
- echo -e "Error trying to copy the bootfiles.\nPlease see install log for more details.\nExiting.
-.."
+ echo -e "Error trying to copy the bootfiles.\nPlease see install log for more details.\nExiting..."
echo -e "Error trying to copy the bootfiles.\ncp /boot/initrd.img $rootfsdir/boot/\n$output" >> $INSTALL_LOG
exit 1
fi