u-boot/doc
Simon Glass 814dd92bdc video: Drop cfg_console
The non-driver model video support was removed two years ago. Drop this
driver, which is only used by nokia_rx51.

Signed-off-by: Simon Glass <sjg@chromium.org>
2022-03-28 20:14:24 +02:00
..
SPI
SPL
android Create a new boot/ directory 2021-11-11 19:01:56 -05:00
api clk: Add driver API to HTML docs 2022-02-25 01:41:04 -05:00
arch doc: describe generation of SMBIOS table 2022-02-26 07:37:00 +01:00
board doc: board: raspberrypi: Add documentation 2022-03-20 11:03:06 +01:00
build doc: add libgnutls28-dev to build dependencies 2022-03-12 12:27:07 +01:00
chromium
develop Prepare v2022.04-rc5 2022-03-28 12:36:49 -04:00
device-tree-bindings Prepare v2022.04-rc5 2022-03-28 12:36:49 -04:00
imx
media
mvebu
sphinx doc: update doc/sphinx/requirements.txt 2022-03-25 08:59:49 -04:00
sphinx-static
uImage.FIT
usage video: Drop cfg_console 2022-03-28 20:14:24 +02:00
.gitignore
I2C_Edge_Conditions
Makefile
README.Heterogeneous-SoCs
README.JFFS2
README.JFFS2_NAND
README.LED
README.OFT
README.POST
README.SNTP
README.SPL
README.TPL
README.VLAN
README.VSC3316-3308
README.arm-caches
README.arm-relocation
README.armada-secureboot
README.asn1
README.atmel_mci
README.atmel_pmecc
README.autoboot
README.bcm7xxx
README.bcmns3
README.bitbangMII
README.bootcount bootcount: clarify documentation 2022-03-23 07:27:38 +01:00
README.boston
README.bus_vcxk
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.falcon
README.fec_mxc net: fec_mxc: Drop CONFIG_FEC_XCV_TYPE 2022-03-18 12:48:17 -04:00
README.fsl-ddr
README.fsl-dpaa
README.fsl-esdhc
README.fsl-hwconfig
README.fsl-trustzone-components
README.fsl_iim
README.fuse
README.generic-board
README.generic_usb_ohci
README.gpio
README.gpt
README.hwconfig
README.i2c
README.iomux
README.kconfig
README.kwbimage
README.link-local
README.malta
README.marvell
README.mediatek
README.memory-test
README.mpc83xx.ddrecc
README.mpc83xxads
README.mpc85xx
README.mpc85xx-sd-spi-boot Fix URLs to old freescale git repos 2022-03-28 08:22:17 -04:00
README.mpc85xx-spin-table
README.mpc85xxcds
README.multi-dtb-fit
README.mxc_ocotp
README.nand
README.odroid
README.omap-ulpi-viewport
README.omap3
README.pblimage
README.pcap
README.plan9
README.power-framework
README.pxe cmd: pxe_utils: sysboot: add kaslr-seed generation support 2022-02-11 09:00:47 -05:00
README.ramboot-ppc85xx
README.rmobile
README.rockchip doc: rockchip: puma: update build and flash instructions 2021-12-24 14:53:31 +08:00
README.rockusb
README.s5p4418
README.s5pc1xx
README.sata
README.sched
README.scrapyard
README.semihosting vexpress64: Refactor header file to make it easier to add new FVPs 2022-01-04 22:48:48 -05:00
README.serial_multi
README.sha1
README.silent
README.socfpga
README.splashprepare
README.srio-pcie-boot-corenet
README.standalone
README.t1040-l2switch
README.tee
README.ti-secure
README.ubi
README.ubispl
README.ublimage
README.udp
README.unaligned-memory-access.txt
README.uniphier
README.update
README.usb usb: doc: Fix spelling issues in README.usb 2021-11-15 14:33:33 -05:00
README.vf610
README.video
README.vxworks
README.watchdog
README.zfs
bounces
conf.py
feature-removal-schedule.txt
git-mailrc
index.rst
kwboot.1 tools: kwboot: Update doc about Avanta 2022-03-04 13:12:38 +01:00
mkeficapsule.1 tools: mkeficapsule: allow for specifying GUID explicitly 2022-02-11 20:07:55 +01:00
mkimage.1 tools: mkimage/dumpimage: Allow to use -l with -T 2022-02-28 10:33:11 -05:00

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.