~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/usr/initramfs_data.S

Version: ~ [ linux-6.11-rc3 ] ~ [ linux-6.10.4 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.45 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.104 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.164 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.223 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.281 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.319 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 /* SPDX-License-Identifier: GPL-2.0 */
  2 /*
  3   initramfs_data includes the compressed binary that is the
  4   filesystem used for early user space.
  5   Note: Older versions of "as" (prior to binutils 2.11.90.0.23
  6   released on 2001-07-14) dit not support .incbin.
  7   If you are forced to use older binutils than that then the
  8   following trick can be applied to create the resulting binary:
  9 
 10 
 11   ld -m elf_i386  --format binary --oformat elf32-i386 -r \
 12   -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
 14 
 15   For including the .init.ramfs sections, see include/asm-generic/vmlinux.lds.
 16 
 17   The above example is for i386 - the parameters vary from architectures.
 18   Eventually look up LDFLAGS_BLOB in an older version of the
 19   arch/$(ARCH)/Makefile to see the flags used before .incbin was introduced.
 20 
 21   Using .incbin has the advantage over ld that the correct flags are set
 22   in the ELF header, as required by certain architectures.
 23 */
 24 
 25 .section .init.ramfs,"a"
 26 __irf_start:
 27 .incbin "usr/initramfs_inc_data"
 28 __irf_end:
 29 .section .init.ramfs.info,"a"
 30 .globl __initramfs_size
 31 __initramfs_size:
 32 #ifdef CONFIG_64BIT
 33         .quad __irf_end - __irf_start
 34 #else
 35         .long __irf_end - __irf_start
 36 #endif

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php