Skip to content

Commit f9b388c

Browse files
committed
Fix OpenWrt Makefile
1 parent 7cdf31f commit f9b388c

File tree

3 files changed

+6
-14
lines changed

3 files changed

+6
-14
lines changed

.gitmodules

Lines changed: 0 additions & 4 deletions
This file was deleted.

lispd/lispd_config_uci.c

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1017,11 +1017,7 @@ configure_ms(struct uci_context *ctx,struct uci_package *pck)
10171017
LMLOG(LERR,"Configuration file: No eid_prefix assigned");
10181018
return (BAD);
10191019
}
1020-
if (uci_lookup_option_string(ctx, sect, "key_type") == NULL){
1021-
LMLOG(LERR,"Configuration file: No key type assigned");
1022-
return (BAD);
1023-
}
1024-
if (uci_lookup_option_string(ctx, sect, "key_type") == NULL){
1020+
if (uci_lookup_option_string(ctx, sect, "key_type") != NULL){
10251021
uci_key_type = strtol(uci_lookup_option_string(ctx, sect, "key_type"),NULL,10);
10261022
}else {
10271023
LMLOG(LERR,"Configuration file: No key-type specified");

openWRT/Makefile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,17 @@
88
include $(TOPDIR)/rules.mk
99

1010
PKG_NAME:=lispmob
11-
PKG_REV:=8ebe5ee4b39bd9ca47b1d4d005a292c031c05bd8
12-
PKG_VERSION:=0.3
13-
PKG_RELEASE:=3
11+
PKG_REV:=33feaa5fc953213791d171422ae5413ab435f3df
12+
PKG_VERSION:=0.5.0
13+
PKG_RELEASE:=4
1414

1515
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
1616
PKG_SOURCE_URL:=git://github.com/LISPmob/lispmob.git
1717
PKG_SOURCE_PROTO:=git
1818
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
1919
PKG_SOURCE_VERSION:=$(PKG_REV)
2020

21-
PKG_LICENSE:=GPLv2
21+
PKG_LICENSE:=Apache-2.0
2222
PKG_LICENSE_FILES:=LICENSE
2323

2424
include $(INCLUDE_DIR)/package.mk
@@ -35,7 +35,7 @@ define Package/lispmob
3535
CATEGORY:=Network
3636
TITLE:=Locator/ID separation protocol (using TUN)
3737
URL:=https://github.com/LISPmob
38-
DEPENDS:= +librt +libopenssl +confuse +kmod-tun +uci +kmod-ipv6 +luci
38+
DEPENDS:= +librt +confuse +kmod-tun +uci +kmod-ipv6 +libzmq-nc +libxml2
3939
$(call Package/lispmob/default)
4040
endef
4141

0 commit comments

Comments
 (0)