mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-24 00:30:16 +02:00
[package] block-mount busybox: Removed busybox versions of blkid and swap-utils since they are only used by block-mount and block-extroot, and those packages don't have as much need for the image space-savings of busybox versions, especially at the cost of including it in all images even those with no external storage.
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26245 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
0521bd84db
commit
b08fa2bc08
@ -21,6 +21,7 @@ endef
|
|||||||
define Package/block-mount
|
define Package/block-mount
|
||||||
$(call Package/block-mount/Default)
|
$(call Package/block-mount/Default)
|
||||||
TITLE:=Block device mounting and checking
|
TITLE:=Block device mounting and checking
|
||||||
|
DEPENDS:= +blkid +swap-utils
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/block-mount/description
|
define Package/block-mount/description
|
||||||
|
@ -35,7 +35,7 @@ config BUSYBOX_CONFIG_FEATURE_ACPID_COMPAT
|
|||||||
|
|
||||||
config BUSYBOX_CONFIG_BLKID
|
config BUSYBOX_CONFIG_BLKID
|
||||||
bool "blkid"
|
bool "blkid"
|
||||||
default y
|
default n
|
||||||
select BUSYBOX_CONFIG_VOLUMEID
|
select BUSYBOX_CONFIG_VOLUMEID
|
||||||
help
|
help
|
||||||
Lists labels and UUIDs of all filesystems.
|
Lists labels and UUIDs of all filesystems.
|
||||||
@ -435,7 +435,7 @@ config BUSYBOX_CONFIG_FEATURE_MDEV_LOAD_FIRMWARE
|
|||||||
|
|
||||||
config BUSYBOX_CONFIG_MKSWAP
|
config BUSYBOX_CONFIG_MKSWAP
|
||||||
bool "mkswap"
|
bool "mkswap"
|
||||||
default y
|
default n
|
||||||
help
|
help
|
||||||
The mkswap utility is used to configure a file or disk partition as
|
The mkswap utility is used to configure a file or disk partition as
|
||||||
Linux swap space. This allows Linux to use the entire file or
|
Linux swap space. This allows Linux to use the entire file or
|
||||||
@ -448,7 +448,7 @@ config BUSYBOX_CONFIG_MKSWAP
|
|||||||
|
|
||||||
config BUSYBOX_CONFIG_FEATURE_MKSWAP_UUID
|
config BUSYBOX_CONFIG_FEATURE_MKSWAP_UUID
|
||||||
bool "UUID support"
|
bool "UUID support"
|
||||||
default y
|
default n
|
||||||
depends on BUSYBOX_CONFIG_MKSWAP
|
depends on BUSYBOX_CONFIG_MKSWAP
|
||||||
help
|
help
|
||||||
Generate swap spaces with universally unique identifiers.
|
Generate swap spaces with universally unique identifiers.
|
||||||
@ -619,7 +619,7 @@ config BUSYBOX_CONFIG_SETARCH
|
|||||||
|
|
||||||
config BUSYBOX_CONFIG_SWAPONOFF
|
config BUSYBOX_CONFIG_SWAPONOFF
|
||||||
bool "swaponoff"
|
bool "swaponoff"
|
||||||
default y
|
default n
|
||||||
help
|
help
|
||||||
This option enables both the 'swapon' and the 'swapoff' utilities.
|
This option enables both the 'swapon' and the 'swapoff' utilities.
|
||||||
Once you have created some swap space using 'mkswap', you also need
|
Once you have created some swap space using 'mkswap', you also need
|
||||||
@ -735,35 +735,35 @@ menu "Filesystem/Volume identification"
|
|||||||
|
|
||||||
config BUSYBOX_CONFIG_FEATURE_VOLUMEID_EXT
|
config BUSYBOX_CONFIG_FEATURE_VOLUMEID_EXT
|
||||||
bool "Ext filesystem"
|
bool "Ext filesystem"
|
||||||
default y
|
default n
|
||||||
depends on BUSYBOX_CONFIG_VOLUMEID
|
depends on BUSYBOX_CONFIG_VOLUMEID
|
||||||
help
|
help
|
||||||
TODO
|
TODO
|
||||||
|
|
||||||
config BUSYBOX_CONFIG_FEATURE_VOLUMEID_BTRFS
|
config BUSYBOX_CONFIG_FEATURE_VOLUMEID_BTRFS
|
||||||
bool "btrfs filesystem"
|
bool "btrfs filesystem"
|
||||||
default y
|
default n
|
||||||
depends on BUSYBOX_CONFIG_VOLUMEID
|
depends on BUSYBOX_CONFIG_VOLUMEID
|
||||||
help
|
help
|
||||||
TODO
|
TODO
|
||||||
|
|
||||||
config BUSYBOX_CONFIG_FEATURE_VOLUMEID_REISERFS
|
config BUSYBOX_CONFIG_FEATURE_VOLUMEID_REISERFS
|
||||||
bool "Reiser filesystem"
|
bool "Reiser filesystem"
|
||||||
default y
|
default n
|
||||||
depends on BUSYBOX_CONFIG_VOLUMEID
|
depends on BUSYBOX_CONFIG_VOLUMEID
|
||||||
help
|
help
|
||||||
TODO
|
TODO
|
||||||
|
|
||||||
config BUSYBOX_CONFIG_FEATURE_VOLUMEID_FAT
|
config BUSYBOX_CONFIG_FEATURE_VOLUMEID_FAT
|
||||||
bool "fat filesystem"
|
bool "fat filesystem"
|
||||||
default y
|
default n
|
||||||
depends on BUSYBOX_CONFIG_VOLUMEID
|
depends on BUSYBOX_CONFIG_VOLUMEID
|
||||||
help
|
help
|
||||||
TODO
|
TODO
|
||||||
|
|
||||||
config BUSYBOX_CONFIG_FEATURE_VOLUMEID_HFS
|
config BUSYBOX_CONFIG_FEATURE_VOLUMEID_HFS
|
||||||
bool "hfs filesystem"
|
bool "hfs filesystem"
|
||||||
default y
|
default n
|
||||||
depends on BUSYBOX_CONFIG_VOLUMEID
|
depends on BUSYBOX_CONFIG_VOLUMEID
|
||||||
help
|
help
|
||||||
TODO
|
TODO
|
||||||
@ -784,28 +784,28 @@ config BUSYBOX_CONFIG_FEATURE_VOLUMEID_JFS
|
|||||||
|
|
||||||
config BUSYBOX_CONFIG_FEATURE_VOLUMEID_XFS
|
config BUSYBOX_CONFIG_FEATURE_VOLUMEID_XFS
|
||||||
bool "xfs filesystem"
|
bool "xfs filesystem"
|
||||||
default y
|
default n
|
||||||
depends on BUSYBOX_CONFIG_VOLUMEID
|
depends on BUSYBOX_CONFIG_VOLUMEID
|
||||||
help
|
help
|
||||||
TODO
|
TODO
|
||||||
|
|
||||||
config BUSYBOX_CONFIG_FEATURE_VOLUMEID_NTFS
|
config BUSYBOX_CONFIG_FEATURE_VOLUMEID_NTFS
|
||||||
bool "ntfs filesystem"
|
bool "ntfs filesystem"
|
||||||
default y
|
default n
|
||||||
depends on BUSYBOX_CONFIG_VOLUMEID
|
depends on BUSYBOX_CONFIG_VOLUMEID
|
||||||
help
|
help
|
||||||
TODO
|
TODO
|
||||||
|
|
||||||
config BUSYBOX_CONFIG_FEATURE_VOLUMEID_ISO9660
|
config BUSYBOX_CONFIG_FEATURE_VOLUMEID_ISO9660
|
||||||
bool "iso9660 filesystem"
|
bool "iso9660 filesystem"
|
||||||
default y
|
default n
|
||||||
depends on BUSYBOX_CONFIG_VOLUMEID
|
depends on BUSYBOX_CONFIG_VOLUMEID
|
||||||
help
|
help
|
||||||
TODO
|
TODO
|
||||||
|
|
||||||
config BUSYBOX_CONFIG_FEATURE_VOLUMEID_UDF
|
config BUSYBOX_CONFIG_FEATURE_VOLUMEID_UDF
|
||||||
bool "udf filesystem"
|
bool "udf filesystem"
|
||||||
default y
|
default n
|
||||||
depends on BUSYBOX_CONFIG_VOLUMEID
|
depends on BUSYBOX_CONFIG_VOLUMEID
|
||||||
help
|
help
|
||||||
TODO
|
TODO
|
||||||
@ -819,7 +819,7 @@ config BUSYBOX_CONFIG_FEATURE_VOLUMEID_LUKS
|
|||||||
|
|
||||||
config BUSYBOX_CONFIG_FEATURE_VOLUMEID_LINUXSWAP
|
config BUSYBOX_CONFIG_FEATURE_VOLUMEID_LINUXSWAP
|
||||||
bool "linux swap filesystem"
|
bool "linux swap filesystem"
|
||||||
default y
|
default n
|
||||||
depends on BUSYBOX_CONFIG_VOLUMEID
|
depends on BUSYBOX_CONFIG_VOLUMEID
|
||||||
help
|
help
|
||||||
TODO
|
TODO
|
||||||
@ -861,7 +861,7 @@ config BUSYBOX_CONFIG_FEATURE_VOLUMEID_SYSV
|
|||||||
|
|
||||||
### config FEATURE_VOLUMEID_MINIX
|
### config FEATURE_VOLUMEID_MINIX
|
||||||
### bool "minix filesystem"
|
### bool "minix filesystem"
|
||||||
### default y
|
### default n
|
||||||
### depends on VOLUMEID
|
### depends on VOLUMEID
|
||||||
### help
|
### help
|
||||||
### TODO
|
### TODO
|
||||||
@ -869,14 +869,14 @@ config BUSYBOX_CONFIG_FEATURE_VOLUMEID_SYSV
|
|||||||
### These only detect partition tables - not used (yet?)
|
### These only detect partition tables - not used (yet?)
|
||||||
### config FEATURE_VOLUMEID_MAC
|
### config FEATURE_VOLUMEID_MAC
|
||||||
### bool "mac filesystem"
|
### bool "mac filesystem"
|
||||||
### default y
|
### default n
|
||||||
### depends on VOLUMEID
|
### depends on VOLUMEID
|
||||||
### help
|
### help
|
||||||
### TODO
|
### TODO
|
||||||
###
|
###
|
||||||
### config FEATURE_VOLUMEID_MSDOS
|
### config FEATURE_VOLUMEID_MSDOS
|
||||||
### bool "msdos filesystem"
|
### bool "msdos filesystem"
|
||||||
### default y
|
### default n
|
||||||
### depends on VOLUMEID
|
### depends on VOLUMEID
|
||||||
### help
|
### help
|
||||||
### TODO
|
### TODO
|
||||||
@ -890,56 +890,56 @@ config BUSYBOX_CONFIG_FEATURE_VOLUMEID_OCFS2
|
|||||||
|
|
||||||
### config FEATURE_VOLUMEID_HIGHPOINTRAID
|
### config FEATURE_VOLUMEID_HIGHPOINTRAID
|
||||||
### bool "highpoint raid"
|
### bool "highpoint raid"
|
||||||
### default y
|
### default n
|
||||||
### depends on VOLUMEID
|
### depends on VOLUMEID
|
||||||
### help
|
### help
|
||||||
### TODO
|
### TODO
|
||||||
|
|
||||||
### config FEATURE_VOLUMEID_ISWRAID
|
### config FEATURE_VOLUMEID_ISWRAID
|
||||||
### bool "intel raid"
|
### bool "intel raid"
|
||||||
### default y
|
### default n
|
||||||
### depends on VOLUMEID
|
### depends on VOLUMEID
|
||||||
### help
|
### help
|
||||||
### TODO
|
### TODO
|
||||||
|
|
||||||
### config FEATURE_VOLUMEID_LSIRAID
|
### config FEATURE_VOLUMEID_LSIRAID
|
||||||
### bool "lsi raid"
|
### bool "lsi raid"
|
||||||
### default y
|
### default n
|
||||||
### depends on VOLUMEID
|
### depends on VOLUMEID
|
||||||
### help
|
### help
|
||||||
### TODO
|
### TODO
|
||||||
|
|
||||||
### config FEATURE_VOLUMEID_VIARAID
|
### config FEATURE_VOLUMEID_VIARAID
|
||||||
### bool "via raid"
|
### bool "via raid"
|
||||||
### default y
|
### default n
|
||||||
### depends on VOLUMEID
|
### depends on VOLUMEID
|
||||||
### help
|
### help
|
||||||
### TODO
|
### TODO
|
||||||
|
|
||||||
### config FEATURE_VOLUMEID_SILICONRAID
|
### config FEATURE_VOLUMEID_SILICONRAID
|
||||||
### bool "silicon raid"
|
### bool "silicon raid"
|
||||||
### default y
|
### default n
|
||||||
### depends on VOLUMEID
|
### depends on VOLUMEID
|
||||||
### help
|
### help
|
||||||
### TODO
|
### TODO
|
||||||
|
|
||||||
### config FEATURE_VOLUMEID_NVIDIARAID
|
### config FEATURE_VOLUMEID_NVIDIARAID
|
||||||
### bool "nvidia raid"
|
### bool "nvidia raid"
|
||||||
### default y
|
### default n
|
||||||
### depends on VOLUMEID
|
### depends on VOLUMEID
|
||||||
### help
|
### help
|
||||||
### TODO
|
### TODO
|
||||||
|
|
||||||
### config FEATURE_VOLUMEID_PROMISERAID
|
### config FEATURE_VOLUMEID_PROMISERAID
|
||||||
### bool "promise raid"
|
### bool "promise raid"
|
||||||
### default y
|
### default n
|
||||||
### depends on VOLUMEID
|
### depends on VOLUMEID
|
||||||
### help
|
### help
|
||||||
### TODO
|
### TODO
|
||||||
|
|
||||||
config BUSYBOX_CONFIG_FEATURE_VOLUMEID_LINUXRAID
|
config BUSYBOX_CONFIG_FEATURE_VOLUMEID_LINUXRAID
|
||||||
bool "linuxraid"
|
bool "linuxraid"
|
||||||
default y
|
default n
|
||||||
depends on BUSYBOX_CONFIG_VOLUMEID
|
depends on BUSYBOX_CONFIG_VOLUMEID
|
||||||
help
|
help
|
||||||
TODO
|
TODO
|
||||||
|
Loading…
Reference in New Issue
Block a user