* [PATCH] extlinux: make variable name consistent
@ 2026-08-28 10:40 Sascha Hauer
2026-08-31 7:09 ` Sascha Hauer
0 siblings, 1 reply; 2+ messages in thread
From: Sascha Hauer @ 2026-08-28 10:40 UTC (permalink / raw)
To: Barebox List
Throughout the extlinux support the path to an extlinux config file is
used, but the variable is named abspath, configname or just path in
different functions. Consistently name the variable cfgpath for better
readability.
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
---
common/extlinux.c | 38 +++++++++++++++++++-------------------
1 file changed, 19 insertions(+), 19 deletions(-)
diff --git a/common/extlinux.c b/common/extlinux.c
index 92c49ebbce..968ffe68a3 100644
--- a/common/extlinux.c
+++ b/common/extlinux.c
@@ -89,13 +89,13 @@ static void extlinux_entry_free(struct bootentry *entry)
* Parse extlinux.conf. Only the entry pointed to by the DEFAULT keyword
* is extracted; all other LABEL sections are ignored.
*/
-static struct extlinux_entry *parse_extlinux_conf(const char *abspath,
+static struct extlinux_entry *parse_extlinux_conf(const char *cfgpath,
const char *rootpath)
{
char *buf, *bufptr, *line, *default_label = NULL;
struct extlinux_entry *entry = NULL;
- bufptr = read_file(abspath, NULL);
+ bufptr = read_file(cfgpath, NULL);
if (!bufptr)
return ERR_PTR(-errno);
@@ -124,7 +124,7 @@ static struct extlinux_entry *parse_extlinux_conf(const char *abspath,
if (!strcmp(val, default_label)) {
entry = xzalloc(sizeof(*entry));
entry->label = xstrdup(val);
- entry->rootpath = dirname(xstrdup(abspath));
+ entry->rootpath = dirname(xstrdup(cfgpath));
} else if (entry) {
break;
}
@@ -161,21 +161,21 @@ static struct extlinux_entry *parse_extlinux_conf(const char *abspath,
static int _extlinux_scan_file(struct bootscanner *scanner,
struct bootentries *bootentries,
- const char *configname,
+ const char *cfgpath,
const char *rootpath)
{
struct extlinux_entry *e;
- if (!strends(configname, "extlinux.conf"))
+ if (!strends(cfgpath, "extlinux.conf"))
return 0;
- e = parse_extlinux_conf(configname, rootpath);
+ e = parse_extlinux_conf(cfgpath, rootpath);
if (IS_ERR(e))
return PTR_ERR(e);
e->entry.boot = extlinux_boot;
e->entry.release = extlinux_entry_free;
- e->entry.path = xstrdup_const(configname);
+ e->entry.path = xstrdup_const(cfgpath);
e->entry.title = basprintf("extlinux: %s", e->label);
e->entry.description = basprintf("extlinux entry \'%s\" on %s",
e->label, rootpath);
@@ -188,37 +188,37 @@ static int _extlinux_scan_file(struct bootscanner *scanner,
static int extlinux_scan_file(struct bootscanner *scanner,
struct bootentries *bootentries,
- const char *configname)
+ const char *cfgpath)
{
- const char *rootpath = get_mounted_path(configname);
+ const char *rootpath = get_mounted_path(cfgpath);
if (IS_ERR(rootpath))
return PTR_ERR(rootpath);
- return _extlinux_scan_file(scanner, bootentries, configname, rootpath);
+ return _extlinux_scan_file(scanner, bootentries, cfgpath, rootpath);
}
static int extlinux_scan_directory(struct bootscanner *scanner,
struct bootentries *bootentries,
const char *rootpath)
{
- char *path;
+ char *cfgpath;
struct stat s;
int ret;
- path = basprintf("%s/boot/extlinux/extlinux.conf", rootpath);
- ret = stat(path, &s);
+ cfgpath = basprintf("%s/boot/extlinux/extlinux.conf", rootpath);
+ ret = stat(cfgpath, &s);
if (!ret && S_ISREG(s.st_mode))
- ret = _extlinux_scan_file(scanner, bootentries, path, rootpath);
- free(path);
+ ret = _extlinux_scan_file(scanner, bootentries, cfgpath, rootpath);
+ free(cfgpath);
if (ret > 0)
return ret;
- path = basprintf("%s/extlinux/extlinux.conf", rootpath);
- ret = stat(path, &s);
+ cfgpath = basprintf("%s/extlinux/extlinux.conf", rootpath);
+ ret = stat(cfgpath, &s);
if (!ret && S_ISREG(s.st_mode))
- ret = _extlinux_scan_file(scanner, bootentries, path, rootpath);
- free(path);
+ ret = _extlinux_scan_file(scanner, bootentries, cfgpath, rootpath);
+ free(cfgpath);
return ret;
}
--
2.47.3
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] extlinux: make variable name consistent
2026-08-28 10:40 [PATCH] extlinux: make variable name consistent Sascha Hauer
@ 2026-08-31 7:09 ` Sascha Hauer
0 siblings, 0 replies; 2+ messages in thread
From: Sascha Hauer @ 2026-08-31 7:09 UTC (permalink / raw)
To: Barebox List, Sascha Hauer
On Fri, 28 Aug 2026 12:40:59 +0200, Sascha Hauer wrote:
> Throughout the extlinux support the path to an extlinux config file is
> used, but the variable is named abspath, configname or just path in
> different functions. Consistently name the variable cfgpath for better
> readability.
>
>
Applied, thanks!
[1/1] extlinux: make variable name consistent
https://git.pengutronix.de/cgit/barebox/commit/?id=c9ba11b5ad0c (link may not be stable)
Best regards,
--
Sascha Hauer <s.hauer@pengutronix.de>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-08-31 7:11 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-08-28 10:40 [PATCH] extlinux: make variable name consistent Sascha Hauer
2026-08-31 7:09 ` Sascha Hauer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox