Displaying 2 results from an estimated 2 matches for "needs_initrd".
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.
...V':
- printf (PACKAGE_NAME " " PACKAGE_VERSION "\n");
- exit (EXIT_SUCCESS);
-
- default:
- usage (stderr, argv[0]);
- exit (EXIT_FAILURE);
- }
- }
-
- /* Select the correct writer module. */
- struct writer *writer;
- bool needs_kernel;
- bool needs_initrd;
- bool needs_appliance;
-
- bool needs_dtb = dtb_wildcard != NULL;
-
- if (strcmp (format, "cpio") == 0) {
- writer = &cpio_writer;
- needs_kernel = true;
- needs_initrd = true;
- needs_appliance = false;
- }
- else if (strcmp (format, "ext2") == 0) {
-...