diff options
author | Stew Benedict <stewb@mandriva.org> | 2001-03-23 15:58:57 +0000 |
---|---|---|
committer | Stew Benedict <stewb@mandriva.org> | 2001-03-23 15:58:57 +0000 |
commit | 12f60f7718cd07ff5fa550da97b14c9a84f259df (patch) | |
tree | ecfc52e57b25a945a0f8c657de22092a4ec2fd93 /update_kernel | |
parent | ac30b4c6f5f2de8dbe4f72e58314d5042de9f719 (diff) | |
download | drakx-backup-do-not-use-12f60f7718cd07ff5fa550da97b14c9a84f259df.tar drakx-backup-do-not-use-12f60f7718cd07ff5fa550da97b14c9a84f259df.tar.gz drakx-backup-do-not-use-12f60f7718cd07ff5fa550da97b14c9a84f259df.tar.bz2 drakx-backup-do-not-use-12f60f7718cd07ff5fa550da97b14c9a84f259df.tar.xz drakx-backup-do-not-use-12f60f7718cd07ff5fa550da97b14c9a84f259df.zip |
mods to create/move image, to /export for PPC, use vmlinux for PPC
prepend of_dev to initrd stanza in yaboot.conf
add 1-button mouse for PPC
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 |