Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- - Kconfig seems to have a few errors
- - Prompts are missing so it wasn't possible to select a series (SC57x, SC58x etc.) from menuconfig
- - `select NOP_PHY` seemed to cause errors, I thought it should be `select NOP_PHY if PHY`
- - missing something to enable `USB` and `USB_HOST` - get errors in the core USB storage driver otherwise
- - Missing board specific Kconfigs - these link to the board specific configs (using SYS_CONFIG_NAME) which are also missing.
- - these contain critical config options like which memory chip is used
- - Many config options totally missing values (i.e. defined in Kconfig but never given a value) E.g.
- - lots of the clock options
- - the default environment including commands/variables required to boot the board
- - many other config options
- - In our repo, these are defined in the defconfig - maybe they were planning to still use the defconfig after upstreaming?
- - Adding the board to "mach types"
- - Core data and functions such as `board_init`, the memory map, etc. Some things like this are present in soc.c but most are missing.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement