diff options
author | Denys Vlasenko | 2011-02-26 22:24:08 +0100 |
---|---|---|
committer | Denys Vlasenko | 2011-02-26 22:24:08 +0100 |
commit | e3b1a1fd28558f7a1b3c0ec33313bedb675be8a1 (patch) | |
tree | 0fb387c2e7d45dc541d9a42f9f0eba4352353aa5 /miscutils/ubi_attach_detach.c | |
parent | da4441c44f6efccb6f7b7588404d9c6bfb7b6af8 (diff) | |
download | busybox-e3b1a1fd28558f7a1b3c0ec33313bedb675be8a1.zip busybox-e3b1a1fd28558f7a1b3c0ec33313bedb675be8a1.tar.gz |
Replace "depends on PLATFORM_LINUX" with "select PLATFORM_LINUX"
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'miscutils/ubi_attach_detach.c')
-rw-r--r-- | miscutils/ubi_attach_detach.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/miscutils/ubi_attach_detach.c b/miscutils/ubi_attach_detach.c index fef9250..9007f8c 100644 --- a/miscutils/ubi_attach_detach.c +++ b/miscutils/ubi_attach_detach.c @@ -6,35 +6,35 @@ //config:config UBIATTACH //config: bool "ubiattach" //config: default y -//config: depends on PLATFORM_LINUX +//config: select PLATFORM_LINUX //config: help //config: Attach MTD device to an UBI device. //config: //config:config UBIDETACH //config: bool "ubidetach" //config: default y -//config: depends on PLATFORM_LINUX +//config: select PLATFORM_LINUX //config: help //config: Detach MTD device from an UBI device. //config: //config:config UBIMKVOL //config: bool "ubimkvol" //config: default y -//config: depends on PLATFORM_LINUX +//config: select PLATFORM_LINUX //config: help //config: Create a UBI volume. //config: //config:config UBIRMVOL //config: bool "ubirmvol" //config: default y -//config: depends on PLATFORM_LINUX +//config: select PLATFORM_LINUX //config: help //config: Delete a UBI volume. //config: //config:config UBIRSVOL //config: bool "ubirsvol" //config: default y -//config: depends on PLATFORM_LINUX +//config: select PLATFORM_LINUX //config: help //config: Resize a UBI volume. |