diff options
author | Hauke Mehrtens <hauke@openwrt.org> | 2013-11-13 18:42:45 +0000 |
---|---|---|
committer | Hauke Mehrtens <hauke@openwrt.org> | 2013-11-13 18:42:45 +0000 |
commit | 0543130adbc1f5b9e873e993531b95c1d87de0a6 (patch) | |
tree | 9d3b631876aebfa3abfeff03f66d132a0306e6ef /package/system | |
parent | 66c16ab5dfe86ee0cd9c50cc10053ca052475103 (diff) | |
download | upstream-0543130adbc1f5b9e873e993531b95c1d87de0a6.tar.gz upstream-0543130adbc1f5b9e873e993531b95c1d87de0a6.tar.bz2 upstream-0543130adbc1f5b9e873e993531b95c1d87de0a6.zip |
zram-swap: fix dependencies
swapon/swapoff are no longer provided by swap-utils; they are provided
by block-mount instead.
Signed-off-by: Nathan Hintz <nlhintz@hotmail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@38795 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/system')
-rw-r--r-- | package/system/zram-swap/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/system/zram-swap/Makefile b/package/system/zram-swap/Makefile index bded5f3808..1fe3804e82 100644 --- a/package/system/zram-swap/Makefile +++ b/package/system/zram-swap/Makefile @@ -18,7 +18,7 @@ include $(INCLUDE_DIR)/package.mk define Package/zram-swap SECTION:=utils CATEGORY:=Base system - DEPENDS:=+kmod-zram +!(BUSYBOX_CONFIG_MKSWAP&&BUSYBOX_CONFIG_SWAPONOFF):swap-utils + DEPENDS:=+kmod-zram +!BUSYBOX_CONFIG_MKSWAP:swap-utils +!BUSYBOX_CONFIG_SWAPONOFF:block-mount TITLE:=ZRAM swap scripts PKGARCH:=all endef |