2013-01-06 16:21:29 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2013 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=zram-swap
|
|
|
|
PKG_VERSION:=1
|
2013-01-07 12:01:11 +00:00
|
|
|
PKG_RELEASE:=2
|
2013-01-06 16:21:29 +00:00
|
|
|
|
|
|
|
PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/zram-swap
|
|
|
|
SECTION:=utils
|
|
|
|
CATEGORY:=Base system
|
2013-11-13 18:42:45 +00:00
|
|
|
DEPENDS:=+kmod-zram +!BUSYBOX_CONFIG_MKSWAP:swap-utils +!BUSYBOX_CONFIG_SWAPONOFF:block-mount
|
2013-01-06 16:21:29 +00:00
|
|
|
TITLE:=ZRAM swap scripts
|
|
|
|
PKGARCH:=all
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/zram-swap/description
|
|
|
|
A script to activate swaping on a compressed zram partition. This
|
|
|
|
could be used to increase the available memory, by using compressed
|
|
|
|
memory.
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Prepare
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Configure
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Compile
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/zram-swap/install
|
2013-01-07 12:01:11 +00:00
|
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
|
|
|
$(INSTALL_BIN) ./files/zram.init $(1)/etc/init.d/zram
|
2013-01-06 16:21:29 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,zram-swap))
|