search for: bootparam

Displaying 20 results from an estimated 372 matches for "bootparam".

2010 May 04
2
[PATCH node] save all not-parsed boot parameters
.../scripts/ovirt-early +++ b/scripts/ovirt-early @@ -426,13 +426,13 @@ start_ovirt_early () { i=${i#collectd=} eval $(printf $i|awk -F: '{print "collectd_server="$1; print "collectd_port="$2;}') ;; - console=*) - bootparams="$bootparams $i" - ;; ovirt_early=*) i=${i#ovirt_early=} ovirt_early=$(echo $i|tr ",:;" " ") ;; + *) + bootparams="$bootparams $i" + ;; esac done...
2011 Sep 12
1
[PATCH node] handle list of variables to ignore
...20 2011 Alan Pevec <apevec at redhat.com> 2.0.0-1 diff --git a/scripts/ovirt-early b/scripts/ovirt-early index 0f617f7..322e16d 100755 --- a/scripts/ovirt-early +++ b/scripts/ovirt-early @@ -644,7 +644,11 @@ start_ovirt_early () { done ;; *) - bootparams="$bootparams $i" + # check the params to be ignored before adding to bootparams + varname=${i%=*} + if ! grep -qw /etc/ovirt-commandline.d/*; then + bootparams="$bootparams $i" + fi ;; esac do...
2010 Oct 26
0
[PATCH node] add install.py
...cripts/install.py diff --git a/scripts/install.py b/scripts/install.py new file mode 100755 index 0000000..ddffb53 --- /dev/null +++ b/scripts/install.py @@ -0,0 +1,247 @@ +#!/usr/bin/python +# +# install.py - configure local boot/root disk partitions + +# SYNOPSIS +# ovirt-config-boot livecd_path bootparams reboot +# +# livecd_path - where livecd media is mounted, +# parent of LiveOS and isolinux folders +# default is /live +# +# bootparams - extra boot parameters like console=... +# default is $OVIRT_BOOTPARAMS +# +# rebo...
2009 Nov 16
3
[PATCH] Add support for vendor hooks during ovirt-early start()
...les changed, 59 insertions(+), 1 deletions(-) create mode 100644 scripts/ovirt-vendor.sample diff --git a/scripts/ovirt-early b/scripts/ovirt-early index cdd4afd..7683948 100755 --- a/scripts/ovirt-early +++ b/scripts/ovirt-early @@ -369,9 +369,27 @@ start() { console=*) bootparams="$bootparams $i" ;; + vendor=*) + i=${i#vendor=} + # path to vendor script: + # has 2 stages: + # vendor_pre_hook() + # vendor_post_host() + # pre_hook runs after cmdline processing but before t...
2009 May 31
1
Fwd: BUG: Documentation/lguest/lguest.c bad paths for includes cause make to fail
...n <ak at suse.de>, Thomas Gleixner <tglx at linutronix.de>, Ingo Molnar <mingo at elte.hu> 2.6.28-rc2-mm1 make fails at Documentation/lguest/lguest.c ?Two includes have bad paths: line 34 #include <zlib.h> (maybe should be linux/zlib.h?), and line 47 #include "asm-x86/bootparam.h" Are incorrect paths related to this recent gitignore of lguest.c (see first cut below)? asm-x86 has no bootparam.h; is this related to 2007 mm-commit list concerning "allow asm-x86 to be included from userspace?" (see second cut below) ---BEGIN CUT ABOUT gitignore OF lguest.c--...
2009 May 31
1
Fwd: BUG: Documentation/lguest/lguest.c bad paths for includes cause make to fail
...n <ak at suse.de>, Thomas Gleixner <tglx at linutronix.de>, Ingo Molnar <mingo at elte.hu> 2.6.28-rc2-mm1 make fails at Documentation/lguest/lguest.c ?Two includes have bad paths: line 34 #include <zlib.h> (maybe should be linux/zlib.h?), and line 47 #include "asm-x86/bootparam.h" Are incorrect paths related to this recent gitignore of lguest.c (see first cut below)? asm-x86 has no bootparam.h; is this related to 2007 mm-commit list concerning "allow asm-x86 to be included from userspace?" (see second cut below) ---BEGIN CUT ABOUT gitignore OF lguest.c--...
2007 Jun 15
1
[PATCH RFC] add domain builder support for bzImage kernels
...hat %esi point to the boot_params block on entry. Unfortunately this conflicts with the normal Xen boot protocol, which starts with %esi pointing to a struct start_info. In order to implement this, I've had to muck up Gerd's nice clean layering a little bit. struct xc_dom_image now has a bootparams_pfn, which is set by the bzImage loader. Then, when xc_dom_x86 sees that its non-NULL when setting up the initial vcpu state, it points %esi that rather than start_info (and the boot_params contains a pointer to start_info). Fortunately, the embedded ELF file makes it easy to reuse a lot of the...
2013 Sep 06
0
[PATCH RESEND v3 0/7] Enable Drivers for Intel MIC X100 Coprocessors.
...smpt_info->entry[i].ref_count); + " ", i, smpt_info->entry[i].dma_addr, + smpt_info->entry[i].ref_count); } spin_unlock_irqrestore(&smpt_info->smpt_lock, flags); } @@ -202,18 +202,17 @@ static int mic_dp_show(struct seq_file *s, void *pos) struct mic_bootparam *bootparam = mdev->dp; int i, j; - seq_printf(s, "Bootparam: magic 0x%x\n", - bootparam->magic); + seq_printf(s, "Bootparam: magic 0x%x\n", bootparam->magic); seq_printf(s, "Bootparam: h2c_shutdown_db %d\n", - bootparam->h2c_shutdown_db); + boot...
2007 Jun 15
1
[PATCH RFC] add domain builder support for bzImage kernels
...hat %esi point to the boot_params block on entry. Unfortunately this conflicts with the normal Xen boot protocol, which starts with %esi pointing to a struct start_info. In order to implement this, I've had to muck up Gerd's nice clean layering a little bit. struct xc_dom_image now has a bootparams_pfn, which is set by the bzImage loader. Then, when xc_dom_x86 sees that its non-NULL when setting up the initial vcpu state, it points %esi that rather than start_info (and the boot_params contains a pointer to start_info). Fortunately, the embedded ELF file makes it easy to reuse a lot of the...
2007 Jun 15
1
[PATCH RFC] add domain builder support for bzImage kernels
...hat %esi point to the boot_params block on entry. Unfortunately this conflicts with the normal Xen boot protocol, which starts with %esi pointing to a struct start_info. In order to implement this, I've had to muck up Gerd's nice clean layering a little bit. struct xc_dom_image now has a bootparams_pfn, which is set by the bzImage loader. Then, when xc_dom_x86 sees that its non-NULL when setting up the initial vcpu state, it points %esi that rather than start_info (and the boot_params contains a pointer to start_info). Fortunately, the embedded ELF file makes it easy to reuse a lot of the...
2013 Sep 05
0
[PATCH RESEND v3 3/7] Intel MIC Host Driver, card OS state management.
...ready(mdev)) + return; + /* + * Resets typically take 10s of seconds to complete. + * Since an MMIO read is required to check if the + * firmware is ready or not, a 1 second delay works nicely. + */ + msleep(1000); + } + mic_set_state(mdev, MIC_RESET_FAILED); +} + +/* Initialize the MIC bootparams */ +void mic_bootparam_init(struct mic_device *mdev) +{ + struct mic_bootparam *bootparam = mdev->dp; + + bootparam->magic = MIC_MAGIC; + bootparam->c2h_shutdown_db = mdev->shutdown_db; + bootparam->h2c_shutdown_db = -1; + bootparam->h2c_config_db = -1; + bootparam->shutdown_s...
2009 Sep 26
10
Adding handling for Multipath storage devices
The following patches introduce support for multipath and cciss devices to the ovirt-node and node-image. Comments are appreciated. These patches assume that the 3 patches (2 node, 1 node-image) from Joey are all incorporated. Mike
2013 Nov 26
1
[PATCH char-misc-linus 4/5] misc: mic: Fix sparse warnings and other endianness issues.
...tch_desc); if (dev) { if (remove) iowrite8(MIC_VIRTIO_PARAM_DEV_REMOVE, diff --git a/drivers/misc/mic/host/mic_boot.c b/drivers/misc/mic/host/mic_boot.c index 7558d91..b75c6b5 100644 --- a/drivers/misc/mic/host/mic_boot.c +++ b/drivers/misc/mic/host/mic_boot.c @@ -62,7 +62,7 @@ void mic_bootparam_init(struct mic_device *mdev) { struct mic_bootparam *bootparam = mdev->dp; - bootparam->magic = MIC_MAGIC; + bootparam->magic = cpu_to_le32(MIC_MAGIC); bootparam->c2h_shutdown_db = mdev->shutdown_db; bootparam->h2c_shutdown_db = -1; bootparam->h2c_config_db = -1; di...
2013 Nov 26
1
[PATCH char-misc-linus 4/5] misc: mic: Fix sparse warnings and other endianness issues.
...tch_desc); if (dev) { if (remove) iowrite8(MIC_VIRTIO_PARAM_DEV_REMOVE, diff --git a/drivers/misc/mic/host/mic_boot.c b/drivers/misc/mic/host/mic_boot.c index 7558d91..b75c6b5 100644 --- a/drivers/misc/mic/host/mic_boot.c +++ b/drivers/misc/mic/host/mic_boot.c @@ -62,7 +62,7 @@ void mic_bootparam_init(struct mic_device *mdev) { struct mic_bootparam *bootparam = mdev->dp; - bootparam->magic = MIC_MAGIC; + bootparam->magic = cpu_to_le32(MIC_MAGIC); bootparam->c2h_shutdown_db = mdev->shutdown_db; bootparam->h2c_shutdown_db = -1; bootparam->h2c_config_db = -1; di...
2007 Apr 18
2
Time to post some patches?
...like the first series of patches should be OK to post now. I propose that: 001-apply-to-page-range.patch 001a-reboot-use-struct.patch 002-sync-bitops.patch 003-remove-ring0-assumptions.patch 004-abstract-asm.patch 005-cpuid-cleanup.patch unfix-fixmap.patch fixmap-bootparam.patch remove-read-hazard-from-cow.patch pte-clear-not-present.patch pgd-free-mm.patch notes-segment.patch are all good candidates for posting. I just went through all these and cleaned them up a bit, mostly by adding Subject: lines and diffstats, but I also merged unfix-fixmap-f...
2013 Nov 27
7
[PATCH char-misc-linus v3 0/6] misc: mic: Fixes for 3.13-final
These patches fix various issues which were reported or found with the MIC driver. Changelog ========= v2 => v3: * Reorder patch 5 in v2 to patch 4 in v3. * Split patch 4 in v2 into patches 5 and 6 in v3. v1 => v2: @ https://lkml.org/lkml/2013/11/26/376 * Address review comments @ https://lkml.org/lkml/2013/11/26/443 in patch 5. v1: Initial post @ https://lkml.org/lkml/2013/11/26/321
2013 Nov 27
7
[PATCH char-misc-linus v3 0/6] misc: mic: Fixes for 3.13-final
These patches fix various issues which were reported or found with the MIC driver. Changelog ========= v2 => v3: * Reorder patch 5 in v2 to patch 4 in v3. * Split patch 4 in v2 into patches 5 and 6 in v3. v1 => v2: @ https://lkml.org/lkml/2013/11/26/376 * Address review comments @ https://lkml.org/lkml/2013/11/26/443 in patch 5. v1: Initial post @ https://lkml.org/lkml/2013/11/26/321
2013 Nov 26
7
[PATCH char-misc-linus 0/5] misc: mic: Fixes for 3.13-rc2
These patches fix various issues which were reported or found with the MIC driver. Ashutosh Dixit (3): misc: mic: Bug fix for sysfs poll usage. misc: mic: Fix sparse warnings and other endianness issues. misc: mic: Fix user space namespace pollution from mic_common.h. Sudeep Dutt (2): misc: mic: Change mic_notify(...) to return true. misc: mic: Minor bug fix in 'retry' loops.
2013 Nov 26
7
[PATCH char-misc-linus 0/5] misc: mic: Fixes for 3.13-rc2
These patches fix various issues which were reported or found with the MIC driver. Ashutosh Dixit (3): misc: mic: Bug fix for sysfs poll usage. misc: mic: Fix sparse warnings and other endianness issues. misc: mic: Fix user space namespace pollution from mic_common.h. Sudeep Dutt (2): misc: mic: Change mic_notify(...) to return true. misc: mic: Minor bug fix in 'retry' loops.
2009 Sep 30
1
[PATCH node] split root filesystems out of HostVG and onto their own partitions
...if [ -e "$live/syslinux" ]; then syslinux=syslinux @@ -146,7 +147,7 @@ set -e\ version=$(rpm -q --qf '%{version}' ovirt-node) release=$(rpm -q --qf '%{release}' ovirt-node) # reorder tty0 to allow both serial and phys console after installation - bootparams="ro root=/dev/HostVG/Root roottypefs=ext3 console=tty0 \ + bootparams="ro root=LABEL=Root roottypefs=ext3 console=tty0 \ $(echo $bootparams | sed s/console=tty0//g)" cat > /boot/grub/grub.conf << EOF default=0 @@ -176,7 +177,7 @@ EOF umount /l...