search for: bootdriv

Displaying 14 results from an estimated 14 matches for "bootdriv".

Did you mean: bootdrive
2010 Mar 31
1
[PATCH node] Handle space in storage wwid
...ocal min_data_size=$DATA_SIZE + local min_data_size="$DATA_SIZE" if [ "$DATA_SIZE" = -1 ]; then min_data_size=5 fi @@ -164,7 +164,7 @@ check_partition_sizes() if [ "$OVIRT_ISCSI_ENABLED" == "y" ]; then get_drive_size "$BOOTDRIVE" BOOTDRIVESPACE drive_list="BOOT" - BOOT_NEED_SIZE=$BOOT_SIZE + BOOT_NEED_SIZE="$BOOT_SIZE" else get_drive_size "$ROOTDRIVE" ROOTDRIVESPACE get_drive_size "$HOSTVGDRIVE" HOSTVGDRIVESPACE @@ -172,7 +172,7 @@...
2009 Dec 10
0
[PATCH node] Enables stateless iscsi remote boot
...in_data_size" | bc -l) - - if [ $ROOTDRIVE == $HOSTVGDRIVE ]; then - drive_list="ROOT" - ROOT_NEED_SIZE=$(echo "scale=0; $ROOT_SIZE * 2 + $HOSTVG_NEED_SIZE"| bc -l) + if [ "$OVIRT_ISCSI_ENABLED" == "y" ]; then + get_drive_size $BOOTDRIVE BOOTDRIVESPACE + drive_list="BOOT" + BOOT_NEED_SIZE=$BOOT_SIZE else - drive_list="ROOT HOSTVG" + get_drive_size $ROOTDRIVE ROOTDRIVESPACE + get_drive_size $HOSTVGDRIVE HOSTVGDRIVESPACE + ROOT_NEED_SIZE=$(echo "scale=0; $ROOT_S...
2009 Dec 08
1
[PATCH node] iscsi remote root basework This lays most of the groundwork for iscsi installation and configuration. At this time configuring iscsi is disabled due to multiple issues with dependent pieces.
..._min_size=256 config_min_size=5 logging_min_size=5 @@ -206,6 +206,11 @@ get_dev_name() do_configure() { local name_and_size + if [ "$OVIRT_ISCSI_ENABLED" == "y" ]; then + printf "\n\nPlease select the disk to use for the Boot partition.\n\n" + BOOTDRIVE=$(get_dev_name) || return 0 + get_drive_size $BOOTDRIVE BOOTDRIVESPACE + fi printf "\n\nPlease select the disk to use for the Root.\n\n" ROOTDRIVE=$(get_dev_name) || return 0 get_drive_size $ROOTDRIVE ROOTDRIVESPACE @@ -230,7 +235,12 @@ do_configure() fi...
2010 Mar 17
1
[PATCH][node REPOST] Improve performance of multipath translations
...al mpath_device= + get_dm_device $dm_dev $mpath_device if [ -z "$mpath_device" ]; then mpath_device=$dev @@ -152,12 +164,12 @@ check_partition_sizes() printf "\n" if [ "$OVIRT_ISCSI_ENABLED" == "y" ]; then - get_drive_size $BOOTDRIVE BOOTDRIVESPACE + get_drive_size "$BOOTDRIVE" BOOTDRIVESPACE drive_list="BOOT" BOOT_NEED_SIZE=$BOOT_SIZE else - get_drive_size $ROOTDRIVE ROOTDRIVESPACE - get_drive_size $HOSTVGDRIVE HOSTVGDRIVESPACE + get_drive_size "$ROOT...
2010 May 10
1
[PATCH node] RESEND: fix iscsi installation problems
...exit 99 + fi fi # $1 - the variable name to set diff --git a/scripts/ovirt-config-storage b/scripts/ovirt-config-storage index 9b37035..df36752 100755 --- a/scripts/ovirt-config-storage +++ b/scripts/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 &quo...
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
2010 Apr 09
0
[PATCH node] fix iscsi installation problems
...exit 99 + fi fi # $1 - the variable name to set diff --git a/scripts/ovirt-config-storage b/scripts/ovirt-config-storage index ce9707c..c94c79d 100755 --- a/scripts/ovirt-config-storage +++ b/scripts/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 &quo...
2010 Oct 22
0
[PATCH node] First draft of replacing some of the ovirt-config-* scripts with python equivalents.
...cripts/storage.py @@ -0,0 +1,451 @@ +#!/usr/bin/python +from ovirtfunctions import * +import os +import time +import re +import subprocess +from subprocess import PIPE, STDOUT + + +default_overcommit=0.5 +default_boot_size=50 +default_root_size=256 +default_config_size=5 +default_logging_size=2048 +BOOTDRIVE = "" +RootBackup_end = "" +# -1 indicates data partition should use remaining disk +default_data_size=-1 + +mem_size_cmd = "awk '/MemTotal:/ { print $2 }' /proc/meminfo" +mem_size_mb = subprocess.Popen(mem_size_cmd, shell=True, stdout=PIPE, stderr=STDOUT) +MEM...
2010 Apr 05
1
RESEND: [PATCH node 1/3] enables ability for a common shared root
...printf "Removing HostVG on $dev will erase the drive and cannot be undone\n" @@ -402,6 +418,8 @@ do_configure() if [ "$OVIRT_ISCSI_ENABLED" == "y" ]; then partlist="boot" # swap root config logging data" local space_left=$BOOTDRIVESPACE + elif [ "$OVIRT_ROOT_INSTALL" == "n" ]; then + partlist="swap config logging data" else partlist="swap root config logging data" fi @@ -459,7 +477,7 @@ set /files$OVIRT_DEFAULTS/OVIRT_VOL_LOGGING_SIZE $LOGGING_SIZE set /fi...
2005 Mar 01
3
retrieve drive letter of USB Media.
...mdisk + bootimage, but somehow we want to be able to also access the USB flash disk itself, from a batchfile. Perhaps MEMDISK could not only have the Bootloader_ID (syslinux, and others), but also a disk ID (0x00, 0x80 and so on). Then if diskID was retrieved and is 0x00, we know we booted from a bootdrive which would be A: and currently accessible as B: (because of Memdisk taking A: driveletter). This would at least work for diskette, but I don't have an idea if it would work for USB. Easiest would ofcourse be to fix the FreeDOS bootsector and/or kernel, so that it appears to boot from a 256...
2002 Feb 21
1
long filenames always mangled under dos
...S conventions? Or is there a way to make DOS handle long file names? (Because in a Dos-Prompt under Win98 you always have the long names displayed but not if you boot from a floppy disk.) I'm doing all this because I want to setup a diskless Workstation and have no other Idea of creating a bootdrive without having a harddrive installed on my computer. Thanx a lot in advance, Andr?.
2007 Mar 16
2
Chainloading syslinux from windows
...at do not support USB Boot. They are running Windows 2000 and Windows XP typically from ntfs formatted single partition drives. Is there a way to chainload syslinux residing on a plugged in usb stick from boot.ini? I've seen instructions for how to do this for OSs on alternate partitions of the bootdrive but not on separate drives. The following doesn't seem to work: E:\usboot.bs="USB Boot" where usbboot.bs is the 512 byte syslinux boot sector from the usb stick (saved onto the usb stick with dd). Any help would be appreciated. Thx, Bill
2010 Jul 21
0
[PATCH] RFC: Advanced Storage Configuration
...partitions() create_hostvg() { - log "Creating LVM partition" - - if [ "$ROOTDRIVE" = "$HOSTVGDRIVE" ]; then - parted "$HOSTVGDRIVE" -s "mkpart primary ext2 ${RootBackup_end}M -1" - hostvgpart="3" - elif [ "$BOOTDRIVE" = "$HOSTVGDRIVE" ]; then - parted "$HOSTVGDRIVE" -s "mkpart primary ext2 ${boot_size_si} -1" - hostvgpart="2" - # FIXME : set for gtpsync/parted compat for now - ROOTDRIVE=$BOOTDRIVE - else - parted "$HOSTVGDR...
2008 Dec 12
3
Intel SS4200-E?
Has anyone tried runing zfs on the Intel SS4200-E [1],[[2]? Doesn''t have a video port, but you could replace the IDE flash DOM with a pre-installed system. I''m interested in this as a four disk smallish (34x41x12) portable ZFS appliance. Seems that people have got it running with Linux/Openfiler [3], and the process a Celeron 420 is 64bit. [1]