Changeset 1302 in MondoRescue
- Timestamp:
- Apr 15, 2007, 1:57:44 AM (18 years ago)
- Location:
- branches/stable
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/stable/mindi/README.pxe
r803 r1302 11 11 label mondo 12 12 kernel vmlinuz-mondo 13 append initrd=initrd-mondo load_ramdisk=1 prompt_ramdisk=0 ramdisk_size= 36864rw root=/dev/ram iso_mode acpi=off apm=off devfs=nomount exec-shield=0 pxe [prefix=machine] [ipconf=(ipdev:ipadr:netmask:broadcast:gateway|ipdev:dhcp)] [nfsmount=server:mountpoint] [ping=#] ...13 append initrd=initrd-mondo load_ramdisk=1 prompt_ramdisk=0 ramdisk_size=65535 rw root=/dev/ram iso_mode acpi=off apm=off devfs=nomount exec-shield=0 pxe [prefix=machine] [ipconf=(ipdev:ipadr:netmask:broadcast:gateway|ipdev:dhcp)] [nfsmount=server:mountpoint] [ping=#] ... 14 14 15 15 ipdev is the device name (e.g. eth2) -
branches/stable/mindi/distributions/conf/mindi.conf.dist
r1281 r1302 114 114 mindi_tape_mods="ht st osst ide-tape ide_tape" 115 115 mindi_floppy_mods="ide-floppy floppy" 116 mindi_net_mods="sunrpc nfs nfs_acl lockd loop mii 3c59x e100 bcm5700 bnx2 e1000 eepro100 ne2k-pci tg3 pcnet32 8139cp 8139too 8390 vmxnet vmnet"116 mindi_net_mods="sunrpc nfs nfs_acl lockd fscache loop mii 3c59x e100 bcm5700 bnx2 e1000 eepro100 ne2k-pci tg3 pcnet32 8139cp 8139too 8390 vmxnet vmnet" 117 117 mindi_extra_mods="vfat fat loop md-mod linear raid0 raid1 xor raid5 raid456 lvm-mod dm-mod dm-snapshot dm-zero dm-mirror jfs xfs xfs_support pagebuf reiserfs ext2 ext3 minix nfs nfs_acl nfsd lockd sunrpc jbd mbcache" 118 118 # -
branches/stable/mondo/src/common/libmondo-archive.c
r1256 r1302 2098 2098 if (!does_file_exist(bigfile_fname)) { 2099 2099 ftmp = fopen(bigfile_fname, "w"); 2100 paranoid_fclose(ftmp); 2100 if (ftmp == NULL) { 2101 mr_msg(3, "Unable to write to %s", bigfile_fname); 2102 // So skip it as it doesn't exist 2103 continue; 2104 } else { 2105 paranoid_fclose(ftmp); 2106 } 2101 2107 delete_when_done = TRUE; 2102 2108 } else { -
branches/stable/mondo/src/common/libmondo-mountlist.c
r1297 r1302 411 411 412 412 for (curr_part_no = 1; curr_part_no < 99; curr_part_no++) { 413 if ((strstr(device, "/cciss/") != NULL) || 414 (strstr(device, "/ataraid/") != NULL) || 415 (strstr(device, "/ida/") != NULL) || 416 (strstr(device, "/rd/") != NULL)) { 417 mr_asprintf(&device, "%sp%d", drive, curr_part_no); 418 sprintf(device, "%sp%d", drive, curr_part_no); 419 } else { 420 mr_asprintf(&device, "%s%d", drive, curr_part_no); 421 } 413 malloc_string(device); 414 build_partition_name(device, drive, curr_part_no); 422 415 pos = find_device_in_mountlist(mountlist, device); 423 416 if (pos < 0) { 424 continue;425 }426 if (physical_drive_size < 0) {427 mr_asprintf(&tmp, " %s refers to non-existent hardware.", device);428 log_it(tmp);429 strcat(flaws_str, tmp);430 res++;431 mr_free(tmp);432 417 continue; 433 418 }
Note:
See TracChangeset
for help on using the changeset viewer.