Re: [OpenWrt-Devel] [PATCH] block-mount add missing directory

2011-04-04 Thread Daniel Dickinson
On Sun, 20 Mar 2011 21:04:06 +0100
Maarten Bezemer m.m.beze...@utwente.nl wrote:

 Fixes warning of missing /lib/functions/fsck directory during boot.
 Happens when no scripts are installed in this directory (ie when
 e2fsck is not enabled)
 
 ---
 Signed-of-by: Maarten Bezemer

Committed (after update to new block-mount) r26468.

-- 
erno hm. I've lost a machine.. literally _lost_. it responds to ping, 
it works completely, I just can't figure out where in my apartment it
is. GnuPG Key Fingerprint 86 F5 81 A5 D4 2E 1F 1C  http://gnupg.org



signature.asc
Description: PGP signature
___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/mailman/listinfo/openwrt-devel


[OpenWrt-Devel] [PATCH] block-mount add missing directory

2011-03-20 Thread Maarten Bezemer
Fixes warning of missing /lib/functions/fsck directory during boot.
Happens when no scripts are installed in this directory (ie when e2fsck
is not enabled)

---
Signed-of-by: Maarten Bezemer
Index: package/block-mount/Makefile
===
--- package/block-mount/Makefile	(revision 26245)
+++ package/block-mount/Makefile	(working copy)
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2006-2009 OpenWrt.org
+# Copyright (C) 2006-2011 OpenWrt.org
 # Copyright 2010 Vertical Communications
 # This is free software, licensed under the GNU General Public License v2.
 # See /LICENSE for more information.
@@ -9,7 +9,7 @@
 
 PKG_NAME:=block-mount
 PKG_VERSION:=0.1.0
-PKG_RELEASE:=2
+PKG_RELEASE:=3
 
 include $(INCLUDE_DIR)/package.mk
 
@@ -51,6 +51,7 @@
 	$(INSTALL_DIR) $(1)/etc/config
 	$(INSTALL_DATA) ./files/fstab.config $(1)/etc/config/fstab
 	$(INSTALL_DIR) $(1)/lib/functions
+	$(INSTALL_DIR) $(1)/lib/functions/fsck
 	$(INSTALL_DATA) ./files/mount.sh $(1)/lib/functions/
 	$(INSTALL_DATA) ./files/fsck.sh $(1)/lib/functions/
 	$(INSTALL_DATA) ./files/block.sh $(1)/lib/functions/
___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/mailman/listinfo/openwrt-devel