HomeSort by relevance Sort by last modified time
    Searched defs:initrd_start (Results 1 - 8 of 8) sorted by null

  /external/u-boot/arch/nios2/lib/
bootm.c 15 ulong initrd_start = images->rd_start; local
42 debug("initrd=0x%lx-0x%lx\n", (ulong)initrd_start, (ulong)initrd_end);
52 kernel(NIOS_MAGIC, initrd_start, initrd_end, commandline);
  /external/u-boot/arch/xtensa/lib/
bootm.c 137 ulong initrd_start, initrd_end; local
146 initrd_start = images->rd_start;
149 initrd_start = 0;
160 if (initrd_start)
161 params = setup_ramdisk_tag(params, initrd_start, initrd_end);
  /external/u-boot/arch/powerpc/lib/
bootm.c 91 * r4: initrd_start or 0 if no initrd
100 ulong initrd_start = images->initrd_start; local
106 (*kernel) (kbd, initrd_start, initrd_end,
  /external/u-boot/board/ti/ks2_evm/
board.c 198 u64 initrd_start, initrd_end; local
207 initrd_start = __be32_to_cpu(*prop1);
208 initrd_start -= CONFIG_SYS_SDRAM_BASE;
209 initrd_start += CONFIG_SYS_LPAE_SDRAM_BASE;
210 initrd_start = __cpu_to_be64(initrd_start);
228 &initrd_start,
229 sizeof(initrd_start));
  /external/u-boot/cmd/
fdt.c 603 unsigned long initrd_start = 0, initrd_end = 0; local
609 initrd_start = simple_strtoul(argv[2], NULL, 16);
614 fdt_initrd(working_fdt, initrd_start, initrd_end);
  /external/u-boot/common/
image-fdt.c 467 ulong *initrd_start = &images->initrd_start; local
513 if (*initrd_start && *initrd_end) {
521 fdt_initrd(blob, *initrd_start, *initrd_end);
  /external/u-boot/arch/arm/include/asm/
setup.h 58 unsigned long initrd_start; /* 64 */ member in struct:param_struct::__anon46781::__anon46782
  /external/u-boot/include/
image.h 377 ulong initrd_start; member in struct:bootm_headers
700 ulong *initrd_start, ulong *initrd_end);
    [all...]

Completed in 262 milliseconds