Simon Glass 93b1965322 Makefile: Only build dtc if needed
At present U-Boot always builds dtc if CONFIG_OF_CONTROL is defined, even
when DTC is provided. The built dtc is not actually used, so this is a
waste of time.

Update the Makefile logic to build dtc only if one is not provided to the
build with the DTC variable. Add documentation to explain this.

This saves about 3.5 seconds of elapsed time on a clean build of
sandbox_spl for me.

Signed-off-by: Simon Glass <sjg@chromium.org>
2021-10-19 11:23:07 -04:00
..
2021-01-27 12:52:57 +01:00
2021-10-19 11:23:07 -04:00
2021-10-01 21:08:18 -04:00
2021-08-14 20:54:41 +02:00
2021-09-16 10:29:40 -04:00
2021-08-14 20:54:41 +02:00
2021-09-09 11:28:54 -04:00
2021-10-01 11:07:13 +02:00
2010-04-21 23:42:38 +02:00
2018-01-22 16:43:30 -05:00
2013-04-28 11:07:41 +02:00
2017-06-29 21:30:16 -04:00
2013-04-28 11:07:40 +02:00
2016-02-06 12:00:59 +01:00
2002-11-02 23:30:20 +00:00
2008-05-09 20:53:52 +02:00
2020-07-09 20:58:05 +05:30
2010-04-03 15:24:26 -05:00
2016-02-06 12:00:59 +01:00
2021-09-04 12:26:02 -04:00
2011-09-11 21:24:09 +02:00
2020-09-30 16:55:03 -04:00
2020-07-16 12:37:01 +02:00

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.