Merge tag 'v2026.01-rc5' into next

Prepare v2026.01-rc5
This commit is contained in:
Tom Rini
2025-12-22 16:31:21 -06:00
12 changed files with 16 additions and 12 deletions

View File

@@ -3,7 +3,7 @@
VERSION = 2026
PATCHLEVEL = 01
SUBLEVEL =
EXTRAVERSION = -rc4
EXTRAVERSION = -rc5
NAME =
# *DOCUMENTATION*

View File

@@ -1864,7 +1864,7 @@ menu "Shell scripting commands"
config CMD_C5_PL330_DMA
bool "Release Reset DMA Channels for PL330 Handshake"
depends on TARGET_SOCFPGA_CYCLONE5_SOCDK
depends on TARGET_SOCFPGA_CYCLONE5
help
Provides access to Reset Manager Per2ModRst. Enables DMA
channels for ARM PrimeCell PL330 via reset release.

View File

@@ -180,6 +180,8 @@ int do_wget(struct cmd_tbl *cmdtp, int flag, int argc, char * const argv[])
ulong dst_addr;
char nurl[1024];
wget_info = &default_wget_info;
#if CONFIG_IS_ENABLED(WGET_CACERT)
if (argc == 4 && !strncmp(argv[1], "cacert", strlen("cacert")))
return set_cacert(argv[2], argv[3]);
@@ -214,7 +216,6 @@ int do_wget(struct cmd_tbl *cmdtp, int flag, int argc, char * const argv[])
if (parse_legacy_arg(url, nurl, sizeof(nurl)))
return CMD_RET_FAILURE;
wget_info = &default_wget_info;
if (wget_do_request(dst_addr, nurl))
return CMD_RET_FAILURE;

View File

@@ -499,6 +499,9 @@ static int do_env_load(struct cmd_tbl *cmdtp, int flag, int argc,
static int do_env_select(struct cmd_tbl *cmdtp, int flag, int argc,
char *const argv[])
{
if (argc < 2)
return CMD_RET_USAGE;
return env_select(argv[1]) ? 1 : 0;
}
#endif

View File

@@ -280,7 +280,7 @@ When using dfu-util the following commands can be used to boot to a U-Boot shell
.. prompt:: bash $
dfu-util -a bootloader -D tiboot3.bin
dfu-util -R -a tispl -D tispl.bin
dfu-util -R -a tispl.bin -D tispl.bin
dfu-util -R -a u-boot.img -D u-boot.img
Debugging U-Boot

View File

@@ -329,7 +329,7 @@ When using dfu-util the following commands can be used to boot to a U-Boot shell
.. prompt:: bash $
dfu-util -a bootloader -D tiboot3.bin
dfu-util -R -a tispl -D tispl.bin
dfu-util -R -a tispl.bin -D tispl.bin
dfu-util -R -a u-boot.img -D u-boot.img
.. am62x_evm_rst_include_end_dfu_boot

View File

@@ -546,7 +546,7 @@ either of ``CONFIG_NET`` or ``CONFIG_NET_LWIP`` is set:
.. code-block:: python
@pytest.mark.buildconfigspec('net', 'net lwip')
@pytest.mark.buildconfigspec('net', 'net_lwip')
The ``notbuildconfigspec()`` annotation can be used to require a configuration
option not to be set. The following annotation requires ``CONFIG_RISCV=n``:

View File

@@ -79,7 +79,7 @@ For the next scheduled release, release candidates were made on:
* U-Boot |next_ver|-rc4 was released on Mon 08 December 2025.
.. * U-Boot |next_ver|-rc5 was released on Tue 22 December 2025.
* U-Boot |next_ver|-rc5 was released on Mon 22 December 2025.
Please note that the following dates are planned only and may be deviated from
as needed.

View File

@@ -220,7 +220,6 @@ static ulong scsi_read(struct udevice *dev, lbaint_t blknr, lbaint_t blkcnt,
pccb->datalen = block_dev->blksz * blocks;
scsi_setup_read16(pccb, start, blocks);
start += blocks;
blks -= blocks;
} else
#endif
if (blks > max_blks) {

View File

@@ -279,7 +279,7 @@ int do_tftpb(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
if (!arg)
arg = net_boot_file_name;
if (arg) {
if (*arg) {
/* Parse [ip:[port:]]fname */
i = 0;
while ((*(words + i) = strsep(&arg, ":")))
@@ -342,6 +342,7 @@ int do_tftpb(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
if (tftp_loop(eth_get_dev(), laddr, fname, srvip, port) < 0)
ret = CMD_RET_FAILURE;
out:
free(arg);
if (arg != net_boot_file_name)
free(arg);
return ret;
}

View File

@@ -1,4 +1,4 @@
filelock==3.0.12
filelock==3.20.1
pycryptodomex==3.21.0
pytest==8.4.2
pytest-xdist==2.5.0

View File

@@ -1,2 +1,2 @@
filelock==3.0.12
filelock==3.20.1
importlib_resources==6.5.2