Compare commits
10 Commits
cherry-088
...
cherry-118
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1359c089af | ||
|
|
ce5ae4b69e | ||
|
|
05d1ee07f7 | ||
|
|
f672720146 | ||
|
|
c35b6853b5 | ||
|
|
5ef532deaa | ||
|
|
c9a5a12248 | ||
|
|
652e93b301 | ||
|
|
17c5d8d110 | ||
|
|
cdd549ccc4 |
@@ -782,17 +782,6 @@ pcduino3_nano:
|
||||
ROLE: pcduino3_nano
|
||||
<<: *lab_dfn
|
||||
|
||||
samus:
|
||||
variables:
|
||||
ROLE: samus
|
||||
<<: *lab_dfn
|
||||
|
||||
# chromebook_samus_tpl
|
||||
samus_tpl:
|
||||
variables:
|
||||
ROLE: samus_tpl
|
||||
<<: *lab_dfn
|
||||
|
||||
link:
|
||||
variables:
|
||||
ROLE: link
|
||||
@@ -927,11 +916,6 @@ rpi5:
|
||||
ROLE: rpi5
|
||||
<<: *lab_dfn
|
||||
|
||||
zybo:
|
||||
variables:
|
||||
ROLE: zybo
|
||||
<<: *lab_dfn
|
||||
|
||||
qemu-x86_64:
|
||||
variables:
|
||||
ROLE: qemu-x86_64
|
||||
|
||||
@@ -732,3 +732,46 @@ The build completed successfully. Let me provide a summary:
|
||||
|
||||
---
|
||||
|
||||
## 2025-12-19: us/next
|
||||
|
||||
Branch: cherry-118a10e1dde
|
||||
|
||||
Commits:
|
||||
- 118a10e1dde ARM: renesas: Consistently enable ENV_OVERWRITE on Renesas R-Car
|
||||
- 70da4f28592 net: rswitch: Do not register disabled ports as ethernet devices
|
||||
- 0d05bd2058b Merge branch 'master' of https://source.denx.de/u-boot/custodians/u-boot-sh
|
||||
|
||||
### Conversation log
|
||||
The repository is clean. Now let me create and checkout the new branch based on ci/master:
|
||||
|
||||
Now let me cherry-pick the first commit:
|
||||
|
||||
First commit cherry-picked successfully. Now the second commit:
|
||||
|
||||
Second commit cherry-picked successfully. Now the third commit which is a merge commit:
|
||||
|
||||
The merge commit is empty (expected since the parent commits were already cherry-picked). Let me commit it as an empty commit to preserve the merge message:
|
||||
|
||||
All three commits cherry-picked successfully. Let me verify with git log:
|
||||
|
||||
All 3 commits are present. Now let me run the build verification:
|
||||
|
||||
## Final Status
|
||||
|
||||
**Cherry-pick Summary:**
|
||||
- ✅ All 3 commits successfully cherry-picked to branch `cherry-118a10e1dde`
|
||||
|
||||
| Commit | Subject | Status |
|
||||
|--------|---------|--------|
|
||||
| 118a10e1dde | ARM: renesas: Consistently enable ENV_OVERWRITE on Renesas R-Car | ✅ Cherry-picked |
|
||||
| 70da4f28592 | net: rswitch: Do not register disabled ports as ethernet devices | ✅ Cherry-picked |
|
||||
| 0d05bd2058b | Merge branch 'master' of https://source.denx.de/u-boot/custodians/u-boot-sh | ✅ Cherry-picked (empty commit) |
|
||||
|
||||
**Build Result:** ✅ **OK** - 1 board built successfully, no warnings or errors
|
||||
|
||||
**Fix-ups Made:** None - all cherry-picks applied cleanly
|
||||
|
||||
**Branch Status:** `cherry-118a10e1dde` is ready for pushing, 3 commits ahead of `ci/master`
|
||||
|
||||
---
|
||||
|
||||
|
||||
@@ -6,6 +6,12 @@
|
||||
#include "rk3399-u-boot.dtsi"
|
||||
#include "rk3399-sdram-ddr3-1600.dtsi"
|
||||
|
||||
&sdmmc {
|
||||
max-frequency = <25000000>; /* 25MHz for SD-wire compatibility */
|
||||
/delete-property/ cap-sd-highspeed;
|
||||
/delete-property/ cap-mmc-highspeed;
|
||||
};
|
||||
|
||||
&vdd_log {
|
||||
regulator-init-microvolt = <950000>;
|
||||
};
|
||||
|
||||
@@ -17,6 +17,7 @@ CONFIG_DM_REGULATOR_FIXED=y
|
||||
CONFIG_DM_REGULATOR_GPIO=y
|
||||
CONFIG_DM_SPI=y
|
||||
CONFIG_DM_SPI_FLASH=y
|
||||
CONFIG_ENV_OVERWRITE=y
|
||||
CONFIG_FIT=y
|
||||
CONFIG_HUSH_PARSER=y
|
||||
CONFIG_MTD=y
|
||||
|
||||
@@ -14,7 +14,6 @@ CONFIG_CMD_USB=y
|
||||
CONFIG_CUSTOM_SYS_INIT_SP_ADDR=0x4f000000
|
||||
CONFIG_ENABLE_ARM_SOC_BOOT0_HOOK=y
|
||||
CONFIG_ENV_IS_IN_SPI_FLASH=y
|
||||
CONFIG_ENV_OVERWRITE=y
|
||||
CONFIG_ENV_SECT_SIZE=0x40000
|
||||
CONFIG_ENV_SIZE=0x40000
|
||||
CONFIG_HAS_CUSTOM_SYS_INIT_SP_ADDR=y
|
||||
|
||||
@@ -2,5 +2,4 @@
|
||||
|
||||
CONFIG_BITBANGMII=y
|
||||
CONFIG_BITBANGMII_MULTI=y
|
||||
CONFIG_ENV_OVERWRITE=y
|
||||
CONFIG_SYS_PBSIZE=2068
|
||||
|
||||
@@ -1113,6 +1113,9 @@ static int rswitch_bind(struct udevice *parent)
|
||||
return -ENOENT;
|
||||
|
||||
ofnode_for_each_subnode(node, ports_np) {
|
||||
if (!ofnode_is_enabled(node))
|
||||
continue;
|
||||
|
||||
ret = device_bind_with_driver_data(parent, drv,
|
||||
ofnode_get_name(node),
|
||||
(ulong)priv, node, &dev);
|
||||
|
||||
@@ -309,6 +309,8 @@ class ConsoleBase():
|
||||
try:
|
||||
self.log.info('Waiting for U-Boot to be ready')
|
||||
|
||||
if self.lab_mode:
|
||||
self.timeout = TIMEOUT_PREPARE_MS
|
||||
if not self.lab_mode:
|
||||
self._wait_for_banner(loop_num)
|
||||
self.u_boot_version_string = self.after
|
||||
|
||||
@@ -105,49 +105,9 @@ def test_distro_arm_app_efi(ubman):
|
||||
ubman.expect(
|
||||
["Booting bootflow 'efi_media_1.bootdev.part_1' with efi"])
|
||||
|
||||
# Press Escape to force GRUB to appear, even if the silent menu was
|
||||
# enabled by a previous boot. If the menu is already set to appear, this
|
||||
# will exit to the grub> prompt
|
||||
ubman.send('\x1b')
|
||||
|
||||
# Press Escape again, to force it to the grub> prompt
|
||||
ubman.send('\x1b')
|
||||
|
||||
# Wait until we see the editor appear
|
||||
with ubman.log.section('grub'):
|
||||
ubman.expect(['grub>'])
|
||||
|
||||
ubman.run_command('normal', wait_for_prompt=False)
|
||||
|
||||
ubman.expect(['ESC to return previous'])
|
||||
|
||||
# Press 'e' to edit the command line
|
||||
ubman.log.info("Pressing 'e'")
|
||||
ubman.send('e')
|
||||
for _ in range(10):
|
||||
ubman.ctrl('N')
|
||||
expected = '\tlinux\t/boot/vmlinuz-6.14.0-27-generic '
|
||||
expected += 'root=UUID=e5665fb4-e1de-4335-86da-357ad5422319 ro '
|
||||
for _ in expected:
|
||||
ubman.ctrl('F')
|
||||
|
||||
to_erase = 'quiet splash'
|
||||
for _ in to_erase:
|
||||
ubman.ctrl('D')
|
||||
ubman.ctrl('X')
|
||||
ubman.expect(['Booting a command list'])
|
||||
|
||||
with ubman.log.section('exit boot-services'):
|
||||
ubman.expect(['EFI stub: Exiting boot services...'])
|
||||
|
||||
ubman.log.info("boot")
|
||||
ubman.expect(['Booting Linux on physical CPU'])
|
||||
|
||||
with ubman.log.section('initrd'):
|
||||
ubman.expect(['Freeing initrd memory:'])
|
||||
ubman.expect(['Run /init as init process'])
|
||||
|
||||
with ubman.temporary_timeout(200 * 1000):
|
||||
ubman.expect(['Ubuntu 25.04 qarm ttyAMA0'])
|
||||
# Wait for Linux to boot to userspace (kernel may be quiet)
|
||||
with ubman.log.section('Linux'):
|
||||
with ubman.temporary_timeout(200 * 1000):
|
||||
ubman.expect(['Ubuntu 25.04 qarm ttyAMA0'])
|
||||
|
||||
ubman.restart_uboot()
|
||||
|
||||
Reference in New Issue
Block a user