search for: 2ded14a

Displaying 2 results from an estimated 2 matches for "2ded14a".

Did you mean: 20ed14a7
2012 Aug 30
2
[PATCH v2] daemon: collect list of called external commands
...L, NULL, "udevadm", "settle", NULL); - (void) command (NULL, NULL, "udevsettle", NULL); + (void) command (NULL, NULL, str_udevadm, "settle", NULL); + (void) command (NULL, NULL, str_udevsettle, NULL); } diff --git a/daemon/initrd.c b/daemon/initrd.c index 2ded14a..d9bc0f7 100644 --- a/daemon/initrd.c +++ b/daemon/initrd.c @@ -30,6 +30,9 @@ #include "daemon.h" #include "actions.h" +GUESTFSD_EXT_CMD(str_zcat, zcat); +GUESTFSD_EXT_CMD(str_cpio, cpio); + char ** do_initrd_list (const char *path) { @@ -40,7 +43,7 @@ do_initrd_list (con...
2012 Aug 30
1
[PATCH] collect list of called external commands
...L, NULL, "udevadm", "settle", NULL); - (void) command (NULL, NULL, "udevsettle", NULL); + (void) command (NULL, NULL, str_udevadm, "settle", NULL); + (void) command (NULL, NULL, str_udevsettle, NULL); } diff --git a/daemon/initrd.c b/daemon/initrd.c index 2ded14a..b066a8a 100644 --- a/daemon/initrd.c +++ b/daemon/initrd.c @@ -30,6 +30,9 @@ #include "daemon.h" #include "actions.h" +GUESTFS_EXT_CMD(str_zcat, zcat); +GUESTFS_EXT_CMD(str_cpio, cpio); + char ** do_initrd_list (const char *path) { @@ -40,7 +43,7 @@ do_initrd_list (const...