/openbmc/openbmc/poky/meta/recipes-core/glibc/ldconfig-native-2.12.1/ |
H A D | ldconfig-handle-.dynstr-located-in-separate-segment.patch | 27 - Elf32_Addr loadaddr; 35 - loadaddr = -1; 44 - if (loadaddr == (Elf32_Addr) -1) 45 - loadaddr = read32(segment->p_vaddr, be) - read32(segment->p_offset, be); 55 - if (loadaddr == (Elf32_Addr) -1) 58 - loadaddr = 0; 105 - Elf64_Addr loadaddr; 113 - loadaddr = -1; 122 - if (loadaddr == (Elf64_Addr) -1) 133 - if (loadaddr == (Elf64_Addr) -1) [all …]
|
H A D | 32and64bit.patch | 24 - ElfW(Addr) loadaddr; 25 + Elf32_Addr loadaddr; 59 + loadaddr = -1; 77 + if (loadaddr == (Elf32_Addr) -1) 143 + if (loadaddr == (Elf32_Addr) -1) 146 + loadaddr = 0; 225 + Elf64_Addr loadaddr; 284 - if (loadaddr == (ElfW(Addr)) -1) 285 + if (loadaddr == (Elf64_Addr) -1) 288 loadaddr = 0; [all …]
|
H A D | endian-ness_handling.patch | 77 if (loadaddr == (Elf32_Addr) -1) 78 - loadaddr = segment->p_vaddr - segment->p_offset; 79 + loadaddr = read32(segment->p_vaddr, be) - read32(segment->p_offset, be); 155 - dynamic_strings = (char *) (file_contents + dyn_entry->d_un.d_val - loadaddr); 156 + dynamic_strings = (char *) (file_contents + read32(dyn_entry->d_un.d_val, be) - loadaddr); 223 if (loadaddr == (Elf64_Addr) -1) 224 - loadaddr = segment->p_vaddr - segment->p_offset; 225 + loadaddr = read64(segment->p_vaddr, be) - read64(segment->p_offset, be); 300 - dynamic_strings = (char *) (file_contents + dyn_entry->d_un.d_val - loadaddr); 301 + dynamic_strings = (char *) (file_contents + read64(dyn_entry->d_un.d_val, be) - loadaddr);
|
/openbmc/u-boot/drivers/remoteproc/ |
H A D | ti_power_proc.c | 22 phys_addr_t loadaddr; member 45 priv->loadaddr = fdtdec_get_addr(blob, node, "reg"); in ti_of_to_priv() 46 if (priv->loadaddr == FDT_ADDR_T_NONE) { in ti_of_to_priv() 79 uc_pdata->name, priv->loadaddr, priv->psc_module, ret); in ti_powerproc_probe() 113 uc_pdata->name, addr, size, priv->loadaddr); in ti_powerproc_load() 115 memcpy((void *)priv->loadaddr, (void *)addr, size); in ti_powerproc_load()
|
/openbmc/openbmc/meta-phosphor/dynamic-layers/aspeed-layer/recipes-bsp/u-boot/files/ |
H A D | 0005-config-ast-common-Fall-back-to-secondary-flash-on-fa.patch | 25 "loadaddr=" __stringify(CONFIG_LOADADDR) "\0" \ 27 …c_bootcmd=ubi part obmc-ubi; run do_rwreset; ubi read ${loadaddr} ${kernelname}; bootm ${loadaddr}… 28 …c_bootcmd=ubi part obmc-ubi; run do_rwreset; ubi read ${loadaddr} ${kernelname}; bootm ${loadaddr}…
|
H A D | 0004-config-ast-common-Add-conditional-factory-reset-comm.patch | 31 "loadaddr=" __stringify(CONFIG_LOADADDR) "\0" \ 33 - "obmc_bootcmd=ubi part obmc-ubi; ubi read ${loadaddr} ${kernelname}; bootm ${loadaddr} \0" \ 34 …c_bootcmd=ubi part obmc-ubi; run do_rwreset; ubi read ${loadaddr} ${kernelname}; bootm ${loadaddr}…
|
H A D | 0003-config-ast-common-Add-bootopts-to-support-ubi-and-mt.patch | 57 + "loadaddr=" __stringify(CONFIG_LOADADDR) "\0" \ 59 + "obmc_bootcmd=ubi part obmc-ubi; ubi read ${loadaddr} ${kernelname}; bootm ${loadaddr} \0" \
|
/openbmc/openbmc/meta-aspeed/recipes-bsp/u-boot/files/ |
H A D | u-boot-env-ast2600.txt | 7 …tpart} ${loadaddr} fitImage && bootm ${loadaddr}${bootmconf}; echo Error loading kernel FIT image … 10 loadaddr=0x83000000
|
/openbmc/u-boot/board/aspeed/ |
H A D | ast2600_openbmc_mmc.txt | 7 …tpart} ${loadaddr} fitImage && bootm ${loadaddr}${bootmconf}; echo Error loading kernel FIT image … 10 loadaddr=0x83000000
|
/openbmc/openbmc/meta-evb/meta-evb-arm/meta-evb-fvp-base/recipes-bsp/u-boot/files/ |
H A D | fvp.env | 4 loadaddr=0x90000000 18 …tpart} ${loadaddr} fitImage && bootm ${loadaddr}${bootmconf}; echo Error loading kernel FIT image …
|
/openbmc/u-boot/board/ti/omap5_uevm/ |
H A D | README | 20 U-Boot # tftp ${loadaddr} omap5uevm/MLO 21 U-Boot # mmc write ${loadaddr} 0 100 22 U-Boot # tftp ${loadaddr} omap5uevm/u-boot.img 23 U-Boot # mmc write ${loadaddr} 300 400
|
/openbmc/u-boot/board/ti/dra7xx/ |
H A D | README | 20 U-Boot # tftp ${loadaddr} dra7xx/MLO 21 U-Boot # mmc write ${loadaddr} 0 100 22 U-Boot # tftp ${loadaddr} dra7xx/u-boot.img 23 U-Boot # mmc write ${loadaddr} 300 400
|
/openbmc/linux/fs/adfs/ |
H A D | adfs.h | 15 static inline u16 adfs_filetype(u32 loadaddr) in adfs_filetype() argument 17 return (loadaddr & 0xfff00000) == 0xfff00000 ? in adfs_filetype() 18 (loadaddr >> 8) & 0xfff : ADFS_FILETYPE_NONE; in adfs_filetype() 36 __u32 loadaddr; /* RISC OS load address */ member 49 return (ADFS_I(inode)->loadaddr & 0xfff00000) == 0xfff00000; in adfs_inode_is_stamped() 117 __u32 loadaddr; /* load address */ member
|
H A D | inode.c | 100 switch (adfs_filetype(ADFS_I(inode)->loadaddr)) { in adfs_atts2mode() 183 high = ADFS_I(inode)->loadaddr & 0xFF; /* top 8 bits of timestamp */ in adfs_adfs2unix_time() 224 ADFS_I(inode)->loadaddr &= ~0xff; in adfs_unix2adfs_time() 225 ADFS_I(inode)->loadaddr |= (cs >> 32) & 0xff; in adfs_unix2adfs_time() 266 ADFS_I(inode)->loadaddr = obj->loadaddr; in adfs_iget() 363 obj.loadaddr = ADFS_I(inode)->loadaddr; in adfs_write_inode()
|
/openbmc/u-boot/board/work-microwave/work_92105/ |
H A D | README | 77 (load lpc32xx-full.bin at location $loadaddr) 78 nand write $loadaddr 0x00000000 $filesize 83 (load lpc32xx-spl.img or lpc32xx-boot-N.bin at location $loadaddr) 84 nand write $loadaddr 0x00000000 $filesize 85 nand write $loadaddr 0x00020000 $filesize 90 (load u-boot.img at location $loadaddr) 91 nand write $loadaddr 0x00040000 $filesize
|
/openbmc/u-boot/board/freescale/c29xpcie/ |
H A D | README | 64 => tftp $loadaddr $uboot 67 => cp.b $loadaddr eff40000 $filesize 75 => tftp $loadaddr $uboot 78 => cp.b $loadaddr e9f40000 $filesize 96 => tftp $loadaddr $uboot-spi 98 => sf write $loadaddr 0 $filesize
|
/openbmc/u-boot/board/freescale/mpc837xerdb/ |
H A D | README | 75 loadb $loadaddr 85 tftp $loadaddr u-boot.bin 89 tftp $loadaddr u-boot.bin 92 cp.b $loadaddr fe000000 $filesize
|
/openbmc/u-boot/test/fs/ |
H A D | fat-noncontig-test.sh | 62 loadaddr=1000 136 load host 0:0 ${loadaddr} ${testfn} 137 crc32 ${loadaddr} \$filesize ${crcaddr}
|
/openbmc/u-boot/board/logicpd/omap3som/ |
H A D | README | 25 U-Boot # fatload mmc 0 ${loadaddr} uImage 30 U-Boot # spl export fdt ${loadaddr} - ${fdtaddr} 50 U-Boot # nand read ${loadaddr} kernel 54 U-Boot # spl export fdt ${loadaddr} - ${fdtaddr}
|
/openbmc/u-boot/board/freescale/mpc8323erdb/ |
H A D | README | 32 tftpboot $loadaddr $uboot 42 tftp $loadaddr u-boot.bin 45 cp.b $loadaddr fe000000 $filesize
|
/openbmc/u-boot/board/freescale/p1010rdb/ |
H A D | README.P1010RDB-PA | 106 => tftp $loadaddr $uboot 109 => cp.b $loadaddr eff40000 $filesize 117 => tftp $loadaddr $uboot 120 => cp.b $loadaddr eef40000 $filesize 142 => tftp $loadaddr $uboot-nand 144 => nand write $loadaddr 0 $filesize 161 => tftp $loadaddr $uboot-spi 163 => sf write $loadaddr 0 $filesize
|
/openbmc/u-boot/board/k+p/bootscripts/ |
H A D | tpcboot.cmd | 34 bootm '${loadaddr}${itbcfg}';" 43 if load ${devtype} ${devnum}:${distro_bootpart} ${loadaddr} \ 55 setenv download_kernel "dhcp ${loadaddr} ${kernel_file}"
|
/openbmc/qemu/hw/microblaze/ |
H A D | boot.c | 160 hwaddr uentry, loadaddr = LOAD_UIMAGE_LOADADDR_INVALID; in microblaze_load_kernel() local 162 kernel_size = load_uimage(kernel_filename, &uentry, &loadaddr, 0, in microblaze_load_kernel() 165 high = (loadaddr + kernel_size + 3) & ~3; in microblaze_load_kernel()
|
/openbmc/qemu/pc-bios/s390-ccw/ |
H A D | netmain.c | 397 void *loadaddr = (void *)0x2000; /* Load right after the low-core */ in net_try_direct_tftp_load() local 399 rc = tftp_load(fn_ip, loadaddr, KERNEL_MAX_SIZE - (long)loadaddr); in net_try_direct_tftp_load() 409 memcpy(cfgbuf, loadaddr, rc); in net_try_direct_tftp_load() 436 memmove(KERNEL_ADDR, loadaddr, rc); in net_try_direct_tftp_load()
|
/openbmc/u-boot/board/freescale/mx6sabreauto/ |
H A D | README | 64 # load mmc 0:1 ${loadaddr} uImage 68 # mmc write ${loadaddr} 0x1000 0x4000 76 # spl export fdt ${loadaddr} - ${fdt_addr}
|