Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BesTV R3300L is a ISP custom-made setup box that's powered by Amlogic S905L-B, it was once popular in ~2020 in the blooming of custom s9xxx firmwares and my introduction to Amlogic tinkering. This adds its dedicated u-boot(BL33) and bootloader image, built from v2023.01, with noticable difference from generic s905x-p212 u-boot: 1. The boot order is USB0 > MMC0 (SD) > MMC1 (EMMC) > PXE > DHCP The MMC2 is not in the boot order since on this device it's defined to be used as SDIO to connect to Wireless chip. The Network bootings are placed at the latest as those are least frequently used and all they do are wasting the booting time 2. The u-boot bootloader image will store env at 0xf0000 offset on MMC1 size 0x10000, ending at 0x100000 (1MiB), before any definable MBR partitions, this means the user can use fw_printenv and fw_setenv to handle u-boot envs from within the system with a fw_env.config containing the following line `/dev/mmcblk2 0xf0000 0x10000` The u-boot & bootloader images support latest kernel (6.1.8 as of now) nicely
- Loading branch information