diff options
Diffstat (limited to 'update_kernel')
-rwxr-xr-x | update_kernel | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/update_kernel b/update_kernel index 636efcabd..09d4cacc9 100755 --- a/update_kernel +++ b/update_kernel @@ -60,7 +60,11 @@ if [ "$ARCH" == "i386" ]; then rm -rf install_pcmcia_modules ; install -d install_pcmcia_modules else - cp -f "$KERNEL_BOOT_PATH"/boot/vmlinux.gz . + if [ "$ARCH" == "ppc" ]; then + cp -f "$KERNEL_BOOT_PATH"/boot/vmlinux . + else + cp -f "$KERNEL_BOOT_PATH"/boot/vmlinux.gz . + fi fi cp -f $KERNEL_BOOT_PATH/boot/System.map* System.map |