search for: kernel_path

Displaying 7 results from an estimated 7 matches for "kernel_path".

Did you mean: kernel_paths
2013 Nov 07
6
[PATCH 0/4] virt-v2v: Add support for SUSE guest conversions
The following series of patches adds support for converting SUSE guests through virt-v2v. These changes should not impact non-SUSE guest conversions. Mike Latimer (4): Add perl-Bootloader support to grub packages Add conversion support for SUSE guests Add SUSE to capabilities db and conf Add SUSE support documentation lib/Sys/VirtConvert/Converter/Linux.pm | 480
2013 Oct 12
0
Re: [PATCH] virt-v2v: Convert RedHat.pm to Linux.pm - for SUSE support
...# to @user_paths (as a dep app). If so, move it to a new list containing + # both kernel and kernel-base packages to satisfy dependencies, and + # 'install' instead of 'upgrade' the packages. + if (_is_suse_family($g, $root) && (defined($kernel))) { + my @kernel_paths; + push(@kernel_paths, $kernel); + if (@user_paths) { + for my $index (reverse 0 .. scalar(@user_paths-1)) { + if ($user_paths[$index] =~ /(.*\/)kernel/) { + push(@kernel_paths, $user_paths[$index]); + splice(@user_paths...
2013 Oct 11
2
Re: [PATCH] virt-v2v: Convert RedHat.pm to Linux.pm - for SUSE support
...# to @user_paths (as a dep app). If so, move it to a new list containing + # both kernel and kernel-base packages to satisfy dependencies, and + # 'install' instead of 'upgrade' the packages. + if (_is_suse_family($g, $root) && (defined($kernel))) { + my @kernel_paths; + push(@kernel_paths, $kernel); + if (@user_paths) { + for my $index (reverse 0 .. scalar(@user_paths-1)) { + if ($user_paths[$index] =~ /(.*\/)kernel/) { + push(@kernel_paths, $user_paths[$index]); + splice(@user_paths...
2009 Aug 28
1
How to create a windows vm with ganeti2.
...rtyrs.local Architecture (this node): 64bit (x86_64) Default hypervisor: xen-pvm Enabled hypervisors: xen-hvm, xen-pvm Hypervisor parameters: - xen-hvm: nic_type: rtl8139 cdrom_image_path: vnc_bind_address: 0.0.0.0 boot_order: dc pae: True disk_type: ioemu acpi: True - xen-pvm: root_path: /dev/sda1 kernel_path: /boot/initrd-2.6-xenU initrd_path: /boot/initrd-2.6-xenU kernel_args: ro Cluster parameters: - candidate pool size: 10 - master netdev: eth0 - default bridge: eth0 - lvm volume group: xenvg - file storage path: /srv/ganeti/file-storage Default instance parameters: - default: auto_balance: True vcp...
2010 Feb 11
2
RAID, temperature and FAN status manage and monitoring tool for RHEL4 Update 4 ia64 AS Linux
...on MPT SAS host driver Fusion MPT ioctl driver [root at corviewsecondary src]# I have findout the mpt-status source from forum and download the same. During compilation i have getting an error and below or the error message [root at corviewsecondary mpt-status-1.2.0]# make KERNEL_PATH=/usr/src/kernels/2.6.9-42.EL-largesmp-ia64/ gcc -Iincl -Wall -W -O2 -I/usr/src/kernels/2.6.9-42.EL-largesmp-ia64//drivers/message/fusion -I/lib/modules/`uname -r`/build/drivers/message/fusion -I/lib/modules/`uname -r`/source/drivers/message/fusion -o mpt-status mpt-status.c In file inc...
2013 Oct 07
3
Re: [PATCH] virt-v2v: Convert RedHat.pm to Linux.pm - for SUSE support
On Friday, October 04, 2013 09:38:58 AM Matthew Booth wrote: > It's specifically an error if we're attempting to configure virtio, and > there's no detected virtio kernel. It shouldn't have been possible to > get here in that state, hence it's a programmer error. The code below > attempts to install *any* kernel in the case that we aren't configuring >
2009 Jul 31
1
[PATCH] Use grub entries to find Linux kernels
...ny_module; - push @modules, $1; - } - } + # Check we've got a kernel entry + if(defined($grub_kernel)) { + # Parse a kernel path and optional kernel command line + if($grub_kernel =~ /^\s*(\S+)(?:\s+(.*))?$/) { + my $kernel_path = $1; + $config{cmdline} = $2 if defined($2); + + my $kernel = _inspect_linux_kernel($g, $os, "/boot$1"); + + # Check the kernel was recognised + if(defined($kernel)) { + $config{kernel} = $...