From: James S. <jsi...@us...> - 2001-10-05 21:04:48
|
Update of /cvsroot/linux-mips/linux/arch/mips/ramdisk In directory usw-pr-cvs1:/tmp/cvs-serv7029/ramdisk Added Files: Makefile ld.script.in Log Message: Added generic ramdisk support based on Pete's work. --- NEW FILE: Makefile --- # # Makefile for a ramdisk image # # Note! Dependencies are done automagically by 'make dep', which also # removes any old dependencies. DON'T put your own dependencies here # unless it's something special (ie not a .c file). # ramdisk.o: ramdisk.gz ld.script $(LD) -T ld.script -b binary -o $@ ramdisk.gz include $(TOPDIR)/Rules.make --- NEW FILE: ld.script.in --- OUTPUT_ARCH(mips) SECTIONS { .initrd : { *(.data) } } |