u-boot/doc
Tom Rini a9aa4c5700 Merge branch '2019-07-24-master-imports'
- Various Android related changes including A/B update and BCB updates
- Assorted minor fixes
2019-07-24 14:15:51 -04:00
..
android doc: android: Add simple guide for A/B updates 2019-07-24 13:16:29 -04:00
api doc: Move existing rst files into api sub-directory 2019-07-24 10:07:24 -04:00
arch doc: arch: Convert README.xtensa to reST 2019-07-24 10:10:12 -04:00
board doc: board: Convert README.zynq to reST 2019-07-24 10:09:55 -04:00
chromium
device-tree-bindings - add rtc driver for stm32mp1 2019-07-23 14:16:21 -04:00
driver-model doc: driver-model: Convert usb-info.txt to reST 2019-07-24 10:07:24 -04:00
imx
media
mvebu
sphinx doc: Cope with Sphinx logging deprecations 2019-07-24 14:15:35 -04:00
sphinx-static
SPI
SPL
uImage.FIT doc: fitImage: Cosmetics break lines 2019-07-24 14:15:37 -04:00
.gitignore doc: Add .gitignore for the Sphinx build output directory 2019-07-24 14:15:37 -04:00
bounces
conf.py doc: Add the U-Boot logo to the html doc 2019-07-24 14:15:37 -04:00
feature-removal-schedule.txt
git-mailrc
I2C_Edge_Conditions
index.rst doc: Add board specific info to Sphinx TOC tree 2019-07-24 10:07:24 -04:00
kwboot.1
Makefile
mkimage.1
README.440-DDR-performance
README.AMCC-eval-boards-cleanup
README.arm-caches
README.arm-relocation
README.armada-secureboot
README.atmel_mci
README.atmel_pmecc
README.autoboot
README.bcm7xxx
README.bedbug
README.bitbangMII
README.bloblist
README.bootmenu
README.boston
README.bus_vcxk
README.cfi
README.chromium chromium: Update docs to clone vboot_reference directly 2019-07-18 11:31:30 -04:00
README.chromium-chainload
README.clang
README.coccinelle
README.commands
README.commands.itest
README.commands.spl
README.console
README.davinci
README.davinci.nand_spl
README.dfutftp
README.displaying-bmps
README.distro
README.dns
README.drivers.eth
README.enetaddr
README.esbc_validate
README.ext4
README.falcon
README.fdt-control
README.fdt-overlays
README.fec_mxc
README.fsl-clk
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.gpt
README.Heterogeneous-SoCs
README.hwconfig
README.i2c
README.iomux
README.iscsi
README.JFFS2
README.JFFS2_NAND
README.kconfig
README.kwbimage
README.LED
README.link-local
README.log
README.lynxkdi
README.m54418twr
README.malta
README.marubun-pcmcia
README.marvell
README.mediatek
README.memory-test
README.menu
README.mpc74xx
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.nand-boot-ppc440
README.ne2000
README.NetConsole
README.nokia_rx51
README.nvme
README.odroid
README.OFT
README.omap-ulpi-viewport
README.omap3
README.pblimage
README.plan9
README.POST
README.power-framework
README.pxe
README.ramboot-ppc85xx
README.rmobile
README.rockchip rockchip: Remove obsolete references to pyelftools 2019-07-20 23:59:44 +08:00
README.rockusb
README.s5pc1xx
README.sata
README.sched
README.scrapyard
README.semihosting
README.serial_multi
README.sha1
README.silent
README.SNTP
README.socfpga
README.spear
README.SPL dm: doc: add documentation for pre-reloc properties in SPL and TPL 2019-07-10 16:52:58 -06:00
README.splashprepare
README.srio-pcie-boot-corenet
README.standalone
README.t1040-l2switch
README.tee
README.ti-secure
README.TPL dm: doc: add documentation for pre-reloc properties in SPL and TPL 2019-07-10 16:52:58 -06:00
README.trace
README.u-boot_on_efi
README.ubi
README.ubispl
README.ublimage
README.uefi
README.unaligned-memory-access.txt
README.uniphier
README.update
README.usb
README.vf610
README.video
README.virtio
README.VLAN
README.VSC3316-3308
README.vxworks
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.