X-Git-Url: http://git.ozlabs.org/?p=yaboot.git;a=blobdiff_plain;f=second%2Ffile.c;h=a52b664e8900c6e789764c696f5d4e61ab9fab0d;hp=466abf238eae53c3604e32707416753642a4db31;hb=3cbe90093acba116c5fc46beaf50f74c7c8a1b69;hpb=a5eb5ac3f50c7a4d532043dc9006fcf8eaf43c3e diff --git a/second/file.c b/second/file.c index 466abf2..a52b664 100644 --- a/second/file.c +++ b/second/file.c @@ -675,6 +675,9 @@ int open_file(struct boot_fspec_t* spec, struct boot_file_t* file) case FILE_DEVICE_BLOCK: DEBUG_F("device is a block device\n"); return file_block_open(file, spec, spec->part); + case FILE_DEVICE_ISCSI: + DEBUG_F("device is a iSCSI device\n"); + return file_block_open(file, spec, spec->part); case FILE_DEVICE_NET: DEBUG_F("device is a network device\n"); return file_net_open(file, spec);