procd: update modprobe path
authorNathan Hintz <nlhintz@hotmail.com>
Mon, 20 Feb 2017 20:39:11 +0000 (20:39 +0000)
committerFelix Fietkau <nbd@nbd.name>
Tue, 21 Feb 2017 15:13:41 +0000 (16:13 +0100)
Commit 81aeba9b7f619ee1af1a64f355ae8001fa147d03 in LEDE source.git moved
modprobe to the "/sbin" directory.  Update procd with the new path.

Signed-off-by: Nathan Hintz <nlhintz@hotmail.com>
initd/zram.c

index 9fab794acf54eef20b53fe87896438e732a5745a..0e78195ff5ac4b2fca8ae698a48d1055265faa0e 100644 (file)
@@ -53,9 +53,9 @@ static int
 early_insmod(char *module)
 {
        pid_t pid = fork();
+       char *modprobe[] = { "/sbin/modprobe", NULL, NULL };
 
        if (!pid) {
-               char *modprobe[] = { "/usr/sbin/modprobe", NULL, NULL };
                char *path;
                struct utsname ver;
 
@@ -64,12 +64,12 @@ early_insmod(char *module)
                sprintf(path, module, ver.release);
                modprobe[1] = path;
                execvp(modprobe[0], modprobe);
-               ERROR("Can't exec /usr/sbin/modprobe\n");
+               ERROR("Can't exec %s\n", modprobe[0]);
                exit(-1);
        }
 
        if (pid <= 0) {
-               ERROR("Can't exec /usr/sbin/modprobe\n");
+               ERROR("Can't exec %s\n", modprobe[0]);
                return -1;
        } else {
                waitpid(pid, NULL, 0);
@@ -107,10 +107,10 @@ mount_zram_on_tmp(void)
        pid = fork();
        if (!pid) {
                execvp(mkfs[0], mkfs);
-               ERROR("Can't exec /sbin/mkfs.ext4\n");
+               ERROR("Can't exec %s\n", mkfs[0]);
                exit(-1);
        } else if (pid <= 0) {
-               ERROR("Can't exec /sbin/mkfs.ext4\n");
+               ERROR("Can't exec %s\n", mkfs[0]);
                return -1;
        } else {
                waitpid(pid, NULL, 0);