Initial upgrade flow for control-plane

This commit is contained in:
2026-04-06 23:49:39 +08:00
parent c6f89651ce
commit 578b3e6a6f
19 changed files with 563 additions and 42 deletions

View File

@@ -23,8 +23,24 @@ bootm 0x80000000
flash-emmc.sh
```
4. If it boots, create the A/B deployment scheme
- (WORK IN PROGRESS)
6. Reboot into uboot, boot using the following commands
```
setenv boot_source emmc
setenv boot_part A
setenv rootpart 2;
setenv bootdev 0:${rootpart};
setenv rootdev emmc:2;
setenv kernel_addr_r 0xa0000000;
setenv bootargs "${bootargs_console} root=${rootdev} bootpart=${boot_part} rw rootwait rootfstype=ext4";
ext4load mmc ${bootdev} ${kernel_addr_r} /boot/kernel.itb && bootm ${kernel_addr_r};'
```
7. tail /var/log/monok8s/bootstrap.log
## Flashing into USB
On MacOS