Chameleon

Chameleon Commit Details

Date:2014-12-31 03:12:00 (9 years 3 months ago)
Author:ErmaC
Commit:2520
Parents: 2519
Message:boot1-install can show ntfs volume (Credits Clover Team)
Changes:
M/trunk/package/Changes.txt
M/trunk/i386/util/boot1-install/boot1-install.c

File differences

trunk/i386/util/boot1-install/boot1-install.c
3535
3636
3737
38
39
3840
3941
4042
......
544546
545547
546548
549
550
551
547552
548553
549554
......
598603
599604
600605
606
607
601608
602609
603610
......
736743
737744
738745
746
739747
740748
741749
......
776784
777785
778786
787
779788
780789
790
781791
782792
783793
_exfat = 1,
_hfs = 2,
_msdos = 3,
_ntfs = 4,
_ext4 = 5,
_other = 255
};
else
*pKind = _other;
break;
case _ntfs:
rc = 0;
break;
default:
break;
}
daVolumeKind = _hfs;
else if (!strcmp(cstr, "msdos"))
daVolumeKind = _msdos;
else if (!strcmp(cstr, "ntfs"))
daVolumeKind = _ntfs;
else
daVolumeKind = _other;
}
case _exfat:
case _hfs:
case _msdos:
case _ntfs:
break;
default:
unsupported();
}
printf("Using %s as default boot template\n", bootFile);
}
if (loadChunk(bootFile, 0, 0, &bootBlob) < 0)
goto cleanup_and_error;
switch (daVolumeKind) {
case _exfat:
if (calcSum(&bootBlob, &bpbBlob, &outputBlob, devicePath) < 0)
trunk/package/Changes.txt
1
2
13
24
35
- JrCs - boot1-install can show ntfs volume.
- ErmaC - Auto increase year for pkg resource.
- JrCs - Add translation to the project.

Archive Download the corresponding diff file

Revision: 2520