diff options
author | Ron Yorston <rmy@pobox.com> | 2020-08-04 08:24:19 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2020-08-13 17:12:56 +0200 |
commit | 5c69ad0ecdc18cf51b312c7c82848f4438fe1c8d (patch) | |
tree | aeb911b86b6dab262429a8a9fa76bcdf697b02a3 /miscutils/ubi_tools.c | |
parent | 9914d8b861a0edb42051bd68a37bceb0562daa70 (diff) | |
download | busybox-w32-5c69ad0ecdc18cf51b312c7c82848f4438fe1c8d.tar.gz busybox-w32-5c69ad0ecdc18cf51b312c7c82848f4438fe1c8d.tar.bz2 busybox-w32-5c69ad0ecdc18cf51b312c7c82848f4438fe1c8d.zip |
build system: drop PLATFORM_LINUX
PLATFORM_LINUX is a hidden configuration option which is disabled by
default and enabled at over a hundred locations for features that are
deemed to be Linux specific.
The only effect of PLATFORM_LINUX is to control compilation of
libbb/match_fstype.c. This file is only needed by mount and umount.
Remove all references to PLATFORM_LINUX and compile match_fstype.c
if mount or umount is enabled.
Signed-off-by: Ron Yorston <rmy@pobox.com>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'miscutils/ubi_tools.c')
-rw-r--r-- | miscutils/ubi_tools.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/miscutils/ubi_tools.c b/miscutils/ubi_tools.c index 8318df0f9..94a637eee 100644 --- a/miscutils/ubi_tools.c +++ b/miscutils/ubi_tools.c | |||
@@ -6,42 +6,36 @@ | |||
6 | //config:config UBIATTACH | 6 | //config:config UBIATTACH |
7 | //config: bool "ubiattach (4.2 kb)" | 7 | //config: bool "ubiattach (4.2 kb)" |
8 | //config: default y | 8 | //config: default y |
9 | //config: select PLATFORM_LINUX | ||
10 | //config: help | 9 | //config: help |
11 | //config: Attach MTD device to an UBI device. | 10 | //config: Attach MTD device to an UBI device. |
12 | //config: | 11 | //config: |
13 | //config:config UBIDETACH | 12 | //config:config UBIDETACH |
14 | //config: bool "ubidetach (4.1 kb)" | 13 | //config: bool "ubidetach (4.1 kb)" |
15 | //config: default y | 14 | //config: default y |
16 | //config: select PLATFORM_LINUX | ||
17 | //config: help | 15 | //config: help |
18 | //config: Detach MTD device from an UBI device. | 16 | //config: Detach MTD device from an UBI device. |
19 | //config: | 17 | //config: |
20 | //config:config UBIMKVOL | 18 | //config:config UBIMKVOL |
21 | //config: bool "ubimkvol (5.3 kb)" | 19 | //config: bool "ubimkvol (5.3 kb)" |
22 | //config: default y | 20 | //config: default y |
23 | //config: select PLATFORM_LINUX | ||
24 | //config: help | 21 | //config: help |
25 | //config: Create a UBI volume. | 22 | //config: Create a UBI volume. |
26 | //config: | 23 | //config: |
27 | //config:config UBIRMVOL | 24 | //config:config UBIRMVOL |
28 | //config: bool "ubirmvol (4.9 kb)" | 25 | //config: bool "ubirmvol (4.9 kb)" |
29 | //config: default y | 26 | //config: default y |
30 | //config: select PLATFORM_LINUX | ||
31 | //config: help | 27 | //config: help |
32 | //config: Delete a UBI volume. | 28 | //config: Delete a UBI volume. |
33 | //config: | 29 | //config: |
34 | //config:config UBIRSVOL | 30 | //config:config UBIRSVOL |
35 | //config: bool "ubirsvol (4.2 kb)" | 31 | //config: bool "ubirsvol (4.2 kb)" |
36 | //config: default y | 32 | //config: default y |
37 | //config: select PLATFORM_LINUX | ||
38 | //config: help | 33 | //config: help |
39 | //config: Resize a UBI volume. | 34 | //config: Resize a UBI volume. |
40 | //config: | 35 | //config: |
41 | //config:config UBIUPDATEVOL | 36 | //config:config UBIUPDATEVOL |
42 | //config: bool "ubiupdatevol (5.2 kb)" | 37 | //config: bool "ubiupdatevol (5.2 kb)" |
43 | //config: default y | 38 | //config: default y |
44 | //config: select PLATFORM_LINUX | ||
45 | //config: help | 39 | //config: help |
46 | //config: Update a UBI volume. | 40 | //config: Update a UBI volume. |
47 | 41 | ||