Conversation

So, is there some logic in the linux kernel to exclude some CONFIG options from all{yes,rand}config builds? Over in U-Boot I'm poking at making allyesconfig link at least on sandbox, but there's a number of options where we guard enabling something to start with and then don't provide bogus default addresses/etc.

1
0
0
@trini I believe that's done with "depends on !COMPILE_TEST". Few cases actually cite the reason why, but there's a bunch of options that do that and some (eg ARM_HAS_GROUP_RELOCS) say why.
1
0
1

@conor Ah thanks. I should put somewhere on the back-burner reverting commit 6262afa10ef7 ("kconfig: default to zero if int/hex symbol lacks default property") and see if some broader use of COMPILE_TEST is needed.

0
0
0