03 Jun, 2010

1 commit

  • Quite a few Kconfig symbols contain lowercase letters. The current
    checkkconfigsymbols.sh code only contains A-Z in the regexp it uses to
    find config symbols in source code, so it comes up with the wrong symbol
    to look for in Kconfig files and then generates false positives when it
    doesn't find that wrong symbol. For example checking drivers/net
    generates a false positive for MAC89 because the the actual config
    option is MAC89x0.

    Fix this by also adding a-z to the regexp.

    Signed-off-by: Roland Dreier
    Signed-off-by: Andrew Morton
    Signed-off-by: Michal Marek

    Roland Dreier
     

12 Oct, 2009

1 commit


13 Oct, 2007

1 commit

  • To avoid having to look manually for used but undefined Kconfig variables,
    I've written a script which tries do this efficiently, in case all other
    attention fail. It accounts for _MODULE suffix and for UML_ prefixes to
    Kconfig variable, but otherwise looks for exact matches (i.e. \
    Cc: Roman Zippel
    Cc: Adrian Bunk
    Signed-off-by: Andrew Morton
    Signed-off-by: Sam Ravnborg

    Paolo 'Blaisorblade' Giarrusso