Re: [PATCH v6 1/2] checkpatch: Allow passing config directory

From: Petr Vorel

Date: Tue Apr 21 2026 - 06:33:33 EST


Hi Simon, all,

> checkpatch.pl searches for .checkpatch.conf in $CWD, $HOME and
> $CWD/.scripts. Allow passing a single directory via
> CHECKPATCH_CONFIG_DIR environment variable. This allows to directly use
> project configuration file for projects which vendored checkpatch.pl
> (e.g. LTP or u-boot).

> Although it'd be more convenient for user to have --conf-dir option
> (instead of using environment variable), code would get ugly because
> options from the configuration file needs to be read before processing
> command line options with Getopt::Long.

> While at it, document directories and environment variable in -h help
> and HTML doc.

I'm sorry for the noise, I need to send v7, with diff below.

1) Fix empty variable, (I was thinking about but in the end forget).
2) Print $HOME in help instead the actual value of $HOME environment variable.

Kind regards,
Petr

+++ scripts/checkpatch.pl
@@ -57,7 +57,8 @@ my %ignore_type = ();
my @ignore = ();
my $help = 0;
my $configuration_file = ".checkpatch.conf";
-my $def_configuration_dirs = ".:$ENV{HOME}:.scripts";
+my $def_configuration_dirs_help = '.:$HOME:.scripts';
+(my $def_configuration_dirs = $def_configuration_dirs_help) =~ s/\$(\w+)/$ENV{$1} /g;
my $env_config_dir = 'CHECKPATCH_CONFIG_DIR';
my $max_line_length = 100;
my $ignore_perl_version = 0;
@@ -151,7 +152,7 @@ When FILE is - read standard input.

CONFIGURATION FILE
Default configuration options can be stored in $configuration_file,
-search path: '$def_configuration_dirs' or in a directory specified by
+search path: '$def_configuration_dirs_help' or in a directory specified by
\$$env_config_dir environment variable (fallback to the default search path).
EOM

@@ -1541,7 +1542,7 @@ sub which_conf {
my ($conf, $env_key, $paths) = @_;
my $env_dir = $ENV{$env_key};

- if (defined($env_dir)) {
+ if (defined($env_dir) && $env_dir ne "") {
return "$env_dir/$conf" if (-e "$env_dir/$conf");
warn "$P: Can't find a readable $conf in '$env_dir', falling back to default search paths\n";
}