search for: supermin_dtb

Displaying 11 results from an estimated 11 matches for "supermin_dtb".

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
...alled, try installing a fullvirt kernel (only for > supermin use, you shouldn't boot the Xen guest with it).\n" > host_cpu; > exit 1 > > and find_dtb debug copy_kernel kernel_name wildcard dtb = > let dtb_file = > try > let dtb_file = getenv "SUPERMIN_DTB" in > if debug >= 1 then > printf "supermin: kernel: SUPERMIN_DTB environment variable = > %s\n%!" > dtb_file; > dtb_file > with Not_found -> > (* Replace vmlinuz- with dtb- *) > if not (string_prefix "v...
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 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.
2015 Mar 04
0
Re: supermin on arm
...s check. Can you see if supermin works if you set some variation of: export SUPERMIN_KERNEL=/boot/vmlinuz-<version>.lpae export SUPERMIN_KERNEL_VERSION=<version> export SUPERMIN_MODULES=/lib/modules/<version>.lpae which should bypass the check. You might also need to set SUPERMIN_DTB to point to a DTB, or maybe not if qemu is generating device trees correctly on ARM 32 bit these days. Roll on aarch64 :-) Rich. -- Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones Read my programming and virtualization blog: http://rwmj.wordpress.com virt-top is ...
2013 Sep 08
1
libguestfs on ARM
...rom git To use KVM: - Cortex-A15 hardware that boots into Hyp mode - host kernel >= 3.11 with LPAE + KVM support (You can also use regular ARM hardware w/o KVM support, or qemu.) If you need different host and appliance kernels, then set SUPERMIN_KERNEL to point to the appliance vmlinuz and SUPERMIN_DTB to point to the device tree file called 'vexpress-v2p-ca9.dtb'. If host kernel == appliance kernel (as on x86), then you shouldn't need to set any environment variables. It's expected that some tests in the libguestfs test suite will fail. I'm working on fixing those. However...
2016 Feb 18
0
[PATCH 3/3] Add and use an helper error function
...r 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 SUPERMIN_DTB -to override automatic selection. See supermin(1).\n" - kernel_name; - exit 1 +to override automatic selection. See supermin(1)." + kernel_name and no_dtb dtb_dir wildcard = - eprintf "\ -supermin: failed to find a matching device tree. + error "\ +failed to find a...
2015 Jul 14
1
[PATCH] docs: Use F<> for filenames instead of C<>
.../boot/vmlinuz-3.0.x86_64> +eg. F</boot/vmlinuz-3.0.x86_64> =item SUPERMIN_MODULES This specifies the kernel modules directory to use. The environment variable should point to a module directory, -eg. C</lib/modules/3.0.x86_64/> +eg. F</lib/modules/3.0.x86_64/> =item SUPERMIN_DTB -- 2.1.0
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
2015 Mar 04
3
supermin on arm
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi all, I was testing oz/imagefactory on 32 bit arm, you have to have kernel-lpae installed to run kvm. while you can have the regular kernel installed also. You end up having the system booting the regular kernel and you do not get kvm. Ideally supermin will work with the lpae kernel.
2014 Feb 25
2
[PATCH supermin v4] Supermin 5 rewrite.
...h - * matches the 'dtb_wildcard' pattern. Copy the file (or symlink it) to - * 'dtb'. - * - * The dtb directory is formed by replacing "vmlinuz-" at the - * beginning of the 'kernel' filename with "dtb-". - * - * We can override the whole lot by setting $SUPERMIN_DTB. - */ -static void -get_dtb (const char *kernel, const char *dtb_wildcard, const char *dtb) -{ - if (!dtb_wildcard) - return; - - char *dtb_env = getenv ("SUPERMIN_DTB"); - if (dtb_env) { - copy_or_symlink_file ("dtb", dtb_env, dtb); - return; - } - - assert (dtb);...