Displaying 20 results from an estimated 372 matches for "bootparams".
Did you mean:
  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
     don...
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
+#
+#       reboo...
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 th...
2009 May 31
1
Fwd: BUG: Documentation/lguest/lguest.c bad paths for includes cause make to fail
Pardon my unorganized cc:'s.
---------- Forwarded message ----------
From: Charles 'Mack' Rhinelander <mrhinelander at gmail.com>
Date: Sun, May 31, 2009 at 1:39 AM
Subject: Fwd: BUG: Documentation/lguest/lguest.c bad paths for
includes cause make to fail
To: linux-kernel at vger.kernel.org
Cc: Andrew Morton <akpm at osdl.org>, lguest at ozlabs.org
---------- Forwarded
2009 May 31
1
Fwd: BUG: Documentation/lguest/lguest.c bad paths for includes cause make to fail
Pardon my unorganized cc:'s.
---------- Forwarded message ----------
From: Charles 'Mack' Rhinelander <mrhinelander at gmail.com>
Date: Sun, May 31, 2009 at 1:39 AM
Subject: Fwd: BUG: Documentation/lguest/lguest.c bad paths for
includes cause make to fail
To: linux-kernel at vger.kernel.org
Cc: Andrew Morton <akpm at osdl.org>, lguest at ozlabs.org
---------- Forwarded
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 e...
2013 Sep 06
0
[PATCH RESEND v3 0/7] Enable Drivers for Intel MIC X100 Coprocessors.
Whitespace neatening...
Multiline statement argument alignment.
Argument wrapping.
Use kmalloc_array instead of kmalloc.
---
 drivers/misc/mic/card/mic_virtio.c  | 17 ++++---
 drivers/misc/mic/card/mic_x100.c    |  4 +-
 drivers/misc/mic/host/mic_debugfs.c | 91 ++++++++++++++++++-------------------
 drivers/misc/mic/host/mic_fops.c    |  6 +--
 drivers/misc/mic/host/mic_intr.c    | 37
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 e...
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 e...
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_st...
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.
Endianness issues are now consistent as per the documentation in
host/mic_virtio.h. Note that the host can be both BE or LE whereas the
card is always LE.
Memory space sparse warnings are fixed for now by using __force. This is
sufficient for now since the driver depends on x86 but will need to be
revisited if we support other architectures which treat I/O memory
differently from system memory.
2013 Nov 26
1
[PATCH char-misc-linus 4/5] misc: mic: Fix sparse warnings and other endianness issues.
Endianness issues are now consistent as per the documentation in
host/mic_virtio.h. Note that the host can be both BE or LE whereas the
card is always LE.
Memory space sparse warnings are fixed for now by using __force. This is
sufficient for now since the driver depends on x86 but will need to be
revisited if we support other architectures which treat I/O memory
differently from system memory.
2007 Apr 18
2
Time to post some patches?
Looks to me 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
   
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 /li...