diff options
| author | Tony Dinh <[email protected]> | 2024-07-07 21:39:03 -0700 |
|---|---|---|
| committer | Stefan Roese <[email protected]> | 2024-07-15 08:42:04 +0200 |
| commit | 51d4eb8bbaf35d14d4e30b885863ae00fbc47258 (patch) | |
| tree | e925e0d1fbed321c17ffae3ee46e8ae5d0bd6e62 /board | |
| parent | aa8769dc15a717059a7663817b4c33cacff24894 (diff) | |
arm: mvebu: Enable bootstd and other modernization for Synology DS414 (Armada XP) board
- Switch to standard boot (in include/configs/ds414.h and
configs/ds414_defconfig)
- Implement board_late_init() to ensure successful enumeration
of USB3 devices
- Remove unnecessary checkboard()
- Updated IDENT_STRING to indicate this u-boot supports both Synology
DS414 and DS214+ boards
- Add SYS_THUMB_BUILD to reduce binary size
- Add NET_RANDOM_ETHADDR
- Add CONFIG_LBA48 and CONFIG_SYS_64BIT_LBA to support >2TB HDD/SDD
Signed-off-by: Tony Dinh <[email protected]>
Reviewed-by: Stefan Roese <[email protected]>
Acked-by: Phil Sutter <[email protected]>
Diffstat (limited to 'board')
| -rw-r--r-- | board/Synology/ds414/ds414.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/board/Synology/ds414/ds414.c b/board/Synology/ds414/ds414.c index 8db810ad3eb..1a4cea87e1a 100644 --- a/board/Synology/ds414/ds414.c +++ b/board/Synology/ds414/ds414.c @@ -180,6 +180,13 @@ int board_init(void) return 0; } +int board_late_init(void) +{ + /* Do late init to ensure successful enumeration of XHCI devices */ + pci_init(); + return 0; +} + int misc_init_r(void) { if (!env_get("ethaddr")) { @@ -188,10 +195,3 @@ int misc_init_r(void) } return 0; } - -int checkboard(void) -{ - puts("Board: DS414\n"); - - return 0; -} |
