wok view busybox/stuff/busybox-1.26-mkfs_vfat.u @ rev 19979

Add seamonkey-official
author Richard Dunbar <mojo@slitaz.org>
date Tue Jun 13 14:11:14 2017 -0400 (2017-06-13)
parents
children
line source
1 --- busybox-1.26/util-linux/mkfs_vfat.c
2 +++ busybox-1.26/util-linux/mkfs_vfat.c
3 @@ -238,6 +238,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 @@ -286,6 +287,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 @@ -342,6 +344,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 @@ -509,7 +512,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);