summaryrefslogtreecommitdiff
path: root/scripts/install-system.in
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/install-system.in')
-rwxr-xr-xscripts/install-system.in4
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/install-system.in b/scripts/install-system.in
index 90a142b7..fc5ad7c4 100755
--- a/scripts/install-system.in
+++ b/scripts/install-system.in
@@ -460,7 +460,9 @@ install_root_filesystem () {
output=$(cp -pR /boot/* $rootfsdir/boot/)
output+=$(cp /live/image/live/initrd*.img* $rootfsdir/boot/initrd.img)
status=$?
- if [ "$status" != 0 ]; then
+ output+=$(cp /live/image/live/initrd.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.\ncp /boot/initrd.img $rootfsdir/boot/\n$output" >> $INSTALL_LOG