whitespace and comment fixes, no code changes
This commit is contained in:
@@ -153,10 +153,10 @@ config FEATURE_MODPROBE_BLACKLIST
|
||||
default n
|
||||
depends on MODPROBE && FEATURE_2_6_MODULES
|
||||
help
|
||||
Say 'y' here to enable support for the 'blacklist' command in
|
||||
modprobe.conf. This prevents the alias resolver to resolve
|
||||
blacklisted modules. This is useful if you want to prevent your
|
||||
hardware autodetection scripts to load modules like evdev, frame
|
||||
Say 'y' here to enable support for the 'blacklist' command in
|
||||
modprobe.conf. This prevents the alias resolver to resolve
|
||||
blacklisted modules. This is useful if you want to prevent your
|
||||
hardware autodetection scripts to load modules like evdev, frame
|
||||
buffer drivers etc.
|
||||
|
||||
comment "Options common to multiple modutils"
|
||||
|
@@ -181,7 +181,7 @@ int depmod_main(int ATTRIBUTE_UNUSED argc, char **argv)
|
||||
char *shortname = llist_pop(&old_deps);
|
||||
|
||||
while (all) {
|
||||
char *nam =
|
||||
char *nam =
|
||||
xstrdup(bb_get_last_path_component_nostrip(all->name));
|
||||
char *tmp = strrstr(nam, ".ko");
|
||||
|
||||
|
@@ -232,10 +232,10 @@ static char *parse_command_string(char *src, char **dst)
|
||||
#endif /* ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS */
|
||||
|
||||
static int is_conf_command(char *buffer, const char *command)
|
||||
{
|
||||
{
|
||||
int len = strlen(command);
|
||||
return ((strstr(buffer, command) == buffer) &&
|
||||
isspace(buffer[len]));
|
||||
isspace(buffer[len]));
|
||||
}
|
||||
|
||||
/*
|
||||
@@ -325,7 +325,7 @@ static void include_conf(struct dep_t **first, struct dep_t **current, char *buf
|
||||
include_conf(first, current, buffer, buflen, fdi);
|
||||
close(fdi);
|
||||
}
|
||||
} else if (ENABLE_FEATURE_MODPROBE_BLACKLIST &&
|
||||
} else if (ENABLE_FEATURE_MODPROBE_BLACKLIST &&
|
||||
(is_conf_command(buffer, "blacklist"))) {
|
||||
char *mod;
|
||||
struct dep_t *dt;
|
||||
|
Reference in New Issue
Block a user