initramfs_data.S 1.2 KB
Newer Older
1
/* SPDX-License-Identifier: GPL-2.0 */
L
Linus Torvalds 已提交
2 3 4 5 6 7 8 9 10 11 12
/*
  initramfs_data includes the compressed binary that is the
  filesystem used for early user space.
  Note: Older versions of "as" (prior to binutils 2.11.90.0.23
  released on 2001-07-14) dit not support .incbin.
  If you are forced to use older binutils than that then the
  following trick can be applied to create the resulting binary:


  ld -m elf_i386  --format binary --oformat elf32-i386 -r \
  -T initramfs_data.scr initramfs_data.cpio.gz -o initramfs_data.o
13
   ld -m elf_i386  -r -o built-in.a initramfs_data.o
L
Linus Torvalds 已提交
14

15
  For including the .init.ramfs sections, see include/asm-generic/vmlinux.lds.
L
Linus Torvalds 已提交
16 17 18 19 20 21 22 23 24

  The above example is for i386 - the parameters vary from architectures.
  Eventually look up LDFLAGS_BLOB in an older version of the
  arch/$(ARCH)/Makefile to see the flags used before .incbin was introduced.

  Using .incbin has the advantage over ld that the correct flags are set
  in the ELF header, as required by certain architectures.
*/

25
.section .init.ramfs,"a"
26
__irf_start:
27
.incbin "usr/initramfs_inc_data"
28 29
__irf_end:
.section .init.ramfs.info,"a"
30 31
.globl __initramfs_size
__initramfs_size:
32
#ifdef CONFIG_64BIT
33
	.quad __irf_end - __irf_start
34 35
#else
	.long __irf_end - __irf_start
36
#endif