From: James S. <jsi...@us...> - 2001-10-05 21:04:48
|
Update of /cvsroot/linux-mips/linux/arch/mips In directory usw-pr-cvs1:/tmp/cvs-serv7029 Modified Files: Makefile Log Message: Added generic ramdisk support based on Pete's work. Index: Makefile =================================================================== RCS file: /cvsroot/linux-mips/linux/arch/mips/Makefile,v retrieving revision 1.18 retrieving revision 1.19 diff -u -d -r1.18 -r1.19 --- Makefile 2001/09/29 00:42:25 1.18 +++ Makefile 2001/10/05 21:04:45 1.19 @@ -103,6 +103,16 @@ SUBDIRS +=arch/mips/math-emu # +# ramdisk/initrd support +# You need a compressed ramdisk image, named ramdisk.gz in +# arch/mips/ramdisk +# +ifdef CONFIG_BLK_DEV_INITRD +CORE_FILES += arch/mips/ramdisk/ramdisk.o +SUBDIRS += arch/mips/ramdisk +endif + +# # Board-dependent options and extra files # ifdef CONFIG_ALGOR_P4032 |