u-boot/doc
Vignesh Raghavendra 141cd8e8fd ARM: dts: j72xx-r5-common-proc-board: Add DM firmware node
Add DM firmware node which will provide DM services during R5 SPL stage.

Signed-off-by: Vignesh Raghavendra <vigneshr@ti.com>
2021-04-14 13:19:10 -05:00
..
SPI
SPL
android doc: android/boot-image: invalid C declaration 2021-01-04 09:10:16 -05:00
api doc: add sandbox API 2020-11-05 09:11:31 -07:00
arch smbios: Add documentation and devicetree binding 2020-11-06 10:18:20 +08:00
board doc: edison: Update information about xFSTK 2020-12-22 10:19:40 +08:00
build doc/build/gcc.rst: required packages for SUSE 2020-12-15 09:30:51 +01:00
chromium
develop doc: move README.trace to HTML documentation 2020-12-15 09:37:24 +01:00
device-tree-bindings ARM: dts: j72xx-r5-common-proc-board: Add DM firmware node 2021-04-14 13:19:10 -05:00
driver-model dm: doc: Update the of-platadata documentation 2020-10-29 14:42:59 -06:00
imx
media
mvebu
sphinx doc: Sphinx.override_domain() deprecated 2020-10-14 11:16:34 -04:00
sphinx-static
uImage.FIT doc: Fix typo in FIT documentation 2020-12-18 16:16:36 +05:30
uefi doc: uefi: remove leading $ from bash commands 2020-12-15 09:39:07 +01:00
usage doc: man-page for bootefi command 2020-12-20 17:40:06 +01:00
.gitignore
I2C_Edge_Conditions
Makefile
README.440-DDR-performance
README.AMCC-eval-boards-cleanup
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.bedbug
README.bitbangMII
README.bloblist
README.bootcount
README.boston
README.bus_vcxk
README.cfi
README.chromium
README.chromium-chainload
README.commands.itest
README.commands.spl
README.console
README.davinci
README.davinci.nand_spl
README.dfu doc: dfu: fix typo in README.dfu 2020-10-22 11:26:14 -04:00
README.dfutftp
README.displaying-bmps
README.distro
README.dns
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.gpio
README.gpt
README.hwconfig
README.i2c
README.iomux
README.kconfig
README.kwbimage
README.link-local
README.lynxkdi
README.m54418twr
README.malta
README.marvell Revert "arm64: dts: a3720: add support for espressobin with populated emmc" 2020-12-07 07:11:37 +01:00
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.nokia_rx51
README.nvme
README.odroid
README.omap-ulpi-viewport
README.omap3
README.pblimage
README.pcap
README.plan9
README.power-framework
README.pxe
README.ramboot-ppc85xx
README.rmobile
README.rockchip
README.rockusb
README.s5p4418
README.s5pc1xx
README.sata
README.sched
README.scrapyard
README.semihosting
README.serial_multi
README.sha1
README.silent
README.socfpga arm: socfpga: arria10: Add qts-filter for Arria10 socfpga 2020-10-09 17:53:14 +08:00
README.spear
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
README.vf610
README.video
README.virtio
README.vxworks
README.watchdog
README.zfs
bounces
conf.py doc: allow building htmldoc with Sphinx 3+ 2020-12-15 09:31:39 +01:00
feature-removal-schedule.txt
git-mailrc MAINTAINERS, git-mailrc: Update sunxi maintainers 2020-10-29 09:57:13 -04:00
index.rst doc: move pstore.rst to usage/pstore.rst 2020-12-15 09:35:04 +01:00
kwboot.1
mkimage.1

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.