- Oct 16, 2024
-
-
Tom Rini authored
git-subtree-dir: lib/lwip/lwip git-subtree-split: 0a0452b2c39bdd91e252aef045c115f88f6ca773
-
- Oct 11, 2024
-
-
Simon Glass authored
Complete this rename for all directories outside arch/ board/ drivers/ and include/ Use the new symbol to refer to any 'SPL' build, including TPL and VPL Signed-off-by:
Simon Glass <sjg@chromium.org>
-
Simon Glass authored
Move this section to rst, changing it just enough so that it builds. Signed-off-by:
Simon Glass <sjg@chromium.org>
-
Simon Glass authored
This should not be in the generic README file, so drop it. Signed-off-by:
Simon Glass <sjg@chromium.org>
-
Simon Glass authored
Rename this function to indicate that it refers to any xPL phase. Signed-off-by:
Simon Glass <sjg@chromium.org>
-
- Oct 10, 2024
-
-
Simon Glass authored
Move this section of the README into doc/ with some minor updates to mention SPL and user lower-case hex. Signed-off-by:
Simon Glass <sjg@chromium.org> Acked-by:
Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
-
- Aug 13, 2024
-
-
Simon Glass authored
Now that this is always 1, remove it and the associated dead code. Signed-off-by:
Simon Glass <sjg@chromium.org> Reviewed-by:
Heiko Schocher <hs@denx.de>
-
Simon Glass authored
Now that this is always 0, remove it and the associated dead code. Signed-off-by:
Simon Glass <sjg@chromium.org> Reviewed-by:
Heiko Schocher <hs@denx.de>
-
Simon Glass authored
This option is very old and the migration deadline was years ago. Drop it so that the I2C system can be simplified. Signed-off-by:
Simon Glass <sjg@chromium.org> Reviewed-by:
Heiko Schocher <hs@denx.de>
-
Simon Glass authored
This is used by a few boards but we are years past the migration date, so let's drop it now. Signed-off-by:
Simon Glass <sjg@chromium.org> Reviewed-by:
Heiko Schocher <hs@denx.de>
-
- Jul 19, 2024
-
-
Heinrich Schuchardt authored
Move the information about out-of-tree building from README to the generated HTML documentation. Signed-off-by:
Heinrich Schuchardt <heinrich.schuchardt@canonical.com> Reviewed-by:
Simon Glass <sjg@chromium.org>
-
- Feb 29, 2024
-
-
Tom Rini authored
git-subtree-dir: dts/upstream git-subtree-split: aaba2d45dc2a1b3bbb710f2a3808ee1c9f340abe
-
- Jan 17, 2024
-
-
Rasmus Villemoes authored
The first sentence is half-way true; the macro is always defined, but has the value 0 or 1. The second is outright false. A lot of code guarded by MEM_SUPPORT_64BIT_DATA uses a "ulong" to store values, so if sizeof(long) is not 8, that code would probably compile, but not work at all as expected. It would probably be possible to make all such code explicitly use u64 and thus make it work on 32 bit targets, but until that is done, do not pretend that it's ok to override the automatic value of MEM_SUPPORT_64BIT_DATA. Signed-off-by:
Rasmus Villemoes <rasmus.villemoes@prevas.dk>
-
- Jan 03, 2024
-
-
Svyatoslav Ryhel authored
Signed-off-by:
Svyatoslav Ryhel <clamor95@gmail.com>
-
- Dec 13, 2023
-
-
Simon Glass authored
Update to use the new docs.u-boot.org URL for documentation. Signed-off-by:
Simon Glass <sjg@chromium.org>
-
Simon Glass authored
This option is defined in both SPL and TPL builds, so correct the docs related to this. Also point to spl_phase() which is normally a better option. Mention VPL as well. Signed-off-by:
Simon Glass <sjg@chromium.org> Reported-by:
Heinrich Schuchardt <xypron.glpk@gmx.de>
-
- Nov 16, 2023
-
-
Sean Anderson authored
Contrary to what the help message says, this is the number of pages per block. Calculate it automatically based on SYS_NAND_BLOCK_SIZE and SYS_NAND_PAGE_SIZE. To better reflect its semantics, rename it to SYS_NAND_BLOCK_PAGES. Signed-off-by:
Sean Anderson <seanga2@gmail.com>
-
- Oct 06, 2023
-
-
Simon Glass authored
Move the useful help to Kconfig. Drop mention of CONFIG_SYS_MALLOC_SIMPLE since it doesn't exist. Correct a 'CONFIGSYS_MALLOC_F_LEN' typo Signed-off-by:
Simon Glass <sjg@chromium.org>
-
Simon Glass authored
We like to put the SPL first so it is clear that it relates to SPL. Rename various malloc-related options which have crept in, to stick to this convention. Signed-off-by:
Simon Glass <sjg@chromium.org> Reviewed-by:
Marcel Ziswiler <marcel.ziswiler@toradex.com> Reviewed-by:
Martyn Welch <martyn.welch@collabora.com> Reviewed-by:
Svyatoslav Ryhel <clamor95@gmail.com>
-
- Jul 15, 2023
-
-
Heinrich Schuchardt authored
The main README file is the wrong place to document how different terminal emulations can be used to access the U-Boot serial console. C-Kermit which requires a configuration file or several commands to access the U-Boot console may not be the preferred choice for newcomers. The provided wiki link is invalid. The man-pages for loadb and loads already show how to use the commands with picocom. Signed-off-by:
Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
-
- Feb 07, 2023
-
-
Simon Glass authored
This is very old and does not appear to be used. The CONFIG option enabling it is no-longer present. Drop it. Signed-off-by:
Simon Glass <sjg@chromium.org>
-
- Feb 06, 2023
-
-
Linus Walleij authored
Add a command to load SEAMA (Seattle Image), a NAND flash on-flash storage format. This type of flash image is found in some D-Link routers such as DIR-645, DIR-842, DIR-859, DIR-860L, DIR-885L, DIR890L and DCH-M225, as well as in WD and NEC routers on the ath79 (MIPS), Broadcom BCM53xx, and RAMIPS platforms. This U-Boot command will read and decode a SEAMA image from raw NAND flash on any platform. As it is always using big endian format for the data decoding is always necessary on platforms such as ARM. The command is needed to read a SEAMA-encoded boot image on the D-Link DIR-890L router for boot from NAND flash in an upcoming port of U-Boot to the Broadcom Northstar (BCM4709, BCM53xx) architecture. A basic test and documentation is added as well. The test must be run on a target with NAND flash support and at least one resident SEAMA image in flash. Cc: Rafał Miłecki <rafal@milecki.pl> Signed-off-by:
Linus Walleij <linus.walleij@linaro.org>
-
- Jan 27, 2023
-
-
Heinrich Schuchardt authored
This section does not match the standards of our documentation. Signed-off-by:
Heinrich Schuchardt <heinrich.schuchardt@canonical.com> Reviewed-by:
Tom Rini <trini@konsulko.com>
-
Heinrich Schuchardt authored
Move section 'Directory hierarchy' from file README to the HTML documentation. Signed-off-by:
Heinrich Schuchardt <heinrich.schuchardt@canonical.com> Reviewed-by:
Tom Rini <trini@konsulko.com> Reviewed-by:
Simon Glass <sjg@chromium.org>
-
Heinrich Schuchardt authored
The information is already maintained in doc/develop/release_cycle.rst. Signed-off-by:
Heinrich Schuchardt <heinrich.schuchardt@canonical.com> Reviewed-by:
Tom Rini <trini@konsulko.com> Reviewed-by:
Simon Glass <sjg@chromium.org>
-
Heinrich Schuchardt authored
Move the README section to the HTML documentation. Signed-off-by:
Heinrich Schuchardt <heinrich.schuchardt@canonical.com> Reviewed-by:
Tom Rini <trini@konsulko.com> Reviewed-by:
Simon Glass <sjg@chromium.org>
-
Heinrich Schuchardt authored
Board configurations are in configs/ and not in the Makefile. git log is the adequate way to identify who contributed to our source. scripts/get_maintainer.pl is the correct way to identify maintainers. Signed-off-by:
Heinrich Schuchardt <heinrich.schuchardt@canonical.com> Reviewed-by:
Tom Rini <trini@konsulko.com> Reviewed-by:
Simon Glass <sjg@chromium.org>
-
Heinrich Schuchardt authored
The information in this section is outdated. Signed-off-by:
Heinrich Schuchardt <heinrich.schuchardt@canonical.com> Reviewed-by:
Tom Rini <trini@konsulko.com> Reviewed-by:
Simon Glass <sjg@chromium.org>
-
Heinrich Schuchardt authored
Remove description of coding standards and patch submission process. Link to the relevant HTML documentation instead. Signed-off-by:
Heinrich Schuchardt <heinrich.schuchardt@canonical.com> Reviewed-by:
Tom Rini <trini@konsulko.com> Reviewed-by:
Simon Glass <sjg@chromium.org>
-
Heinrich Schuchardt authored
sandbox.rst was moved. Fixes: 2851cc94 ("dm: Add documentation for host command and implementation") Signed-off-by:
Heinrich Schuchardt <heinrich.schuchardt@canonical.com> Reviewed-by:
Simon Glass <sjg@chromium.org>
-
- Jan 20, 2023
-
-
Tom Rini authored
At this point, the remaining places where we have a symbol that is defined as CONFIG_... are in fairly odd locations. While as much dead code has been removed as possible, some of these locations are simply less obvious at first. In other cases, this code is used, but was defined in such a way as to have been missed by earlier checks. Perform a rename of all such remaining symbols to be CFG_... rather than CONFIG_... Signed-off-by:
Tom Rini <trini@konsulko.com> Reviewed-by:
Simon Glass <sjg@chromium.org>
-
- Dec 23, 2022
-
-
Tom Rini authored
Perform a simple rename of CONFIG_SYS_I2C_DIRECT_BUS to CFG_SYS_I2C_DIRECT_BUS Signed-off-by:
Tom Rini <trini@konsulko.com>
-
Tom Rini authored
Perform a simple rename of CONFIG_SH_ETHER_USE_PORT to CFG_SH_ETHER_USE_PORT Signed-off-by:
Tom Rini <trini@konsulko.com>
-
Tom Rini authored
Perform a simple rename of CONFIG_SH_ETHER_PHY_ADDR to CFG_SH_ETHER_PHY_ADDR Signed-off-by:
Tom Rini <trini@konsulko.com>
-
Tom Rini authored
Perform a simple rename of CONFIG_SH_ETHER_CACHE_WRITEBACK to CFG_SH_ETHER_CACHE_WRITEBACK Signed-off-by:
Tom Rini <trini@konsulko.com>
-
Tom Rini authored
Perform a simple rename of CONFIG_PRAM to CFG_PRAM Signed-off-by:
Tom Rini <trini@konsulko.com>
-
Tom Rini authored
Perform a simple rename of CONFIG_PL01x_PORTS to CFG_PL01x_PORTS Signed-off-by:
Tom Rini <trini@konsulko.com>
-
Tom Rini authored
Perform a simple rename of CONFIG_PL011_CLOCK to CFG_PL011_CLOCK Signed-off-by:
Tom Rini <trini@konsulko.com>
-
Tom Rini authored
Perform a simple rename of CONFIG_I2C_MULTI_BUS to CFG_I2C_MULTI_BUS Signed-off-by:
Tom Rini <trini@konsulko.com>
-
Tom Rini authored
Perform a simple rename of CONFIG_FPGA_DELAY to CFG_FPGA_DELAY Signed-off-by:
Tom Rini <trini@konsulko.com>
-