Displaying 8 results from an estimated 8 matches for "no_dtb_dir".
2014 Apr 28
2
Re: [supermin] Be smarter about finding suitable kernel images
* Richard W.M. Jones:
> On Sat, Apr 26, 2014 at 02:27:07PM +0200, Hilko Bengen wrote:
>> ---
>> src/kernel.ml | 43 ++++++++++++++++++++++++++++---------------
>> 1 file changed, 28 insertions(+), 15 deletions(-)
>>
>> diff --git a/src/kernel.ml b/src/kernel.ml
>> index ed5aea3..436b1b0 100644
>> --- a/src/kernel.ml
>> +++ b/src/kernel.ml
2014 Jun 03
2
Re: libguestfs supermin error
Hi Rich
But there is no src/kernel.ml file on my ubuntu powerpc to which the
above patch is reffering.
I have installed supermin as supermin_5.1.8-2_powerpc.deb debian package.
Thanks
On Tue, Jun 3, 2014 at 7:16 PM, Richard W.M. Jones <rjones@redhat.com>
wrote:
> On Tue, Jun 03, 2014 at 06:55:49PM +0530, abhishek jain wrote:
> > supermin: failed to find a suitable kernel
2014 Jun 04
2
Re: libguestfs supermin error
...gt; %s\n%!"
> dtb_file;
> dtb_file
> with Not_found ->
> (* Replace vmlinuz- with dtb- *)
> if not (string_prefix "vmlinuz-" kernel_name) &&
> not (string_prefix "vmlinuz-" kernel_name) then
> no_dtb_dir kernel_name;
> let dtb_dir =
> try
> List.find dir_exists (
> List.map (fun prefix ->
> prefix ^ String.sub kernel_name 8 (String.length
> kernel_name - 8)
> ) ["/boot/dtb-"; "/usr/lib/linux-image-&...
2016 Dec 07
5
[PATCH 0/3] Miscellaneous improvements to supermin.
Document what each module does, using *.mli files.
Remove the --dtb option, it's obsolete.
Rename modules according to their purpose.
Rich.
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
2016 Feb 18
0
[PATCH 3/3] Add and use an helper error function
...1
+supermin use, you shouldn't boot the Xen guest with it)."
+ host_cpu
and find_dtb debug copy_kernel kernel_name wildcard dtb =
let dtb_file =
@@ -180,27 +179,25 @@ and find_dtb debug copy_kernel kernel_name wildcard dtb =
copy_or_symlink_file copy_kernel dtb_file dtb
and no_dtb_dir kernel_name =
- eprintf "\
-supermin: failed to find a dtb (device tree) directory.
+ error "\
+failed to find a dtb (device tree) directory.
I expected to take '%s' and to
replace vmlinuz- with dtb- to form a directory.
You can set SUPERMIN_KERNEL, SUPERMIN_MODULES and S...
2016 Feb 18
4
[PATCH 0/3] supermin: miscellaneous cleanups
Hi,
few cleanups in the supermin codebase; no actual functional change.
Thanks,
--
Pino Toscano (3):
ext2: simplify tracking of visited modules
utils: remove unused run_python function
Add and use an helper error function
src/build.ml | 20 +++++-----------
src/dpkg.ml | 4 +---
src/ext2_initrd.ml | 10 ++++----
src/kernel.ml | 27
2014 Feb 25
2
[PATCH supermin v4] Supermin 5 rewrite.
...);
- if (dtb_env) {
- copy_or_symlink_file ("dtb", dtb_env, dtb);
- return;
- }
-
- assert (dtb); /* command line arg parsing should ensure this */
- assert (kernel != NULL);
-
- /* Replace /vmlinuz- with /dtb- */
- if (strncmp (kernel, "vmlinuz-", 8) != 0) {
- no_dtb_dir:
- fprintf (stderr,
- "supermin-helper: failed to find a dtb (device tree) directory.\n"
- "I expected to take '%s'\n"
- "and replace vmlinuz- with dtb- to form a directory.\n"
- "You can set SUPERMIN_DTB to poin...