u-boot-2016/doc
Tom Rini 0ce033d258 Merge branch 'master' of git://git.denx.de/u-boot-arm
Albert's rework of the linker scripts conflicted with Simon's making
everyone use __bss_end.  We also had a minor conflict over
README.scrapyard being added to in mainline and enhanced in
u-boot-arm/master with proper formatting.

Conflicts:
	arch/arm/cpu/ixp/u-boot.lds
	arch/arm/cpu/u-boot.lds
	arch/arm/lib/Makefile
	board/actux1/u-boot.lds
	board/actux2/u-boot.lds
	board/actux3/u-boot.lds
	board/dvlhost/u-boot.lds
	board/freescale/mx31ads/u-boot.lds
	doc/README.scrapyard
	include/configs/tegra-common.h

Build tested for all of ARM and run-time tested on am335x_evm.

Signed-off-by: Tom Rini <trini@ti.com>
2013-03-18 14:37:18 -04:00
..
device-tree-bindings EXYNOS5: FDT: Add SPI device node data 2013-01-08 10:54:34 +09:00
DocBook
driver-model Merge branch 'master' of git://git.denx.de/u-boot-arm 2013-03-18 14:37:18 -04:00
SPL doc/SPL/README.am335x-network: Document using ethernet (and USB) SPL 2013-02-18 13:51:20 -05:00
uImage.FIT
feature-removal-schedule.txt Feature Removal: disable "mtest" command by default 2013-03-11 15:26:59 -04:00
git-mailrc kerneldoc: Add Sonic Zhang to alias bfin in git-mailrc. 2013-03-04 14:19:56 -05:00
I2C_Edge_Conditions
kwboot.1
mkimage.1
README.440-DDR-performance
README.ag102
README.AMCC-eval-boards-cleanup
README.arm-caches
README.ARM-memory-map
README.arm-relocation
README.ARM-SoC
README.arm-unaligned-accesses
README.at91
README.at91-soc
README.atmel_mci
README.atmel_pmecc
README.autoboot
README.AVR32
README.AVR32-port-muxing
README.b4860qds powerpc/b4860qds: Added Support for B4860QDS 2013-01-30 11:25:11 -06:00
README.bedbug
README.bitbangMII
README.blackfin
README.bus_vcxk
README.cfi
README.commands Refactor linker-generated arrays 2013-03-12 23:28:40 +01:00
README.commands.itest
README.commands.spl
README.console
README.davinci
README.davinci.nand_spl
README.designware_eth
README.displaying-bmps lcd: implement a callback for splashimage 2013-03-11 11:06:09 -04:00
README.dns
README.drivers.eth
README.enetaddr
README.ext4
README.falcon Add README for the "Falcon" mode 2013-03-01 12:01:32 -05:00
README.fdt-control
README.fec_mxc doc/README.fec_mxc: add documentation 2013-01-28 06:57:49 +01:00
README.fsl-ddr README.fsl-ddr typos and update to reflect hotkey 2013-01-30 11:25:13 -06:00
README.fsl-hwconfig
README.generic_usb_ohci
README.gpt
README.hwconfig
README.idma2intr
README.imx5
README.imx31
README.imximage
README.iomux
README.JFFS2
README.JFFS2_NAND
README.kwbimage
README.LED
README.LED_display
README.link-local
README.lynxkdi
README.m28
README.m68k
README.m54418twr
README.marubun-pcmcia
README.memory-test Feature Removal: disable "mtest" command by default 2013-03-11 15:26:59 -04:00
README.menu
README.mini2440
README.mips README.mips: update known issues and TODOs 2013-01-16 10:52:08 +01:00
README.Modem
README.mpc5xx
README.mpc74xx
README.mpc83xx.ddrecc
README.mpc83xxads
README.mpc85xx
README.mpc85xx-spin-table
README.mpc85xxads
README.mpc85xxcds
README.MPC866
README.mx28_common
README.mx28evk
README.N1213
README.nand
README.nand-boot-ppc440
README.NDS32
README.ne2000
README.NetConsole
README.nokia_rx51
README.OFT
README.omap-ulpi-viewport
README.omap3
README.pblimage
README.POST
README.ppc440
README.pxe
README.qemu-mips README.qemu-mips: move README file from board to doc directory 2013-01-16 10:52:08 +01:00
README.rmobile
README.s5pc1xx
README.sata
README.sched
README.scrapyard Merge branch 'master' of git://git.denx.de/u-boot-arm 2013-03-18 14:37:18 -04:00
README.serial_multi
README.sh
README.sh7752evb sh: add support for sh7752evb board 2012-12-20 13:20:17 +09:00
README.sha1
README.silent Allow u-boot to be silent without forcing Linux to be 2013-03-11 17:01:02 -04:00
README.SNTP
README.spear
README.SPL
README.srio-pcie-boot-corenet
README.standalone
README.switch_config
README.t4240qds
README.ubi
README.ublimage
README.update
README.usb usb documentation: fix typo 2012-12-17 15:38:15 +01:00
README.video
README.VLAN
README.VSC3316-3308
README.watchdog mx31/mx35/mx51/mx53/mx6: add watchdog 2013-01-13 11:39:57 +01: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.