set RAMDISK variable

This commit is contained in:
Laurent Vivier 2005-05-10 14:23:36 +00:00
parent c0ae22c56f
commit 926236d81d

View File

@ -55,6 +55,7 @@ PPC_OBJCOPY=$(PPC_CROSS_COMPILE)objcopy
# Kernel architecture # Kernel architecture
RAMDISK=ramdisk.gz
KERNELPATH=vmlinux KERNELPATH=vmlinux
KERNEL=$(shell ls $(KERNELPATH) 2> /dev/null) KERNEL=$(shell ls $(KERNELPATH) 2> /dev/null)
@ -95,10 +96,10 @@ endif
mv floppy.bin.X floppy.bin mv floppy.bin.X floppy.bin
floppy_ramdisk.bin: libemile tools first/first_floppy vmlinuz \ floppy_ramdisk.bin: libemile tools first/first_floppy vmlinuz \
second/$(KARCH)-second_floppy ramdisk.gz second/$(KARCH)-second_floppy $(RAMDISK)
tools/emile-install -f first/first_floppy \ tools/emile-install -f first/first_floppy \
-s second/$(KARCH)-second_floppy \ -s second/$(KARCH)-second_floppy \
-k vmlinuz -r ramdisk.gz floppy_ramdisk.bin.X -k vmlinuz -r $(RAMDISK) floppy_ramdisk.bin.X
ifdef CONSOLE ifdef CONSOLE
tools/emile-set-output floppy_ramdisk.bin.X --printer --modem tools/emile-set-output floppy_ramdisk.bin.X --printer --modem
endif endif