diff options
author | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-04-09 02:28:00 +0000 |
---|---|---|
committer | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-04-09 02:28:00 +0000 |
commit | bbe718534f63fcffe145409867ce22eacbd3734e (patch) | |
tree | cd7388574206c1ac09dc8ebecc44d50d326056dd /openwrt/package/shfs/ipkg | |
parent | 6853fd49731f052cc51d970aca251059a7b0d0df (diff) |
Add shfs package
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@593 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/package/shfs/ipkg')
-rw-r--r-- | openwrt/package/shfs/ipkg/kmod-shfs/CONTROL/control | 8 | ||||
-rw-r--r-- | openwrt/package/shfs/ipkg/rules | 111 | ||||
-rw-r--r-- | openwrt/package/shfs/ipkg/shfs-utils/CONTROL/control | 9 | ||||
-rw-r--r-- | openwrt/package/shfs/ipkg/version | 1 |
4 files changed, 129 insertions, 0 deletions
diff --git a/openwrt/package/shfs/ipkg/kmod-shfs/CONTROL/control b/openwrt/package/shfs/ipkg/kmod-shfs/CONTROL/control new file mode 100644 index 000000000..b7ce61293 --- /dev/null +++ b/openwrt/package/shfs/ipkg/kmod-shfs/CONTROL/control @@ -0,0 +1,8 @@ +Package: kmod-shfs +Priority: optional +Section: net +Version: [TBDL] +Architecture: [TBDL] +Maintainer: Nico <nthill@free.fr> +Source: http://nthill.free.fr/openwrt/sources/shfs/ +Description: SHell FileSystem Linux kernel module diff --git a/openwrt/package/shfs/ipkg/rules b/openwrt/package/shfs/ipkg/rules new file mode 100644 index 000000000..2297c9888 --- /dev/null +++ b/openwrt/package/shfs/ipkg/rules @@ -0,0 +1,111 @@ +#!/usr/bin/make -f + +ifneq ($(strip ${IPKG_RULES_INC}),) + include $(IPKG_RULES_INC) +endif + +## + +PKG_VERSION := $(shell cat ./ipkg/version) +CURRENT_DIR := $(shell pwd) +INSTALL_DIR ?= $(CURRENT_DIR)/ipkg-install + +unexport INSTALL_DIR + +I_KMOD_SHFS := ipkg/kmod-shfs +I_SHFS_UTILS := ipkg/shfs-utils + +BUILD_DEPS = \ + +## + +all: package + + +.stamp-configured: $(BUILD_DEPS) + + touch .stamp-configured + + +.stamp-built: .stamp-configured + + $(MAKE) \ + OFLAGS="$(TARGET_CFLAGS)" \ + CC="$(TARGET_CC)" \ + LINKER="$(TARGET_CC)" \ + KERNEL="$(LINUX_VERSION)" \ + KERNEL_SOURCES="$(LINUX_DIR)" \ + all + + touch .stamp-built + + +$(INSTALL_DIR)/lib/modules/$(LINUX_VERSION)/shfs.o: .stamp-built + + mkdir -p $(INSTALL_DIR) + + $(MAKE) \ + ROOT="$(INSTALL_DIR)" \ + KERNEL="$(LINUX_VERSION)" \ + KERNEL_SOURCES="$(LINUX_DIR)" \ + install + + +configure: .stamp-configured + + +build: .stamp-built + + +install: $(INSTALL_DIR)/lib/modules/$(LINUX_VERSION)/shfs.o + + +package: $(INSTALL_DIR)/lib/modules/$(LINUX_VERSION)/shfs.o + + mkdir -p $(I_KMOD_SHFS)/lib/modules/$(LINUX_VERSION) + cp -fpR $(INSTALL_DIR)/lib/modules/$(LINUX_VERSION)/kernel/fs/shfs/shfs.o \ + $(I_KMOD_SHFS)/lib/modules/$(LINUX_VERSION)/ + $(TARGET_CROSS)strip --remove-section=.comment --remove-section=.note \ + $(I_KMOD_SHFS)/lib/modules/$(LINUX_VERSION)/*.o + + mkdir -p $(I_SHFS_UTILS)/usr/sbin + cp -fpR $(INSTALL_DIR)/usr/sbin/shfs{,u}mount $(I_SHFS_UTILS)/usr/sbin/ + cp -fpR $(INSTALL_DIR)/usr/sbin/mount.shfs $(I_SHFS_UTILS)/usr/sbin/ + $(STRIP) $(I_SHFS_UTILS)/usr/sbin/shfs* + + chmod 0755 ipkg/*/CONTROL/ + chmod 0644 ipkg/*/CONTROL/control + + perl -pi -e "s/^Arch.*:.*/Architecture: $(ARCH)/g" ipkg/*/CONTROL/control +ifneq ($(strip $(PKG_VERSION)),) + perl -pi -e "s/^Vers.*:.*/Version: $(PKG_VERSION)/g" ipkg/*/CONTROL/control + perl -pi -e "s/^Vers.*:.*/Version: $(LINUX_VERSION)+$(PKG_VERSION)/g" $(I_KMOD_SHFS)/CONTROL/control +endif + + $(IPKG_BUILD) $(I_KMOD_SHFS) $(IPKG_TARGET_DIR) + $(IPKG_BUILD) $(I_SHFS_UTILS) $(IPKG_TARGET_DIR) + + +clean: + + -$(MAKE) \ + ROOT="$(INSTALL_DIR)" \ + KERNEL="$(LINUX_VERSION)" \ + KERNEL_SOURCES="$(LINUX_DIR)" \ + uninstall clean + + rm -rf .stamp-* \ + $(INSTALL_DIR) \ + $(I_KMOD_SHFS)/lib \ + $(I_SHFS_UTILS)/usr \ + + +control: + + @cat $(I_KMOD_SHFS)/CONTROL/control + @echo + @cat $(I_SHFS_UTILS)/CONTROL/control + @echo + + +.PHONY: configure build install package clean control diff --git a/openwrt/package/shfs/ipkg/shfs-utils/CONTROL/control b/openwrt/package/shfs/ipkg/shfs-utils/CONTROL/control new file mode 100644 index 000000000..af3b897f2 --- /dev/null +++ b/openwrt/package/shfs/ipkg/shfs-utils/CONTROL/control @@ -0,0 +1,9 @@ +Package: shfs-utils +Priority: optional +Section: net +Version: [TBDL] +Architecture: [TBDL] +Maintainer: Nico <nthill@free.fr> +Source: http://nthill.free.fr/openwrt/sources/shfs/ +Description: SHell FileSystem Linux mount/umount utilities +Depends: kmod-shfs diff --git a/openwrt/package/shfs/ipkg/version b/openwrt/package/shfs/ipkg/version new file mode 100644 index 000000000..3a36fd678 --- /dev/null +++ b/openwrt/package/shfs/ipkg/version @@ -0,0 +1 @@ +0.35-2 |