Displaying 8 results from an estimated 8 matches for "partboot".
Did you mean:
fastboot
2010 May 10
1
[PATCH node] RESEND: fix iscsi installation problems
...ipts/ovirt-config-storage
@@ -642,7 +642,7 @@ perform_partitioning()
parted "$BOOTDRIVE" -s "mklabel ${LABEL_TYPE}"
parted "$BOOTDRIVE" -s "mkpartfs primary ext2 0M ${boot_size_si}M"
reread_partitions "$BOOTDRIVE"
- partboot="$BOOTDRIVE1"
+ partboot="${BOOTDRIVE}1"
if [ ! -e "$partboot" ]; then
partboot="${BOOTDRIVE}p1"
fi
@@ -817,11 +817,26 @@ do_confirm()
else
return
fi
+ # store networking config since...
2009 Oct 22
0
[PATCH node] merge Root and /boot partitions
...g "Toggling LVM on"
- parted $DRIVE -s "set 4 lvm on"
+ parted $DRIVE -s "set 3 lvm on"
parted $DRIVE -s "print"
udevadm settle 2> /dev/null || udevsettle
@@ -366,12 +356,10 @@ perform_partitioning()
gptsync $DRIVE
fi
- partboot=${DRIVE}1
- partpv=${DRIVE}4
+ partpv=${DRIVE}3
if [ ! -e "$partpv" ]; then
# e.g. /dev/cciss/c0d0p2
- partboot=${DRIVE}p1
- partpv=${DRIVE}p4
+ partpv=${DRIVE}p3
fi
log "Creating physical volume"
if [ ! -e "$partpv&qu...
2010 Mar 31
1
[PATCH node] Handle space in storage wwid
...RIVE"
+ partprobe -s "$BOOTDRIVE"
log "Creating boot partition"
- parted $BOOTDRIVE -s "mklabel ${LABEL_TYPE}"
- parted $BOOTDRIVE -s "mkpartfs primary ext2 0M ${boot_size_si}M"
- reread_partitions $BOOTDRIVE
- partboot=$BOOTDRIVE1
- if [ ! -e $partboot ]; then
- partboot=${BOOTDRIVE}p1
+ parted "$BOOTDRIVE" -s "mklabel ${LABEL_TYPE}"
+ parted "$BOOTDRIVE" -s "mkpartfs primary ext2 0M ${boot_size_si}M"
+ reread_partitions "$BOOTDRI...
2010 Apr 09
0
[PATCH node] fix iscsi installation problems
...ipts/ovirt-config-storage
@@ -624,7 +624,7 @@ perform_partitioning()
parted "$BOOTDRIVE" -s "mklabel ${LABEL_TYPE}"
parted "$BOOTDRIVE" -s "mkpartfs primary ext2 0M ${boot_size_si}M"
reread_partitions "$BOOTDRIVE"
- partboot="$BOOTDRIVE1"
+ partboot="${BOOTDRIVE}1"
if [ ! -e "$partboot" ]; then
partboot="${BOOTDRIVE}p1"
fi
@@ -794,11 +794,26 @@ do_confirm()
else
return
fi
+ # store networking config since...
2009 Sep 30
1
[PATCH node] split root filesystems out of HostVG and onto their own partitions
...1 boot on"
log "Toggling LVM on"
- parted $DRIVE -s "set 2 lvm on"
+ parted $DRIVE -s "set 4 lvm on"
parted $DRIVE -s "print"
udevadm settle 2> /dev/null || udevsettle
@@ -356,11 +367,11 @@ perform_partitioning()
fi
partboot=${DRIVE}1
- partpv=${DRIVE}2
+ partpv=${DRIVE}4
if [ ! -e "$partpv" ]; then
# e.g. /dev/cciss/c0d0p2
partboot=${DRIVE}p1
- partpv=${DRIVE}p2
+ partpv=${DRIVE}p4
fi
log "Creating physical volume"
if [ ! -e "$partpv&qu...
2010 Feb 24
5
New Storage related patches
This set of patches introduces support for multipath devices for
storage. Comments and suggestions are appreciated.
Mike
2009 Sep 30
0
[PATCH node] RESEND: split root file systems out of HostVG onto separate partitions
...$DRIVE -s "set 2 lvm on"
+ parted $DRIVE -s "set 4 lvm on"
parted $DRIVE -s "print"
udevadm settle 2> /dev/null || udevsettle
if [[ "$DRIVE" =~ "^/dev/mapper" ]]; then
@@ -550,11 +561,11 @@ perform_partitioning()
fi
partboot=${DRIVE}1
- partpv=${DRIVE}2
+ partpv=${DRIVE}4
if [ ! -e "$partpv" ]; then
# e.g. /dev/cciss/c0d0p2
partboot=${DRIVE}p1
- partpv=${DRIVE}p2
+ partpv=${DRIVE}p4
fi
log "Creating physical volume"
if [ ! -e "$partpv&qu...
2010 Oct 22
0
[PATCH node] First draft of replacing some of the ovirt-config-* scripts with python equivalents.
...ot partition")
+ os.system("parted \"%s\" -s \"mklabel %s\"") % (BOOTDRIVE, LABEL_TYPE)
+ os.system("parted \"%s\" -s \"mkpartfs primary ext2 0M %sM") % (BOOTDRIVE, boot_size_si)
+ reread_partitions(BOOTDRIVE)
+ partboot= BOOTDRIVE + "1"
+ if not os.path.exists(partboot):
+ partboot = BOOTDRIVE + "p1"
+ # sleep to ensure filesystems are created before continuing
+ time.sleep("10")
+ os.system("mke2fs \"%s\" -L Boot") % partboot...