uci: update to 2010-09-28
SVN-Revision: 23430
This commit is contained in:
parent
37d454fa43
commit
1ca915970e
2 changed files with 6 additions and 6 deletions
|
@ -7,13 +7,13 @@
|
||||||
|
|
||||||
include $(TOPDIR)/rules.mk
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
UCI_VERSION=12012009
|
UCI_VERSION=2010-09-28
|
||||||
UCI_RELEASE=6
|
UCI_RELEASE=1
|
||||||
|
|
||||||
PKG_NAME:=uci
|
PKG_NAME:=uci
|
||||||
PKG_VERSION:=$(UCI_VERSION)$(if $(UCI_RELEASE),.$(UCI_RELEASE))
|
PKG_VERSION:=$(UCI_VERSION)$(if $(UCI_RELEASE),.$(UCI_RELEASE))
|
||||||
PKG_RELEASE:=2
|
PKG_RELEASE:=2
|
||||||
PKG_REV:=aa3ab8012bfbf793d2884c08ea924545a04e9544
|
PKG_REV:=3fa65a20ae0fc77b951515bc5de7a0041adc9be1
|
||||||
|
|
||||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||||
PKG_SOURCE_URL:=git://nbd.name/uci.git
|
PKG_SOURCE_URL:=git://nbd.name/uci.git
|
||||||
|
|
|
@ -65,7 +65,7 @@
|
||||||
+
|
+
|
||||||
+struct trigger_set_op {
|
+struct trigger_set_op {
|
||||||
+ struct uci_package *p;
|
+ struct uci_package *p;
|
||||||
+ struct uci_history *h;
|
+ struct uci_delta *h;
|
||||||
+};
|
+};
|
||||||
+
|
+
|
||||||
+static int trigger_set(lua_State *L)
|
+static int trigger_set(lua_State *L)
|
||||||
|
@ -73,7 +73,7 @@
|
||||||
+ struct trigger_set_op *so =
|
+ struct trigger_set_op *so =
|
||||||
+ (struct trigger_set_op *)lua_touserdata(L, 1);
|
+ (struct trigger_set_op *)lua_touserdata(L, 1);
|
||||||
+ struct uci_package *p = so->p;
|
+ struct uci_package *p = so->p;
|
||||||
+ struct uci_history *h = so->h;
|
+ struct uci_delta *h = so->h;
|
||||||
+ struct uci_context *ctx = p->ctx;
|
+ struct uci_context *ctx = p->ctx;
|
||||||
+
|
+
|
||||||
+ /* ignore non-standard savedirs/configdirs
|
+ /* ignore non-standard savedirs/configdirs
|
||||||
|
@ -139,7 +139,7 @@
|
||||||
+
|
+
|
||||||
+#endif
|
+#endif
|
||||||
+
|
+
|
||||||
+static void trigger_set_hook(const struct uci_hook_ops *ops, struct uci_package *p, struct uci_history *h)
|
+static void trigger_set_hook(const struct uci_hook_ops *ops, struct uci_package *p, struct uci_delta *h)
|
||||||
+{
|
+{
|
||||||
+ struct trigger_set_op so;
|
+ struct trigger_set_op so;
|
||||||
+
|
+
|
||||||
|
|
Loading…
Reference in a new issue