diff options
Diffstat (limited to 'util/autoport/main.go')
-rw-r--r-- | util/autoport/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/autoport/main.go b/util/autoport/main.go index 5fcd839940..ee269661db 100644 --- a/util/autoport/main.go +++ b/util/autoport/main.go @@ -548,7 +548,7 @@ func makeKconfig(ctx Context) { fmt.Fprintf(kc, "if %s\n\n", ctx.KconfigName) - fmt.Fprintf(kc, "config BOARD_SPECIFIC_OPTIONS # dummy\n\tdef_bool y\n") + fmt.Fprintf(kc, "config BOARD_SPECIFIC_OPTIONS\n\tdef_bool y\n") keys := []string{} for name, val := range KconfigBool { if val { |