u-boot/doc
Andy Yan 3e4eb3e259 doc: coolpi: Fix the defconfig name
The defconfig name should be: coolpi-cm5-genbook-rk3588_defconfig

Signed-off-by: Andy Yan <andyshrk@163.com>
Reviewed-by: Quentin Schulz <quentin.schulz@cherry.de>
Reviewed-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
2025-01-17 20:30:59 +01: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 doc: coolpi: Fix the defconfig name 2025-01-17 20:30:59 +01: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 Merge patch series "bootstd: Support recording images" 2025-01-15 19:27:14 -06:00
device-tree-bindings usb: dwc2: Add support for Canaan K230 2025-01-16 15:55:27 +08: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 doc: import Sphinx theme.css and pygments.css 2024-01-17 08:40:19 +01:00
SPI
SPL
usage Merge patch series "bootstd: Support recording images" 2025-01-15 19:27:14 -06: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
README.arm-caches
README.arm-relocation
README.armada-secureboot
README.asn1
README.atmel_mci
README.atmel_pmecc
README.autoboot
README.bcmns3
README.bitbangMII
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
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.