u-boot/doc
Tom Rini 3d8be1f5ec Prepare v2025.05-rc5
Signed-off-by: Tom Rini <trini@konsulko.com>
2025-03-24 20:00:24 -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 Merge patch series "Fix various bugs" 2024-09-18 13:07:19 -06:00
board board: acer: picasso: add Acer Iconia Tab A500 support 2025-02-16 19:11:43 +02:00
build doc: Expand what we say about building the docker container a bit 2024-12-21 12:27:46 -06:00
chromium doc: Replace examples of MD5 and SHA1 with SHA256 2023-12-17 13:06:48 +01:00
develop Prepare v2025.05-rc5 2025-03-24 20:00:24 -06:00
device-tree-bindings doc: remove redundant leds bindings 2025-02-07 10:53:39 -06:00
imx imx: hab: fix srktool -c usage by removing spaces 2024-12-16 14:35:58 -03:00
learn doc: Add a short intro video 2023-10-12 08:32:27 +02:00
media
mvebu
sphinx doc: update Python requirements 2024-10-30 21:44:38 +01:00
sphinx-static doc: import Sphinx theme.css and pygments.css 2024-01-17 08:40:19 +01:00
SPI doc: board: ti: Move documentation from README to .rst 2023-09-09 06:12:47 +02:00
SPL
usage tcg2: decouple eventlog size from efi 2025-01-28 08:59:23 +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 doc: add generated index to table of contents 2024-01-17 08:40:19 +01:00
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 doc: add generated index to table of contents 2024-01-17 08:40:19 +01:00
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 Revert "mkimage: update man page and -h output" 2023-10-11 15:32:39 -04:00
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 tree-wide: Replace http:// link with https:// link for ti.com 2023-11-10 11:01:50 -05:00
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 tree-wide: Replace http:// link with https:// link for ti.com 2023-11-10 11:01:50 -05:00
README.pblimage
README.pcap
README.POST post: Remove unused NEEDS_MANUAL_RELOC code bits 2023-09-14 10:42:25 -04:00
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 serial: zynqmp: Fetch baudrate from dtb and update 2023-11-07 13:47:08 +01:00
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.