search for: drive_typ

Displaying 11 results from an estimated 11 matches for "drive_typ".

Did you mean: drive_type
2009 Jul 10
0
[PATCH node] This is a follow-on patch for bz#507455.
...ge) + debug "list_var=$list_var" + if test -z "$udi_list"; then warn "ERROR: no usable storage devices detected" return 1 fi local d devices sizes + for d in $udi_list; do + debug "Examining $d" local drive_type=$(hal-get-property --udi "$d" --key storage.drive_type) + debug "::drive_type=$drive_type" test "X$drive_type" = Xdisk || continue local block_dev=$(hal-get-property --udi "$d" --key block.device) - # Must start with a '/&...
2009 Jul 01
1
Replacement patch for bz#507455
This patch includes a fix to no longer list devices with 0 bytes of storage, such as removeable media devices with no media present.
2016 Mar 17
1
Questions regarding hostdev scsi
...251NXAGB42213R</name> <path>/sys/devices/pci0000:00/0000:00:1f.2/ata5/host4/target4:0:0/4:0:0:0/block/sdb</path> <parent>scsi_4_0_0_0</parent> <capability type='storage'> <block>/dev/sdb</block> <bus>ata</bus> <drive_type>disk</drive_type> <model>Samsung SSD 850</model> <vendor>ATA</vendor> <serial>Samsung_SSD_850_PRO_256GB_S251NXAGB42213R</serial> <size>256060514304</size> <logical_block_size>512</logical_block_size> <n...
2014 Sep 11
0
trying but failing - pass-through scsi/sata
...7TZVQF1Y3SX</name> <path>/sys/devices/pci0000:00/0000:00:1f.2/ata5/host4/target4:0:0/4:0:0:0/block/sdb</path> <parent>scsi_4_0_0_0</parent> <capability type='storage'> <block>/dev/sdb</block> <bus>ata</bus> <drive_type>disk</drive_type> <model>OCZ-VERTEX4</model> <vendor>ATA</vendor> <serial>OCZ-VERTEX4_OCZ-352C77TZVQF1Y3SX</serial> <size>128035676160</size> <logical_block_size>512</logical_block_size> <num_blocks&gt...
2010 May 13
1
Non-functional replacement...
This patch just includes the repo name in the subject.
2010 May 13
0
[PATCH] Replace the HAL calls with udev/systool calls.
...*-part*' 2>/dev/null) - if test -z "$udi_list" -a -z "$byid_list"; then - warn "ERROR: no usable storage devices detected" - return 1 - fi + local devices="" - local d devices sizes - for d in $udi_list; do - local drive_type=$(hal-get-property --udi "$d" --key storage.drive_type) - test "X$drive_type" = Xdisk || continue - local block_dev=$(hal-get-property --udi "$d" --key block.device) - # Must start with a '/'. - case "$block_dev" in -...
2010 May 14
3
Replacement patch...
This one incorporates feedback from mburns and apevec to ensure that all multipath devices are excluded in the list of available drives. Only drives with an identified bus are included in the list now.
2001 Dec 06
2
Problem report: SHRINKER.ERR, fix to DEVICE_Open/CreateFileA?
...4042ef68): returning TRUE 0806d388:trace:dosfs:DOSFS_GetFullName returning /mnt/dos/windows/000cf6e.tmp = C:\WINDOWS\000cf6e.tmp 0806d388:trace:dosfs:GetDriveTypeA ("C:\\WINDOWS\\000cf6e.tmp") 0806d388: create_file( access=40000000, inherit=0, sharing=00000000, create=1, attrs=00000080, drive_type=3, filename="/mnt/dos/windows/000cf6e.tmp" ) 0806d388: create_file() = 0 { handle=52 } 0806d388:trace:file:FILE_GetTempFileName created C:\WINDOWS\000cf6e.tmp 0806d388: close_handle( handle=52 ) 0806d388: close_handle() = 0 { fd=-1 } 0806d388:trace:dosfs:DOSFS_GetFullName C:\WINDOWS\000...
2008 Jul 28
5
Hardware serial number access from (a) command(s)
Over the weekend, I had to make a technical support call on one of my DVD burners, and at one point the recorded message mentioned I should have my serial number handy. I thought there was a way to read that from at least one piece of software on the system, but I couldn't remember one and man -k on a number of subjects was unrevealing. Can someone enlighten me (us)? Thanks. mhr
2002 Nov 14
0
WIN 3.1 App crashes.. Unhandled Exception
...FS_GetFullName returning /var/lib/wine/drivec/Program Files/Atwin/Atwin.exe = L"C:\\PROG~FBU\\ATWIN\\ATWIN.EXE" 0820ac28:trace:dosfs:GetDriveTypeW (L"C:\\PROG~FBU\\ATWIN\\ATWIN.EXE") 0820ac28: create_file( access=80000000, inherit=0, sharing=00000003, create=3, attrs=00000000, drive_type=3, filename="/var/lib/wine/drivec/Program Files/Atwin/Atwin.exe" ) 0820ac28: create_file() = 0 { handle=0x70 } 0820ac28:trace:file:CreateFileW returning 00000070 0820ac28:trace:file:Win32HandleToDosFileHandle Got 6 for h32 112 0820ac28:trace:file:SetFilePointer handle 112 offset 397824...
2010 Mar 31
1
[PATCH node] Handle space in storage wwid
...- if [ -b "$(readlink -f $device)" ]; then + if [ -b "$(readlink -f "$device")" ]; then eval $return_var="$manual_device" return 0 fi @@ -273,7 +273,7 @@ get_dev_name() test "X$drive_type" = Xdisk || continue local block_dev=$(hal-get-property --udi "$d" --key block.device) # Must start with a '/'. - case $block_dev in + case "$block_dev" in *' '*) # we use space as separator...