Displaying 2 results from an estimated 2 matches for "nr_outputs".
2013 Sep 06
2
[PATCH supermin 0/2] helper: Implement device trees.
This two-part patch for supermin implements device trees (for ARM).
The first patch introduces a more rational way to handle command line
arguments in 'supermin-helper'. See the commit message for details.
The old style is still supported for compatibility.
The second patch adds an extra supermin-helper --dtb parameter
specifying a wildcard. A device tree file which matches the
2014 Feb 25
2
[PATCH supermin v4] Supermin 5 rewrite.
...}
- else {
- fprintf (stderr,
- "%s: incorrect output format (-f): must be cpio|ext2|checksum\n",
- argv[0]);
- exit (EXIT_FAILURE);
- }
-
- char **inputs = &argv[optind];
- int nr_inputs;
-
- /* Old-style arguments? */
- if (old_style) {
- int nr_outputs;
-
- if (strcmp (format, "cpio") == 0)
- nr_outputs = 2; /* kernel and appliance (== initrd) */
- else if (strcmp (format, "ext2") == 0)
- nr_outputs = 3; /* kernel, initrd, appliance */
- else if (strcmp (format, "checksum")...