| /u-boot/doc/ |
| A D | README.sata | 3 There are two ways to operate the hard disk 5 * Read/write raw blocks from/to SATA hard disk 8 1.0 How to read the SATA hard disk's information? 17 1.1 How to raw write the kernel, file system, dtb to a SATA hard disk? 19 Notes: Hard disk sectors are normally 512 bytes, so 34 1.2 How to raw read the kernel, file system, dtb from a SATA hard disk?
|
| /u-boot/scripts/ |
| A D | build-cb.sh | 12 qemu-img create -f raw disk.img 120M 13 mkfs.ext2 -F disk.img 15 sudo mount -o loop disk.img /mnt/rootfs
|
| A D | build-efi.sh | 115 -drive id=disk,file="${IMG}",if=none,format=raw \ 117 -device ide-hd,drive=disk,bus=ahci.0 ${extra}
|
| /u-boot/lib/efi_loader/ |
| A D | efi_disk.c | 400 struct efi_disk_obj **disk, in efi_disk_add_dev() argument 516 if (disk) in efi_disk_add_dev() 517 *disk = diskobj; in efi_disk_add_dev() 557 struct efi_disk_obj *disk; in efi_disk_create_raw() local 578 if (efi_link_dev(&disk->header, dev)) { in efi_disk_create_raw() 579 efi_free_pool(disk->dp); in efi_disk_create_raw() 580 efi_delete_handle(&disk->header); in efi_disk_create_raw() 609 struct efi_disk_obj *disk; in efi_disk_create_part() local 633 if (efi_link_dev(&disk->header, dev)) { in efi_disk_create_part() 634 efi_free_pool(disk->dp); in efi_disk_create_part() [all …]
|
| /u-boot/board/gateworks/gw_ventana/ |
| A D | gw_ventana.env | 13 disk=0 43 setenv fsload "${fs}load mmc ${disk}:${part}"; 44 mmc dev ${disk} && mmc rescan && 58 setenv fsload "${fs}load sata ${disk}:${part}"; 73 setenv fsload "${fs}load usb ${disk}:${part}"; 74 usb start && usb dev ${disk} &&
|
| /u-boot/doc/usage/cmd/ |
| A D | bootz.rst | 23 address of the initial RAM disk. Use '-' to boot a kernel with a device 24 tree but without an initial RAM disk. 27 size of the initial RAM disk. This parameter must be specified for raw
|
| A D | qfw.rst | 24 The *qfw load* command is used to load a kernel and an initial RAM disk. 65 initial RAM disk for QEMU: 72 Now the kernel and the initial RAM disk can be loaded to the U-Boot memory via
|
| A D | booti.rst | 23 address of the initial RAM disk. Use '-' to boot a kernel with a device 24 tree but without an initial RAM disk. 27 size of the initial RAM disk. This parameter must be specified for raw
|
| /u-boot/board/boundary/nitrogen6x/ |
| A D | 6x_bootscript_android.txt | 1 ${dtype} dev ${disk} 63 ${fs}load ${dtype} ${disk}:1 10800000 uImage && ${fs}load ${dtype} ${disk}:1 12800000 uramdisk.img …
|
| A D | 6x_bootscript_android_recovery.txt | 1 ${dtype} dev ${disk} 63 ${fs}load ${dtype} ${disk}:1 10800000 uImage && ${fs}load ${dtype} ${disk}:1 12800000 uramdisk.img …
|
| A D | 6x_upgrade.txt | 4 if ${fs}load ${dtype} ${disk}:1 12000000 u-boot.imx || ${fs}load ${dtype} ${disk}:1 12000000 u-boot…
|
| /u-boot/doc/device-tree-bindings/leds/ |
| A D | common.txt | 14 "ide-disk" - LED indicates disk activity
|
| /u-boot/fs/btrfs/ |
| A D | Makefile | 6 extent-io.o inode.o subvolume.o crypto/hash.o disk-io.o \
|
| /u-boot/doc/board/emulation/ |
| A D | qemu-arm.rst | 70 - To add a Serial ATA disk via an Intel ICH9 AHCI controller, pass e.g.:: 72 -drive if=none,file=disk.img,format=raw,id=mydisk \ 83 - To add an NVMe disk, pass e.g.:: 85 -drive if=none,file=disk.img,id=mydisk -device nvme,drive=mydisk,serial=foo
|
| /u-boot/doc/develop/ |
| A D | directories.rst | 47 * - /disk 48 - Code for disk drive partition handling
|
| A D | distro.rst | 24 regular storage mechanism (eMMC, SD card, USB Disk, SATA disk, etc.) with 59 U-Boot falls back to searching the first valid partition of a disk for boot 70 handled by U-Boot's "syslinux" (disk) or "pxe boot" (network). This is roughly 78 for /extlinux/extlinux.conf then /boot/extlinux/extlinux.conf on disk, or 258 kernel_addr_r, and ramdisk_addr_r, so that the RAM disk can vary in size 324 device or SD card) or type of boot device (e.g. USB disk). The parameters to 327 - Upper-case disk type (DHCP, HOST, IDE, MMC, NVME, PXE, SATA, SCSI, UBIFS, USB, 329 - Lower-case disk type (same options as above). 330 - ID of the specific disk (MMC only) or ignored for other types. 348 For disk-based booting, the list of directories within a partition that are
|
| /u-boot/disk/ |
| A D | Makefile | 10 obj-$(CONFIG_$(SPL_TPL_)PARTITIONS) += disk-uclass.o
|
| /u-boot/arch/arm/dts/ |
| A D | kirkwood-ns2lite.dts | 30 linux,default-trigger = "disk-activity";
|
| A D | meson-sm1-odroid-hc4.dts | 47 /* Powers the SATA Disk 0 regulator, which is enabled when a disk load is detected */ 60 /* Powers the SATA Disk 1 regulator, which is enabled when a disk load is detected */
|
| /u-boot/doc/arch/ |
| A D | x86.rst | 114 boot. For example our disk is SCSI device 0:: 138 This shows that your SCSI disk has three partitions. The really long hex 212 real root disk is accessed. 232 Here root= tells Linux the location of its root disk. The disk is specified 268 Initial RAM disk at linear address 0x04000000, size 19215259 bytes 311 You should also see your boot disk turn up:: 328 boot the first disk, you have that option. 402 # Create a 10G disk.img as the virtual hard disk 403 $ qemu-img create -f qcow2 disk.img 10G 408 # Boot a Windows XP OS installed on the virutal hard disk [all …]
|
| /u-boot/cmd/mvebu/ |
| A D | Kconfig | 59 Enable boot from SATA disk. 60 Allow usage of SATA disk as a target for "bubt" command
|
| /u-boot/board/technexion/pico-imx7d/ |
| A D | README.pico-imx7d_BL33 | 38 $ dd if=build/picopi/debug/bl2.bin.imx of=/dev/disk/by-id/usb-<your device> bs=1024 seek=1;sync 39 $ dd if=fip.bin of=/dev/disk/by-id/usb-<your device> bs=1024 seek=1;sync
|
| /u-boot/drivers/virtio/ |
| A D | Kconfig | 6 # VirtIO is a virtualization standard for network and disk device drivers 9 # get high performance network and disk operations, and gives most of the
|
| /u-boot/fs/fat/ |
| A D | Kconfig | 22 is the smallest amount of disk space that can be used to hold a
|
| /u-boot/doc/develop/uefi/ |
| A D | fwu_updates.rst | 14 boot. The UEFI capsule-on-disk update feature is used for performing 56 capsule-on-disk update functionality. The second group of configs 119 metadata partitions, the UEFI capsule-on-disk update functionality can 134 capsule-on-disk update.
|