wok view busybox/stuff/busybox-1.28-mkfs_vfat.u @ rev 20550

Update get-palemoon for 28.2.2
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Dec 11 09:42:58 2018 +0100 (2018-12-11)
parents
children
line source
1 --- busybox-1.28/util-linux/mkfs_vfat.c
2 +++ busybox-1.28/util-linux/mkfs_vfat.c
3 @@ -239,6 +239,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 @@ -288,6 +289,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 @@ -344,6 +346,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 @@ -511,7 +514,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);