HomeSort by relevance Sort by last modified time
    Searched refs:rom (Results 1 - 25 of 55) sorted by null

1 2 3

  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-scripts/
rgn-over8.t 4 rom (rwx) : ORIGIN = 0, LENGTH = 2048
9 .text : { *(.text) } >rom AT>rom
10 .data : { *(.data) } >ram AT>rom
11 .bss : { *(.bss) } >ram AT>rom
rgn-at1.t 5 rom : ORIGIN = 0x20000, LENGTH = 0x200
9 .text : { *(.text) } >ram AT>rom
10 .data : { *(.data) } >ram /* default AT>rom */
rgn-at3.t 5 rom : ORIGIN = 0x20000, LENGTH = 0x200
9 .text : { *(.text) } >ram AT>rom
10 .data : AT (0x30000) { *(.data) } >ram /* NO default AT>rom */
11 .bss : { *(.bss) } >ram /* NO default AT>rom */
rgn-at2.t 5 rom : ORIGIN = 0x20000, LENGTH = 0x200
10 .text : { *(.text) } >ram AT>rom
11 .data : { *(.data) } >other /* No default AT>rom */
rgn-at4.t 5 rom : ORIGIN = 0x20000, LENGTH = 0x200
9 .text : { *(.text) } >ram AT>rom
  /external/syslinux/gpxe/src/util/
disrom.pl 24 use Option::ROM qw ( :all );
27 my $rom = new Option::ROM;
28 $rom->load ( $romfile );
30 die "Not an option ROM image\n"
31 unless $rom->{signature} == ROM_SIGNATURE;
33 my $romlength = ( $rom->{length} * 512 );
34 my $filelength = $rom->length;
35 die "ROM image truncated (is $filelength, should be $romlength)\n"
38 printf "ROM header:\n\n"
    [all...]
