u-boot/doc
Tom Rini 5360c683e6 Merge patch series "Add phyCORE AM62Ax"
Garrett Giordano <ggiordano@phytec.com> says:

This patch set adds the phyCORE AM62Ax board support and documenation to
u-boot.

The phyCORE-AM62Ax is a SoM (System on Module) featuring TI's AM62Ax SoC. It can
be used in combination with different carrier boards. This module can come
with different sizes and models for DDR, eMMC, SPI NOR Flash and various SoCs
from the AM62x family.

A development Kit, called phyBOARD-Lyra is used as a carrier board reference
design around the AM62x SoM.

This series depends on the following two patches:
- [PATCH v2] arm: mach-k3: am62a7: Provide a way to obtain boot device for non SPL
  https://lists.denx.de/pipermail/u-boot/2024-October/570156.html
- [PATCH] board: phytec: common: Introduce CONFIG_PHYTEC_K3_DDR_PATCH
  https://lists.denx.de/pipermail/u-boot/2024-November/571543.html

Link: https://lore.kernel.org/r/20241118231606.3161665-1-ggiordano@phytec.com
[trini: Fix warning in board/phytec/common/k3/board.c when
        CONFIG_EFI_HAVE_CAPSULE_SUPPORT is not enabled]
Signed-off-by: Tom Rini <trini@konsulko.com>
2024-12-13 20:09:41 -06:00
..
android treewide: bcb: move ab_select command to bcb subcommands 2024-10-24 09:45:55 +02:00
api doc: include file-system API into HTML docs 2024-10-30 21:44:38 +01:00
arch Merge patch series "Fix various bugs" 2024-09-18 13:07:19 -06:00
board Merge patch series "Add phyCORE AM62Ax" 2024-12-13 20:09:41 -06:00
build docker: Support building for multiple architectures 2024-12-02 16:34:30 -06:00
chromium
develop Prepare v2025.01-rc4 2024-12-09 16:29:47 -06:00
device-tree-bindings i2c: i2c-gpio: add support for i2c-gpio,sda-output-only 2024-10-21 06:32:40 +02:00
imx
learn
media
mvebu
sphinx doc: update Python requirements 2024-10-30 21:44:38 +01:00
sphinx-static
SPI
SPL
usage Makefile: Drop SPL_FIT_GENERATOR support 2024-11-27 08:59:03 +01:00
.gitignore
bounces
conf.py doc: conf.py: correct title and author of generated pdf 2024-11-09 09:56:46 +01:00
dumpimage.1
feature-removal-schedule.txt
genindex.rst
git-mailrc .mailmap: update e-mail address for Eugen Hristev 2024-10-16 15:33:23 +03:00
I2C_Edge_Conditions i2c: Drop reference to SYS_I2C_INIT_BOARD 2024-08-13 06:14:36 +02:00
index.rst
kwboot.1
Makefile
mkeficapsule.1 Prepare v2024.10-rc5 2024-09-16 14:48:13 -06:00
mkfwumdata.1
mkimage.1
README.arm-caches
README.arm-relocation
README.armada-secureboot
README.asn1
README.atmel_mci
README.atmel_pmecc
README.autoboot
README.bcmns3
README.bitbangMII
README.boston
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.fec_mxc
README.fsl-ddr
README.fsl-esdhc
README.fsl-hwconfig
README.fsl-trustzone-components
README.fsl_iim
README.fuse
README.generic_usb_ohci
README.gpio
README.gpt
README.Heterogeneous-SoCs
README.hwconfig
README.i2c
README.iomux
README.JFFS2_NAND
README.kwbimage
README.LED
README.link-local
README.malta
README.marvell
README.mediatek
README.memory-test
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.odroid
README.OFT
README.omap-ulpi-viewport
README.omap3
README.pblimage
README.pcap
README.POST
README.power-framework
README.pxe boot: pxe_utils: Add fallback support 2024-10-15 10:24:27 -06:00
README.ramboot-ppc85xx
README.rockchip Update directories for new name of TF-A directories 2024-10-04 09:00:47 -06:00
README.rockusb
README.s5p4418
README.s5pc1xx
README.sata
README.sched
README.scrapyard
README.serial_dt_baud
README.serial_multi
README.silent
README.SNTP
README.socfpga
README.splashprepare
README.srio-pcie-boot-corenet
README.standalone
README.t1040-l2switch
README.tee
README.ubi
README.ubispl
README.ublimage
README.udp
README.unaligned-memory-access.txt
README.uniphier Update the ARM trusted firmware git URL 2024-10-03 09:08:29 -06:00
README.update
README.usb
README.vf610
README.video
README.VLAN
README.VSC3316-3308
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.