You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.5 KiB
59 lines
1.5 KiB
12 years ago
|
include $(TOPDIR)/rules.mk
|
||
|
|
||
|
PKG_NAME:=ubox
|
||
12 years ago
|
PKG_VERSION:=2013-06-20
|
||
12 years ago
|
PKG_RELEASE=$(PKG_SOURCE_VERSION)
|
||
|
|
||
|
PKG_SOURCE_PROTO:=git
|
||
|
PKG_SOURCE_URL:=git://nbd.name/luci2/ubox.git
|
||
|
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
|
||
12 years ago
|
PKG_SOURCE_VERSION:=1b19fc217e33e9b2fc2fab6f9552da740d03a98a
|
||
12 years ago
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz
|
||
|
CMAKE_INSTALL:=1
|
||
|
|
||
|
PKG_LICENSE:=GPLv2
|
||
|
PKG_LICENSE_FILES:=
|
||
|
|
||
|
PKG_MAINTAINER:=John Crispin <blogic@openwrt.org>
|
||
|
|
||
|
include $(INCLUDE_DIR)/package.mk
|
||
|
include $(INCLUDE_DIR)/cmake.mk
|
||
|
|
||
|
TARGET_LDFLAGS += $(if $(CONFIG_USE_EGLIBC),-lrt)
|
||
|
|
||
|
define Package/ubox
|
||
|
SECTION:=base
|
||
|
CATEGORY:=Base system
|
||
12 years ago
|
DEPENDS:=+ubusd +ubus +libuci +USE_EGLIBC:librt
|
||
12 years ago
|
TITLE:=OpenWrt system helper toolbox
|
||
|
endef
|
||
|
|
||
12 years ago
|
define Package/block-mount
|
||
|
SECTION:=base
|
||
|
CATEGORY:=Base system
|
||
|
TITLE:=Block device mounting and checking
|
||
|
DEPENDS:=+ubox
|
||
|
MENU:=1
|
||
|
endef
|
||
|
|
||
12 years ago
|
define Package/ubox/install
|
||
12 years ago
|
$(INSTALL_DIR) $(1)/sbin $(1)/usr/sbin
|
||
12 years ago
|
|
||
|
$(CP) $(PKG_INSTALL_DIR)/usr/sbin/{mount_root,kmodloader,lsbloader,board} $(1)/sbin/
|
||
|
ln -s /sbin/mount_root $(1)/sbin/switch2jffs
|
||
12 years ago
|
ln -s /sbin/kmodloader $(1)/usr/sbin/lsmod
|
||
|
ln -s /sbin/kmodloader $(1)/usr/sbin/modinfo
|
||
12 years ago
|
endef
|
||
|
|
||
12 years ago
|
define Package/block-mount/install
|
||
|
$(INSTALL_DIR) $(1)/sbin $(1)/usr/sbin $(1)/etc/hotplug.d/block
|
||
|
|
||
|
$(CP) ./files/mount.hotplug $(1)/etc/hotplug.d/block/10-mount
|
||
|
$(CP) $(PKG_INSTALL_DIR)/usr/sbin/block $(1)/sbin/
|
||
|
ln -s /sbin/block $(1)/usr/sbin/swapon
|
||
|
ln -s /sbin/block $(1)/usr/sbin/swapoff
|
||
|
endef
|
||
|
|
||
12 years ago
|
$(eval $(call BuildPackage,ubox))
|
||
12 years ago
|
$(eval $(call BuildPackage,block-mount))
|