search for: bootdev

Displaying 20 results from an estimated 42 matches for "bootdev".

2009 Jul 16
1
[PATCH node-image] Removes the explicit setting of the emulator for testing.
...h +++ b/autotest.sh @@ -270,7 +270,6 @@ define_node () { # flexible options # define defaults, then allow the caller to override them as needed local arch=$(uname -i) - local emulator=$(which qemu-kvm) local serial="true" local vncport="-1" local bootdev='hd' @@ -281,7 +280,7 @@ define_node () { if [ -n "$options" ]; then eval "$options"; fi debug "define_node ()" - for var in filename nodename memory harddrive cddrive bridge options arch emulator serial vncport bootdev; do + for var in filena...
2017 Nov 01
2
Kickstart ksdevice question
On 11/01/2017 01:57 PM, Tristan Hoar wrote: > > Strictly speaking it is depricated > https://anaconda-installer.readthedocs.io/en/latest/boot-options.html#d > eprecated-options > > Regards, > > Tris > Okay, so it looks like I can simply change ksdevice=eth0? to bootdev=eth0, correct? -- Mark Haney Network Engineer at NeoNova 919-460-3330 option 1 mark.haney at neonova.net www.neonova.net
2017 Nov 01
2
Kickstart ksdevice question
On 11/01/2017 03:25 PM, Chris Adams wrote: > Once upon a time, Mark Haney <mark.haney at neonova.net> said: >> Okay, so it looks like I can simply change ksdevice=eth0? to >> bootdev=eth0, correct? > I believe you can just leave both off (IIRC for CentOS 6 as well) if you > add "ipappend 2" to the pxelinux stanza. > I probably should have clarified that we're not using PXE and probably won't for the forseeable future.? This is just a simple netinstal...
2017 Jul 10
7
[PATCH 0/5] various improvements for make-template.mk
Hi, this series improves the generation of Debian templates, automating basically almost all the steps needed. Also, it fixes the generation of aarch64 images with NVRAM, which is currently removed too soon, and thus not saved and compressed. Thanks, Pino Toscano (5): builder: templates: update Debian preseed from Stretch builder: templates: generalize debian location builder: templates:
2018 Nov 14
0
[PATCH v2] test-data: Allow tests to be run when Btrfs is not available.
...); + + open (my $fstab, '>', "fedora.fstab") or die; + print $fstab <<EOF; LABEL=BOOT /boot ext2 default 0 0 LABEL=ROOT / btrfs subvol=root 0 0 LABEL=ROOT /home btrfs subvol=home 0 0 EOF - close ($fstab) or die; + close ($fstab) or die; - $bootdev = '/dev/sda1'; + $bootdev = '/dev/sda1'; - $g->disk_create ("fedora-btrfs.img-t", "raw", $IMAGE_SIZE); + $g->disk_create ("fedora-btrfs.img-t", "raw", $IMAGE_SIZE); - $g->add_drive ("fedora-btrfs.img-t&quo...
2018 Nov 14
1
[PATCH] test-data: Allow tests to be run when Btrfs is not available.
...( # 32k blank space ); -my @images; +# Test features. my $g = Sys::Guestfs->new (); +$g->add_drive ("/dev/null"); +$g->launch (); +my $btrfs_available = $g->feature_available (["btrfs"]); +$g->close (); + +my @images; +$g = Sys::Guestfs->new (); my $bootdev; @@ -122,7 +129,17 @@ EOF init_lvm_root ('/dev/md/rootdev'); } -elsif ($ENV{LAYOUT} eq 'btrfs') { +elsif ($ENV{LAYOUT} eq 'btrfs' && !$btrfs_available) { + # Btrfs not available, create an empty image. + push (@images, "fedora-btrfs.img"); + + un...
2018 Nov 14
2
[PATCH v2] test-data: Allow tests to be run when Btrfs is not available.
v2: - Moved the btrfs available test into the subclause where it is used. Note I got tired of fighting emacs indentation mode and I pushed a whitespace only patch which fixes the indentation to be 4 spaces instead of 2 spaces: https://github.com/libguestfs/libguestfs/commit/df54c75d4c53ed580e5269306e11e0758d169452 This v2 patch requires that one. Rich.
2013 Apr 29
3
[PATCH] Fix make-fedora-img for btrfs minimum size
This first factors out all the partition sizing, and then resizes the images created to be 1GB instead of 512MB, to work around a size limitation with btrfs: mkfs_btrfs: /dev/vda2: device /dev/vda2 is too small (must be at least 256 MB)
2011 Nov 23
8
[PATCH 0/8] Add MD inspection support to libguestfs
This series fixes inspection in the case that fstab contains references to md devices. I've made a few changes since the previous posting, which I've summarised below. [PATCH 1/8] build: Create an MD variant of the dummy Fedora image I've double checked that no timestamp is required in the Makefile. The script will not run a second time to build fedora-md2.img. [PATCH 2/8] build:
2013 Feb 12
7
Remaining btrfs patches
[PATCH 1/7] mount: Add mount_vfs_nochroot This is significantly reworked from before. umount is gone as discussed, and variable motion is minimised. [PATCH 2/7] btrfs: Update btrfs_subvolume_list to take Already provisionally ACKed. Previous comment was that cleanup could be tidier. I looked into creating a new cleanup function for fs_buf, but it isn't possible (or simple, anyway) in this
2015 Oct 27
3
Still fighting localboot on EFI - looping
...omatically selecting this? More details: * The local disks were first in the boot order. NICs (more than one) were at the bottom of the boot order. * This is a "one time boot" from PXE. Same whether I choose network boot from the console (F12 on a ProLiant) or via a remote IPMI "bootdev pxe" sort of control. * I've tried reordering the boot order. See below. > >> Here's what I've tried so far: > > Did you try inserting another boot selection after PXE, even if it's a > repeat like CD? My current theory is it's either a bug in Syslin...
2012 Feb 27
4
[PATCH 0/4] Add various ntfs* tools and unify label setting.
This miscellaneous patch adds bindings for: - ntfsfix - ntfsclone - ntfslabel and unifies filesystem label setting through a single API 'set-label' which replaces 'set-e2label' and is also able to set labels on NTFS using the ntfslabel program. 'ntfsfix' has been added as a possible way to fix RHBZ#797760. However I have not found a way to fully fix this bug. See
2015 Oct 28
0
Still fighting localboot on EFI - looping
...t; > More details: > * The local disks were first in the boot order. NICs (more than one) > were at the bottom of the boot order. > * This is a "one time boot" from PXE. Same whether I choose network > boot from the console (F12 on a ProLiant) or via a remote IPMI "bootdev > pxe" sort of control. > * I've tried reordering the boot order. See below. > >> >>> Here's what I've tried so far: >> >> Did you try inserting another boot selection after PXE, even if it's a >> repeat like CD? My current theory is...
2017 Nov 01
0
Kickstart ksdevice question
Once upon a time, Mark Haney <mark.haney at neonova.net> said: > Okay, so it looks like I can simply change ksdevice=eth0? to > bootdev=eth0, correct? I believe you can just leave both off (IIRC for CentOS 6 as well) if you add "ipappend 2" to the pxelinux stanza. -- Chris Adams <linux at cmadams.net>
2017 Nov 01
0
Kickstart ksdevice question
Once upon a time, Mark Haney <mark.haney at neonova.net> said: > On 11/01/2017 03:25 PM, Chris Adams wrote: > >Once upon a time, Mark Haney <mark.haney at neonova.net> said: > >>Okay, so it looks like I can simply change ksdevice=eth0? to > >>bootdev=eth0, correct? > >I believe you can just leave both off (IIRC for CentOS 6 as well) if you > >add "ipappend 2" to the pxelinux stanza. > > > I probably should have clarified that we're not using PXE and > probably won't for the forseeable future.? This is j...
2010 Mar 26
3
[PATCH node] Update autobuild and autotest scripts for new build structure
...ve=$6 + local bridge=${7-default} + local options=${8-} + local result="" + + # flexible options + # define defaults, then allow the caller to override them as needed + local arch=$(uname -i) + local serial="true" + local vncport="-1" + local bootdev='hd' + + # first destroy the node + destroy_node $nodename + + if [ -n "$options" ]; then eval "$options"; fi + + debug "define_node ()" + for var in filename nodename memory harddrive cddrive bridge options arch serial vncport bootdev; do +eval...
2017 Nov 01
2
Kickstart ksdevice question
...net wrote: | Once upon a time, Mark Haney <mark.haney at neonova.net> said: |> On 11/01/2017 03:25 PM, Chris Adams wrote: |> >Once upon a time, Mark Haney <mark.haney at neonova.net> said: |> >>Okay, so it looks like I can simply change ksdevice=eth0? to |> >>bootdev=eth0, correct? |> >I believe you can just leave both off (IIRC for CentOS 6 as well) if you |> >add "ipappend 2" to the pxelinux stanza. |> > |> I probably should have clarified that we're not using PXE and |> probably won't for the forseeable future.? This...
2005 Sep 20
5
Uniprocessor kernel booted after YUM update
We have Xeon IA32 dual-processor servers running Centos 3.5 in an HPC batch-only compute grid configuration . We have yum update operating automatically with default updates being applied weekly. Because of the workload pattern of long-runing jobs, the servers tend to stay up without a reboot for very long periods. Recently, yum installed an updated kernel 2.4.21-32.0.1.ELsmp; when we got
2013 Feb 07
12
[PATCH 01/12] generator: Add new Mountable argument type
This type is initially identical to Device. --- generator/bindtests.ml | 2 +- generator/c.ml | 7 +++++-- generator/csharp.ml | 6 ++++-- generator/daemon.ml | 4 ++-- generator/erlang.ml | 6 +++--- generator/fish.ml | 8 ++++---- generator/gobject.ml | 11 ++++++----- generator/haskell.ml | 11 +++++++---- generator/java.ml | 10 +++++-----
2014 Oct 22
2
[PATCH] tests: rename $SRCDIR to $srcdir
...t/grub/grub.conf diff --git a/tests/guests/guest-aux/make-fedora-img.pl b/tests/guests/guest-aux/make-fedora-img.pl index 1c23b6d..a693eed 100755 --- a/tests/guests/guest-aux/make-fedora-img.pl +++ b/tests/guests/guest-aux/make-fedora-img.pl @@ -44,7 +44,7 @@ my $g = Sys::Guestfs->new (); my $bootdev; -foreach ('LAYOUT', 'SRCDIR') { +foreach ('LAYOUT', 'srcdir') { defined ($ENV{$_}) or die "Missing environment variable: $_"; } @@ -217,12 +217,12 @@ if (-f "mdadm.tmp.$$") { unlink ("mdadm.tmp.$$") or die; } -$g->uploa...