tune2fs: move to e2fsprogs

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Denys Vlasenko
2010-05-09 00:13:40 +02:00
parent 19afe848ec
commit 6774386d95
8 changed files with 21 additions and 25 deletions

View File

@ -16,7 +16,6 @@
# define BLKSSZGET _IO(0x12, 104)
#endif
//#include <linux/msdos_fs.h>
#include "volume_id/volume_id_internal.h"
#define SECTOR_SIZE 512
@ -168,15 +167,15 @@ static const char boot_code[] ALIGN1 =
#define MARK_CLUSTER(cluster, value) \
((uint32_t *)fat)[cluster] = cpu_to_le32(value)
((uint32_t *)fat)[cluster] = SWAP_LE32(value)
void BUG_unsupported_field_size(void);
#define STORE_LE(field, value) \
do { \
if (sizeof(field) == 4) \
field = cpu_to_le32(value); \
field = SWAP_LE32(value); \
else if (sizeof(field) == 2) \
field = cpu_to_le16(value); \
field = SWAP_LE16(value); \
else if (sizeof(field) == 1) \
field = (value); \
else \