Index: trunk/i386/util/boot1-install/boot1-install.c =================================================================== --- trunk/i386/util/boot1-install/boot1-install.c (revision 2519) +++ trunk/i386/util/boot1-install/boot1-install.c (revision 2520) @@ -35,6 +35,8 @@ _exfat = 1, _hfs = 2, _msdos = 3, + _ntfs = 4, + _ext4 = 5, _other = 255 }; @@ -544,6 +546,9 @@ else *pKind = _other; break; + case _ntfs: + rc = 0; + break; default: break; } @@ -598,6 +603,8 @@ daVolumeKind = _hfs; else if (!strcmp(cstr, "msdos")) daVolumeKind = _msdos; + else if (!strcmp(cstr, "ntfs")) + daVolumeKind = _ntfs; else daVolumeKind = _other; } @@ -736,6 +743,7 @@ case _exfat: case _hfs: case _msdos: + case _ntfs: break; default: unsupported(); @@ -776,8 +784,10 @@ } 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) Index: trunk/package/Changes.txt =================================================================== --- trunk/package/Changes.txt (revision 2519) +++ trunk/package/Changes.txt (revision 2520) @@ -1,3 +1,5 @@ +- JrCs - boot1-install can show ntfs volume. + - ErmaC - Auto increase year for pkg resource. - JrCs - Add translation to the project.