diff options
author | Jeremy Kerr <jk@ozlabs.org> | 2007-04-04 19:48:11 +1000 |
---|---|---|
committer | Jeremy Kerr <jk@ozlabs.org> | 2007-04-04 19:48:11 +1000 |
commit | f6de8493cf6645f8da027671f935cf22f8008a1b (patch) | |
tree | 3049a3755292c14d1a1d6987c556b88f405438b0 /devices/yaboot-parser.c | |
parent | 44722ec66794900881347462b6b6f32e430159af (diff) | |
download | talos-petitboot-f6de8493cf6645f8da027671f935cf22f8008a1b.tar.gz talos-petitboot-f6de8493cf6645f8da027671f935cf22f8008a1b.zip |
Remove duplicate prepend_mountpoint() functions.
Replace prepend_mountpoint() with join_paths(), and make it available
to all parsers, instead of duplicating it in each.
Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
Diffstat (limited to 'devices/yaboot-parser.c')
-rw-r--r-- | devices/yaboot-parser.c | 22 |
1 files changed, 4 insertions, 18 deletions
diff --git a/devices/yaboot-parser.c b/devices/yaboot-parser.c index ee1b992..ee14cb1 100644 --- a/devices/yaboot-parser.c +++ b/devices/yaboot-parser.c @@ -86,20 +86,6 @@ make_params(char *label, char *params) return buffer; } -static char *prepend_mountpoint(const char *path) -{ - char *full_path; - - full_path = malloc(strlen(path) + strlen(mountpoint) + 2); - - strcpy(full_path, mountpoint); - if (path[0] != '/') - strcat(full_path, "/"); - strcat(full_path, path); - - return full_path; -} - static int check_and_add_device(struct device *dev) { if (!dev->icon_file) @@ -117,13 +103,13 @@ void process_image(char *label) opt.name = label; cfgopt = cfg_get_strg(label, "image"); - opt.boot_image_file = prepend_mountpoint(cfgopt); + opt.boot_image_file = join_paths(mountpoint, cfgopt); if (cfgopt == defimage) printf("This one is default. What do we do about it?\n"); cfgopt = cfg_get_strg(label, "initrd"); if (cfgopt) - opt.initrd_file = prepend_mountpoint(cfgopt); + opt.initrd_file = join_paths(mountpoint, cfgopt); opt.boot_args = make_params(label, NULL); @@ -145,12 +131,12 @@ static int yaboot_parse(const char *devicepath, const char *_mountpoint) mountpoint = _mountpoint; - filepath = prepend_mountpoint("/etc/yaboot.conf"); + filepath = join_paths(mountpoint, "/etc/yaboot.conf"); fd = open(filepath, O_RDONLY); if (fd < 0) { free(filepath); - filepath = prepend_mountpoint("/yaboot.conf"); + filepath = join_paths(mountpoint, "/yaboot.conf"); fd = open(filepath, O_RDONLY); if (fd < 0) |