| Kernel v2.5.75 /usr/Makefile |
|---|
 2.5.75
 usr
 Makefile
diff -Nru a/usr/Makefile b/usr/Makefile
--- a/usr/Makefile Thu Jul 10 13:16:27 2003
+++ b/usr/Makefile Thu Jul 10 13:16:27 2003
@@ -5,11 +5,9 @@
clean-files := initramfs_data.cpio.gz
-LDFLAGS_initramfs_data.o := $(LDFLAGS_BLOB) -r -T
-
-$(obj)/initramfs_data.o: $(src)/initramfs_data.scr \
- $(obj)/initramfs_data.cpio.gz FORCE
- $(call if_changed,ld)
+$(src)/initramfs_data.S: $(obj)/initramfs_data.cpio.gz
+ echo " .section .init.ramfs,\"a\"" > $(src)/initramfs_data.S
+ echo ".incbin \"usr/initramfs_data.cpio.gz\"" >> $(src)/initramfs_data.S
# initramfs-y are the programs which will be copied into the CPIO
# archive. Currently, the filenames are hardcoded in gen_init_cpio,
|