Displaying 4 results from an estimated 4 matches for "kernel_out".
2011 Feb 17
1
vanilla kernel configuration :: xconfig --> qt errors
Hi! It seems that i made some changes that make xconfig to not work ..
the problem is that not matter what QTDIR i select i receive the same
errors that start with :
adrian at sevcenco: linux-2.6.37 $ make O=/home/adrian/kernel/kernel_out
xconfig
GEN /home/adrian/kernel/kernel_out/Makefile
HOSTCXX scripts/kconfig/qconf.o
/usr/lib64/qt4/include/Qt3Support/q3toolbar.h:45: error:
'Qt::ToolBarDock' has not been declared
/usr/lib64/qt4/include/Qt3Support/q3toolbar.h:45: error: 'DockTop' is
not a member of 'Qt&...
2015 Jun 12
0
[PATCH 2/3] get-kernel: add --unversioned-names
...t fn = Filename.basename fn in
+ if unversioned then fst (string_split "-" fn)
+ else fn in
+
(* Download the latest. *)
let outputdir =
match output with
| None -> Filename.current_dir_name
| Some dir -> dir in
let kernel_in = List.hd kernels in
- let kernel_out = outputdir // Filename.basename kernel_in in
+ let kernel_out = outputdir // dest_filename kernel_in in
printf "download: %s -> %s\n%!" kernel_in kernel_out;
g#download kernel_in kernel_out;
if initrds <> [] then (
let initrd_in = List.hd initrds in
- let ini...
2015 Jun 11
2
[PATCH] (Almost) new tool: virt-get-kernel
...List.sort compare_version initrds) in
-
- if kernels = [] then
- error (f_"no kernel found");
-
- (* Download the latest. *)
- let outputdir =
- match output with
- | None -> Filename.current_dir_name
- | Some dir -> dir in
- let kernel_in = List.hd kernels in
- let kernel_out = outputdir // Filename.basename kernel_in in
- printf "download: %s -> %s\n%!" kernel_in kernel_out;
- g#download kernel_in kernel_out;
-
- if initrds <> [] then (
- let initrd_in = List.hd initrds in
- let initrd_out = outputdir // Filename.basename initrd_in in
- p...
2015 Sep 01
3
[PATCH 1/3] get-kernel: split command line handling in own function
Simple refactoring, no actual behaviour changes.
---
get-kernel/get_kernel.ml | 188 ++++++++++++++++++++++++-----------------------
1 file changed, 95 insertions(+), 93 deletions(-)
diff --git a/get-kernel/get_kernel.ml b/get-kernel/get_kernel.ml
index 8ca7ca0..3b27740 100644
--- a/get-kernel/get_kernel.ml
+++ b/get-kernel/get_kernel.ml
@@ -23,104 +23,106 @@ module G = Guestfs
open Printf