Re: [PATCH 1/1] boot: CONFIG_CEDIT must depend on CONFIG_EXPO

2024-01-12 Thread Tom Rini
On Sat, Dec 16, 2023 at 04:38:36PM +0100, Heinrich Schuchardt wrote: > Building sandbox_defconfig with > > CONFIG_CMD_CEDIT=y > CONFIG_EXPO=n > > fails with > > cmd/cedit.c:258:(.text.do_cedit_run+0x4c): > undefined reference to `expo_apply_theme > > Fix the dependencies. > >

Re: [PATCH 1/1] boot: CONFIG_CEDIT must depend on CONFIG_EXPO

2023-12-16 Thread Simon Glass
On Sat, 16 Dec 2023 at 08:38, Heinrich Schuchardt wrote: > > Building sandbox_defconfig with > > CONFIG_CMD_CEDIT=y > CONFIG_EXPO=n > > fails with > > cmd/cedit.c:258:(.text.do_cedit_run+0x4c): > undefined reference to `expo_apply_theme > > Fix the dependencies. > > Fixes: a0874dc4

[PATCH 1/1] boot: CONFIG_CEDIT must depend on CONFIG_EXPO

2023-12-16 Thread Heinrich Schuchardt
Building sandbox_defconfig with CONFIG_CMD_CEDIT=y CONFIG_EXPO=n fails with cmd/cedit.c:258:(.text.do_cedit_run+0x4c): undefined reference to `expo_apply_theme Fix the dependencies. Fixes: a0874dc4ac71 ("expo: Add a configuration editor") Signed-off-by: Heinrich Schuchardt ---