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 /Makefile | |
parent | ac30b4c6f5f2de8dbe4f72e58314d5042de9f719 (diff) | |
download | drakx-12f60f7718cd07ff5fa550da97b14c9a84f259df.tar drakx-12f60f7718cd07ff5fa550da97b14c9a84f259df.tar.gz drakx-12f60f7718cd07ff5fa550da97b14c9a84f259df.tar.bz2 drakx-12f60f7718cd07ff5fa550da97b14c9a84f259df.tar.xz drakx-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 'Makefile')
-rw-r--r-- | Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -9,10 +9,17 @@ ifeq (sparc,$(ARCH)) BOOT_IMG = live.img tftp.img tftprd.img live64.img tftp64.img tftprd64.img RELEASE_BOOT_IMG += hd64.img cdrom64.img network64.img endif +ifeq (ppc,$(ARCH)) +BOOT_IMG = +RELEASE_BOOT_IMG = all.img +endif BOOT_IMG += $(RELEASE_BOOT_IMG) BOOT_RDZ = $(BOOT_IMG:%.img=%.rdz) BINS = mdk-stage1/init mdk-stage1/stage1-full mdk-stage1/stage1-cdrom mdk-stage1/stage1-network +ifeq (ppc,$(ARCH)) +BINS = mdk-stage1/init mdk-stage1/stage1-full +endif DIRS = tools mdk-stage1 perl-install ROOTDEST = /export @@ -25,7 +32,9 @@ UPLOAD_SPARC_DEST = /mnt/BIG/distrib/sparc install: build autoboot rescue for i in images misc Mandrake Mandrake/base; do install -d $(ROOTDEST)/$$i ; done +ifneq (ppc,$(ARCH)) cp -f $(RELEASE_BOOT_IMG) $(ROOTDEST)/images +endif ifeq (alpha,$(ARCH)) cp -f $(BOOT_RDZ) $(ROOTDEST)/boot cp -f vmlinux.gz $(ROOTDEST)/boot/instboot.gz |