struct globals {
dep_lst_t *lst; /* modules without their corresponding extension */
- size_t moddir_base_len; /* length of the "-b basedir" */
};
#define G (*(struct globals*)&bb_common_bufsiz1)
/* We have to zero it out because of NOEXEC */
*/
if (strrstr(modulename, ".ko") != NULL) {
dep_lst_t *new = xzalloc(sizeof(dep_lst_t));
- new->name = xstrdup(modulename + G.moddir_base_len);
+ new->name = xstrdup(modulename);
new->next = G.lst;
G.lst = new;
}
ptr = the_module;
this = G.lst;
do {
- if (!strcmp(fname + G.moddir_base_len, this->name))
+ if (!strcmp(fname, this->name))
break;
this = this->next;
} while (this);
dbg_assert (this);
-//bb_info_msg("fname='%s'", fname + G.moddir_base_len);
+//bb_info_msg("fname='%s'", fname);
do {
/* search for a 'd' */
ptr = memchr(ptr, 'd', len - (ptr - (char*)the_module));
option_mask32 |= *argv == NULL;
if (option_mask32 & ARG_b) {
- G.moddir_base_len = strlen(moddir_base);
- if (ENABLE_FEATURE_CLEAN_UP) {
- chp = moddir;
- moddir = concat_path_file(moddir_base, moddir);
- free (chp);
- } else
- moddir = concat_path_file(moddir_base, moddir);
+ xchdir(moddir_base);
}
if (!(option_mask32 & ARG_n)) { /* --dry-run */