mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
powerpc: mpc85xx: Only enable binman when it is needed
Quite a few boards using this SoC family don't use binman, yet CONFIG_BINMAN is enabled for all of them. But the option should only be enabled if we expect binman to produce an image. Calling binman when the device tree is missing, etc. will cause failer. Add a condition so that CONFIG_BINMAN is only enabled as needed. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
This commit is contained in:
parent
e6385c7e9c
commit
be17bcb9af
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@ config MPC85xx
|
||||||
select CREATE_ARCH_SYMLINK
|
select CREATE_ARCH_SYMLINK
|
||||||
select SYS_FSL_DDR
|
select SYS_FSL_DDR
|
||||||
select SYS_FSL_DDR_BE
|
select SYS_FSL_DDR_BE
|
||||||
select BINMAN
|
select BINMAN if OF_SEPARATE
|
||||||
imply CMD_HASH
|
imply CMD_HASH
|
||||||
imply CMD_IRQ
|
imply CMD_IRQ
|
||||||
imply USB_EHCI_HCD if USB
|
imply USB_EHCI_HCD if USB
|
||||||
|
|
Loading…
Reference in a new issue