diff options
author | Felix Fietkau <nbd@openwrt.org> | 2010-02-26 22:46:10 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2010-02-26 22:46:10 +0000 |
commit | 9be4598569354995d6dfe5359d653bb24ffbb832 (patch) | |
tree | e99d43a0ac40150afca3492cea60384b3f869fda /package/block-extroot/Makefile | |
parent | 61c2b29295a7c2d896181fba7f69e7cea69fc222 (diff) | |
download | upstream-9be4598569354995d6dfe5359d653bb24ffbb832.tar.gz upstream-9be4598569354995d6dfe5359d653bb24ffbb832.tar.bz2 upstream-9be4598569354995d6dfe5359d653bb24ffbb832.zip |
add block-extroot, a package for using an external filesystem as rootfs (patch by cshore)
SVN-Revision: 19880
Diffstat (limited to 'package/block-extroot/Makefile')
-rw-r--r-- | package/block-extroot/Makefile | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/package/block-extroot/Makefile b/package/block-extroot/Makefile new file mode 100644 index 0000000000..1ae72f0d3a --- /dev/null +++ b/package/block-extroot/Makefile @@ -0,0 +1,64 @@ +# +# Copyright (C) 2009 OpenWrt.org +# Copyright (C) 2010 Vertical Communications +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# + +include $(TOPDIR)/rules.mk + +PKG_NAME:=block-extroot +PKG_VERSION:=0.0.1 +PKG_RELEASE:=1 + +PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME) + +include $(INCLUDE_DIR)/package.mk + +define Package/block-extroot/Default + SECTION:=utils + CATEGORY:=Utilities + TITLE:=root filesystem on secondary storage + SUBMENU:=disc +endef + +define Package/block-extroot + $(call Package/block-extroot/Default) + MENU:=1 + DEPENDS:=+block-mount @PACKAGE_kmod-ide-core||PACKAGE_kmod-usb-storage||PACKAGE_kmod-mmc +endef + +define Package/block-extroot/config + source "$(SOURCE)/Config.in" +endef + +define Package/block-extroot/description + Based on the moduluarized preinit and firstboot, adds the option to have + the root filesystem on storage other than the jffs or the boot root device. + For a squashfs image this package must be installed into the image, not as + a package to add later. +endef + +define Build/Prepare +endef + +define Build/Configure +endef + +define Build/Compile +endef + +define Package/block-extroot/install + $(INSTALL_DIR) $(1)/lib/functions + $(INSTALL_DATA) ./files/extmount.sh $(1)/lib/functions/ + $(INSTALL_DIR) $(1)/lib/preinit + $(INSTALL_DATA) ./files/50_determine_usb_root $(1)/lib/preinit/ + $(INSTALL_DATA) ./files/60_pivot_usb_root $(1)/lib/preinit/ + $(INSTALL_DIR) $(1)/lib/preinit + echo "extroot_settle_time=\"$(CONFIG_EXTROOT_SETTLETIME)\"" >$(1)/lib/preinit/00_extroot.conf + $(INSTALL_DIR) $(1)/overlay +endef + +$(eval $(call BuildPackage,block-extroot)) + |