diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2012-04-13 16:39:18 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2012-04-13 16:39:18 +0200 |
commit | 0b2b0f31a38d77ebfb2a6416011562687ef58191 (patch) | |
tree | 7d51260fefeefd04bab934817a24e200f4297ae9 /e2fsprogs | |
parent | caf5768154301697430f0a3718838967d0f55f95 (diff) | |
download | busybox-w32-0b2b0f31a38d77ebfb2a6416011562687ef58191.tar.gz busybox-w32-0b2b0f31a38d77ebfb2a6416011562687ef58191.tar.bz2 busybox-w32-0b2b0f31a38d77ebfb2a6416011562687ef58191.zip |
Create and use our own copy of linux/ext2_fs.h
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'e2fsprogs')
-rw-r--r-- | e2fsprogs/tune2fs.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/e2fsprogs/tune2fs.c b/e2fsprogs/tune2fs.c index 8da7432d9..841d58a9c 100644 --- a/e2fsprogs/tune2fs.c +++ b/e2fsprogs/tune2fs.c | |||
@@ -8,13 +8,7 @@ | |||
8 | */ | 8 | */ |
9 | #include "libbb.h" | 9 | #include "libbb.h" |
10 | #include <linux/fs.h> | 10 | #include <linux/fs.h> |
11 | /* | 11 | #include "bb_linux_ext2_fs.h" |
12 | * Work around linux/ext2_fs.h breakage. | ||
13 | * See https://bugzilla.kernel.org/show_bug.cgi?id=42986. | ||
14 | */ | ||
15 | typedef mode_t bb__umode_t; | ||
16 | #define umode_t bb__umode_t | ||
17 | #include <linux/ext2_fs.h> | ||
18 | 12 | ||
19 | // storage helpers | 13 | // storage helpers |
20 | char BUG_wrong_field_size(void); | 14 | char BUG_wrong_field_size(void); |