From: David Mosberger Date: Thu, 10 Jul 2003 03:39:43 +0000 (-0700) Subject: [PATCH] Use ".incbin" for initramfs image build X-Git-Url: http://git.alex.org.uk [PATCH] Use ".incbin" for initramfs image build This makes initramfs use ".incbin" to include a binary blob into the object file, instead of using LDFLAGS_BLOB, which isn't supported on all architectures. This will require reasonably modern binutils, but is portable. This is the last thing that keeps the standard tree from building directly for ia64. --- diff --git a/usr/Makefile b/usr/Makefile index 58a915e..295f32b 100644 --- a/usr/Makefile +++ b/usr/Makefile @@ -5,11 +5,9 @@ host-progs := gen_init_cpio 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, diff --git a/usr/initramfs_data.scr b/usr/initramfs_data.scr deleted file mode 100644 index bf6d172..0000000 --- a/usr/initramfs_data.scr +++ /dev/null @@ -1,4 +0,0 @@ -SECTIONS -{ - .init.ramfs : { *(.data) } -}