wok-next view busybox/stuff/patches/mkfs_vfat.u @ rev 21723

busybox: update patches
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 10:44:52 2020 +0000 (2020-09-01)
parents 2ef4101ba8f7
children
line source
1 --- busybox-1.31/util-linux/mkfs_vfat.c
2 +++ busybox-1.31/util-linux/mkfs_vfat.c
3 @@ -226,6 +226,7 @@
4 char *device_name;
5 uoff_t volume_size_bytes;
6 uoff_t volume_size_sect;
7 + uint32_t hidden;
8 uint32_t total_clust;
9 uint32_t volume_id;
10 int dev;
11 @@ -275,6 +276,7 @@
12 // Get image size and sector size
13 //
14 bytes_per_sect = SECTOR_SIZE;
15 + hidden = 0;
16 if (!S_ISBLK(st.st_mode)) {
17 if (!S_ISREG(st.st_mode)) {
18 if (!argv[1])
19 @@ -331,6 +333,7 @@
20 // hard drive
21 sect_per_track = geometry.sectors;
22 heads = geometry.heads;
23 + hidden = geometry.start;
25 set_cluster_size:
26 /* For FAT32, try to do the same as M$'s format command
27 @@ -498,7 +501,7 @@
28 //STORE_LE(boot_blk->sect_per_fat, 0);
29 STORE_LE(boot_blk->sect_per_track, sect_per_track);
30 STORE_LE(boot_blk->heads, heads);
31 - //STORE_LE(boot_blk->hidden, 0);
32 + STORE_LE(boot_blk->hidden, hidden);
33 STORE_LE(boot_blk->fat32_volume_size_sect, volume_size_sect);
34 STORE_LE(boot_blk->fat32_sect_per_fat, sect_per_fat);
35 //STORE_LE(boot_blk->fat32_flags, 0);