u-boot/doc
Tom Rini f1895bc1e7 Merge patch series "Clarify DM_FLAG_PROBE_AFTER_BIND behaviour"
Caleb Connolly <caleb.connolly@linaro.org> says:

In Simon's series reworking autoprobe, a discussion came up about
DM_FLAG_PROBE_AFTER_BIND, specifically that it wasn't very clear where
this flag should be used.

This series implements my suggestions made there to clarify the use of
this flag, and fixup the two driver which erroneously apply it to their
driver struct (this does nothing).

Link: https://lore.kernel.org/u-boot/20241120153642.861633-1-sjg@chromium.org/
Link: https://lore.kernel.org/r/20250117-clarify-probe-after-bind-v1-0-273f046ce5dd@linaro.org
2025-03-30 09:11:07 -06:00
..
android treewide: bcb: move ab_select command to bcb subcommands 2024-10-24 09:45:55 +02:00
api doc: include file-system API into HTML docs 2024-10-30 21:44:38 +01:00
arch sandbox: remap memory load addresses 2025-03-08 16:27:22 +02:00
board Merge branch 'staging' of https://source.denx.de/u-boot/custodians/u-boot-tegra into next 2025-03-26 14:07:37 -06:00
build doc: Expand what we say about building the docker container a bit 2024-12-21 12:27:46 -06:00
chromium
develop Merge patch series "Clarify DM_FLAG_PROBE_AFTER_BIND behaviour" 2025-03-30 09:11:07 -06:00
device-tree-bindings Merge branch 'nand-next' of https://source.denx.de/u-boot/custodians/u-boot-nand-flash into next 2025-03-17 10:18:18 -06:00
imx imx: hab: fix srktool -c usage by removing spaces 2024-12-16 14:35:58 -03:00
learn
media
mvebu
sphinx doc: update Python requirements 2024-10-30 21:44:38 +01:00
sphinx-static
SPI
SPL
usage doc: update meminfo with arch specific information 2025-03-14 13:30:12 +02:00
.gitignore
bounces
conf.py doc: conf.py: correct title and author of generated pdf 2024-11-09 09:56:46 +01:00
dumpimage.1
feature-removal-schedule.txt
genindex.rst
git-mailrc .mailmap: update e-mail address for Eugen Hristev 2024-10-16 15:33:23 +03:00
I2C_Edge_Conditions i2c: Drop reference to SYS_I2C_INIT_BOARD 2024-08-13 06:14:36 +02:00
index.rst
kwboot.1
Makefile
mkeficapsule.1 Prepare v2024.10-rc5 2024-09-16 14:48:13 -06:00
mkfwumdata.1 tools: mkfwumdata: add logic to append vendor data to the FWU metadata 2024-05-24 13:40:04 -06:00
mkimage.1
README.arm-caches
README.arm-relocation
README.armada-secureboot
README.asn1
README.atmel_mci
README.atmel_pmecc
README.autoboot
README.bcmns3
README.boston
README.cfi
README.commands.itest
README.commands.spl
README.console
README.davinci
README.davinci.nand_spl
README.dfutftp
README.displaying-bmps
README.dns
README.enetaddr
README.esbc_validate
README.ext4
README.fec_mxc
README.fsl-ddr
README.fsl-esdhc
README.fsl-hwconfig
README.fsl-trustzone-components
README.fsl_iim
README.fuse
README.generic_usb_ohci
README.gpio
README.gpt
README.Heterogeneous-SoCs
README.hwconfig
README.i2c
README.iomux
README.JFFS2_NAND
README.kwbimage
README.LED
README.link-local
README.malta
README.marvell
README.mediatek
README.memory-test
README.mpc83xx.ddrecc
README.mpc83xxads
README.mpc85xx
README.mpc85xx-sd-spi-boot
README.mpc85xx-spin-table
README.mpc85xxcds
README.multi-dtb-fit
README.mxc_ocotp
README.nand
README.odroid
README.OFT
README.omap-ulpi-viewport
README.omap3
README.pblimage
README.pcap
README.POST
README.power-framework
README.pxe boot: pxe_utils: Add fallback support 2024-10-15 10:24:27 -06:00
README.ramboot-ppc85xx
README.rockchip Update directories for new name of TF-A directories 2024-10-04 09:00:47 -06:00
README.rockusb
README.s5p4418
README.s5pc1xx
README.sata
README.sched
README.scrapyard
README.serial_dt_baud
README.serial_multi
README.silent
README.SNTP
README.socfpga
README.splashprepare
README.srio-pcie-boot-corenet
README.standalone
README.t1040-l2switch
README.tee
README.ubi
README.ubispl
README.ublimage
README.udp
README.unaligned-memory-access.txt
README.uniphier Update the ARM trusted firmware git URL 2024-10-03 09:08:29 -06:00
README.update
README.usb
README.vf610
README.video
README.VLAN
README.VSC3316-3308
README.watchdog
README.zfs

This patch series adds support for ZFS listing and load to u-boot.

To Enable zfs ls and load commands, modify the board specific config file with
#define CONFIG_CMD_ZFS

Steps to test:

1. After applying the patch, zfs specific commands can be seen
   in the boot loader prompt using
	UBOOT #help

	zfsload- load binary file from a ZFS file system
	zfsls  - list files in a directory (default /)

2. To list the files in zfs pool, device or partition, execute
	zfsls <interface> <dev[:part]> [POOL/@/dir/file]
	For example:
	UBOOT #zfsls mmc 0:5 /rpool/@/usr/bin/

3. To read and load a file from an ZFS formatted partition to RAM, execute
	zfsload <interface> <dev[:part]> [addr] [filename] [bytes]
	For example:
	UBOOT #zfsload mmc 2:2 0x30007fc0 /rpool/@/boot/uImage

References :
	-- ZFS GRUB sources from Solaris GRUB-0.97
	-- GRUB Bazaar repository

Jorgen Lundman <lundman at lundman.net> 2012.