mirror of
https://github.com/torvalds/linux.git
synced 2024-12-26 04:42:12 +00:00
kbuild: add support for reading stdin with gen_init_cpio
Treat an argument of "-" as meaning "read stdin for cpio files" so gen_init_cpio can be piped into. Signed-off-by: Mike Frysinger <vapier@gentoo.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
This commit is contained in:
parent
e99c343f16
commit
f2434ec1e0
@ -498,7 +498,9 @@ int main (int argc, char *argv[])
|
|||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (! (cpio_list = fopen(argv[1], "r"))) {
|
if (!strcmp(argv[1], "-"))
|
||||||
|
cpio_list = stdin;
|
||||||
|
else if (! (cpio_list = fopen(argv[1], "r"))) {
|
||||||
fprintf(stderr, "ERROR: unable to open '%s': %s\n\n",
|
fprintf(stderr, "ERROR: unable to open '%s': %s\n\n",
|
||||||
argv[1], strerror(errno));
|
argv[1], strerror(errno));
|
||||||
usage(argv[0]);
|
usage(argv[0]);
|
||||||
|
Loading…
Reference in New Issue
Block a user