diff options
author | An-Cheng Huang <ancheng@vyatta.com> | 2009-04-09 13:48:52 -0700 |
---|---|---|
committer | An-Cheng Huang <ancheng@vyatta.com> | 2009-04-09 13:48:52 -0700 |
commit | a51df7e17324d080a743e33504e379fbb7dbd580 (patch) | |
tree | ad80b2c0c86fd4840ee5f88c8e6d2e357a673467 /scripts/install-system | |
parent | cb73cac112b425099c56d7bfaf81ef00efb5a913 (diff) | |
download | vyatta-cfg-quagga-a51df7e17324d080a743e33504e379fbb7dbd580.tar.gz vyatta-cfg-quagga-a51df7e17324d080a743e33504e379fbb7dbd580.zip |
fix xen kernel handling for union install
Diffstat (limited to 'scripts/install-system')
-rwxr-xr-x | scripts/install-system | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/scripts/install-system b/scripts/install-system index 17d847d7..2e821397 100755 --- a/scripts/install-system +++ b/scripts/install-system @@ -833,8 +833,7 @@ install_root_filesystem () { echo Copying squashfs image... cp /live/image/live/filesystem.squashfs $rootfsdir/boot/$version/$version.squashfs echo Copying kernel and initrd images... - cp -ar /boot/initrd.img-* $rootfsdir/boot/$version/ - cp -ar /boot/vmlinuz-* $rootfsdir/boot/$version/ + cp -a /boot/* $rootfsdir/boot/$version/ else echo Copying image files... cp -ar /live/image/boot/$version $rootfsdir/boot/ |