mergerom.pl 24 use Option::ROM qw ( :all );
39 my @roms = map { my $rom = new Option::ROM; $rom->load($_); $rom } @romfiles;
44 foreach my $rom ( @roms ) {
47 $baserom->{length} += $rom->{length};
50 merge_entry_points ( $baserom->{init}, $rom->{init}, $offset );
53 merge_entry_points ( $baserom->{bofm_header}, $rom->{bofm_header}, $offset );
57 my $rom_pci = $rom->pci_header
    [all...]
makerom.pl 8 use constant PCI_PTR_LOC => 0x18; # from beginning of ROM
10 use constant PNP_PTR_LOC => 0x1a; # from beginning of ROM
18 use constant UNDI_PTR_LOC => 0x16; # from beginning of ROM
32 print STDERR "BIOS extension ROM Image did not start with 0x55 0xAA\n"
36 print STDERR "$size is a strange size for a boot ROM\n"
93 # Point to device id string at end of ROM image
149 my ($rom, $romsize, $stubsize);
152 $ARGV[0] or die "Usage: $0 [-s romsize] [-i ident] [-p vendorid,deviceid] [-n] [-x] [-3] rom-file\n";
154 # Read in the whole ROM in one gulp
155 my $filesize = read(R, $rom, MAXROMSIZE+1)
    [all...]
modrom.pl 8 use constant PCI_PTR_LOC => 0x18; # from beginning of ROM
10 use constant PNP_PTR_LOC => 0x1a; # from beginning of ROM
18 use constant UNDI_PTR_LOC => 0x16; # from beginning of ROM
32 print STDERR "BIOS extension ROM Image did not start with 0x55 0xAA\n"
36 print STDERR "$size is a strange size for a boot ROM\n"
92 # Point to device id string at end of ROM image
147 my ($rom, $romsize);
150 $ARGV[0] or die "Usage: $0 [-s romsize] [-i ident] [-p vendorid,deviceid] [-x] [-3] rom-file\n";
152 # Read in the whole ROM in one gulp
153 my $filesize = read(R, $rom, MAXROMSIZE+1)
    [all...]
efirom.c 106 * Convert EFI image to ROM image
109 * @v rom ROM file
111 static void make_efi_rom ( FILE *pe, FILE *rom, struct options *opts ) {
113 EFI_PCI_EXPANSION_ROM_HEADER rom; member in struct:__anon33364
133 /* Determine ROM file size */
136 /* Allocate ROM buffer and read in PE file */
147 /* Construct ROM header */
148 headers->rom.Signature = PCI_EXPANSION_ROM_HEADER_SIGNATURE;
149 headers->rom.InitializationSize = ( rom_size / 512 )
    [all...]
parserom.pl 20 sub rom { subroutine
52 rom ( "pci", $image, $desc, $vendor, $device );
53 rom ( "pci", lc "${vendor}${device}", $desc, $vendor, $device );
59 rom ( "isa", $image, $desc );
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/Stitch/
IFWIStitch.bat 2 @REM Windows batch file to build BIOS ROM
86 :: if no rom specified by user, search in ./ for ROM files
89 for /f "tokens=*" %%i in ('dir /b *.rom') do set BIOS_Names=!BIOS_Names! %%i
91 echo NO .ROM files found !!!
173 echo Creating backup of original BIOS rom.
205 echo -- All specified ROM files Stitched. --
215 echo Usage: IFWIStitch.bat [flags] [/B BIOS.ROM] [/C Stitch_Config] [/S IFWI_Suffix]
218 echo However, this requires that the BIOS.ROM file name is formatted correctly.
220 echo /nG Do NOT update the GOP driver. (applies to all ROM files for this run)
    [all...]
  /external/syslinux/gpxe/src/util/Option/
ROM.pm 1 package Option::ROM;
21 Option::ROM - Option ROM manipulation
25 use Option::ROM;
27 # Load a ROM image
28 my $rom = new Option::ROM;
29 $rom->load ( "rtl8139.rom" );
32 $rom->pci_header->{device_id} = 0x1234
    [all...]
  /external/syslinux/com32/hdt/
hdt-dump-dmi.c 311 char rom[16]={0}; local
314 snprintf(rom,sizeof(rom),"%u %s",hardware->dmi.bios.rom_size, hardware->dmi.bios.rom_size_unit);
325 add_s("dmi.bios.rom_size",rom);
  /external/vboot_reference/utility/
dev_debug_vboot 304 if log flashrom -p host -r bios.rom ; then
305 log futility dump_fmap -x bios.rom
  /bionic/libc/kernel/uapi/linux/
firewire-cdev.h 172 __u64 rom; member in struct:fw_cdev_get_info
  /development/ndk/platforms/android-21/include/linux/
firewire-cdev.h 172 __u64 rom; member in struct:fw_cdev_get_info
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/
bldX64.bat 2 @REM Windows batch file to build BIOS ROM
178 del Vlv2TbltDevicePkg\RomImage\bios.rom
179 if not exist Build\%PLATFORM_PACKAGE%\%TARGET%_%TOOL_CHAIN_TAG%\ROM goto Gen8MImage
180 del /q /f Build\%PLATFORM_PACKAGE%\%TARGET%_%TOOL_CHAIN_TAG%\ROM\*
181 rd /Q Build\%PLATFORM_PACKAGE%\%TARGET%_%TOOL_CHAIN_TAG%\ROM
184 copy /b Build\%PLATFORM_PACKAGE%\%TARGET%_%TOOL_CHAIN_TAG%\FV\VlvX64.fd Vlv2TbltDevicePkg\RomImage\bios.rom
198 mkdir Build\%PLATFORM_PACKAGE%\%TARGET%_%TOOL_CHAIN_TAG%\ROM
199 move Vlv2TbltDevicePkg\RomImage\SPI_Image\* Build\%PLATFORM_PACKAGE%\%TARGET%_%TOOL_CHAIN_TAG%\ROM\ > NUL
208 @echo SPI Images location: Build\%PLATFORM_PACKAGE%\%TARGET%_%TOOL_CHAIN_TAG%\ROM
  /external/kernel-headers/original/uapi/linux/
firewire-cdev.h 463 * @rom_length: If @rom is non-zero, up to @rom_length bytes of Configuration
464 * ROM will be copied into that user space address. In either
466 * Configuration ROM.
467 * @rom: If non-zero, address of a buffer to be filled by a copy of the
468 * device's Configuration ROM
484 __u64 rom; member in struct:fw_cdev_get_info
609 * struct fw_cdev_add_descriptor - Add contents to the local node's config ROM
617 * node's Configuration ROM.
632 * change of the Configuration ROM to other nodes.
646 * struct fw_cdev_remove_descriptor - Remove contents from the Configuration ROM
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
firewire-cdev.h 264 * @rom_length: If @rom is non-zero, at most rom_length bytes of configuration
265 * ROM will be copied into that user space address. In either
267 * configuration ROM.
268 * @rom: If non-zero, address of a buffer to be filled by a copy of the
269 * device's configuration ROM
279 __u64 rom; member in struct:fw_cdev_get_info
376 * struct fw_cdev_add_descriptor - Add contents to the local node's config ROM
384 * node's configuration ROM.
410 * struct fw_cdev_remove_descriptor - Remove contents from the configuration ROM
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
firewire-cdev.h 453 * @rom_length: If @rom is non-zero, up to @rom_length bytes of Configuration
454 * ROM will be copied into that user space address. In either
456 * Configuration ROM.
457 * @rom: If non-zero, address of a buffer to be filled by a copy of the
458 * device's Configuration ROM
474 __u64 rom; member in struct:fw_cdev_get_info
599 * struct fw_cdev_add_descriptor - Add contents to the local node's config ROM
607 * node's Configuration ROM.
622 * change of the Configuration ROM to other nodes.
636 * struct fw_cdev_remove_descriptor - Remove contents from the Configuration ROM
    [all...]
  /prebuilts/ndk/r10/platforms/android-21/arch-arm/usr/include/linux/
firewire-cdev.h 172 __u64 rom; member in struct:fw_cdev_get_info
  /prebuilts/ndk/r10/platforms/android-21/arch-arm64/usr/include/linux/
firewire-cdev.h 172 __u64 rom; member in struct:fw_cdev_get_info
  /prebuilts/ndk/r10/platforms/android-21/arch-mips/usr/include/linux/
firewire-cdev.h 172 __u64 rom; member in struct:fw_cdev_get_info
  /prebuilts/ndk/r10/platforms/android-21/arch-mips64/usr/include/linux/
firewire-cdev.h 172 __u64 rom; member in struct:fw_cdev_get_info

Completed in 222 milliseconds

1 2 3