Repository : ssh://git@open-mesh.org/batctl
On branch : next
>---------------------------------------------------------------
commit 2c7bfe1299efa97438814bf6826a8f7ab3bc0b16
Author: Sven Eckelmann <sven(a)narfation.org>
Date: Tue May 7 14:51:02 2013 +0200
batctl: Add CFLAGS to the linker step
The GCC manual states for different parameters that the options for compilation
must also be used when linking. The options for compilation are stored in
CFLAGS and added to LINK.o to fix the behavior.
Option which need this are for example -fPIC/-fPIE or -flto.
Signed-off-by: Sven Eckelmann <sven(a)narfation.org>
Signed-off-by: Marek Lindner <lindner_marek(a)yahoo.de>
>---------------------------------------------------------------
2c7bfe1299efa97438814bf6826a8f7ab3bc0b16
Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
index 311e70e..233f453 100755
--- a/Makefile
+++ b/Makefile
@@ -53,7 +53,7 @@ RM ?= rm -f
INSTALL ?= install
MKDIR ?= mkdir -p
COMPILE.c = $(Q_CC)$(CC) $(CFLAGS) $(CPPFLAGS) $(TARGET_ARCH) -c
-LINK.o = $(Q_LD)$(CC) $(LDFLAGS) $(TARGET_ARCH)
+LINK.o = $(Q_LD)$(CC) $(CFLAGS) $(LDFLAGS) $(TARGET_ARCH)
# standard install paths
PREFIX = /usr/local
Repository : ssh://git@open-mesh.org/openwrt-feed-alfred
On branch : master
>---------------------------------------------------------------
commit 8cf0aaba9b09fbbf3b6daa1eb08d9d4f8e76aab4
Author: Simon Wunderlich <siwu(a)hrz.tu-chemnitz.de>
Date: Sun Jul 28 20:31:15 2013 +0200
alfred: bump version to 2013.3.0-0
no functional changes, just use the release.
Signed-off-by: Simon Wunderlich <siwu(a)hrz.tu-chemnitz.de>
>---------------------------------------------------------------
8cf0aaba9b09fbbf3b6daa1eb08d9d4f8e76aab4
alfred/Makefile | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/alfred/Makefile b/alfred/Makefile
index 837e33c..bd26ce7 100644
--- a/alfred/Makefile
+++ b/alfred/Makefile
@@ -11,9 +11,9 @@ include $(TOPDIR)/rules.mk
# The latest alfred git hash in PKG_REV can be obtained from http://git.open-mesh.org/alfred.git
#
PKG_NAME:=alfred
-PKG_VERSION:=2012.0.0
-PKG_RELEASE:=6
-PKG_REV:=7ceb16cbb2fd008b0f8cb89c6862e7a9bcc0166e
+PKG_VERSION:=2013.3.0
+PKG_RELEASE:=0
+PKG_REV:=fac591b6d8a8a9eaca33a0d7614433cbca23f55f
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=git://git.open-mesh.org/alfred.git
Repository : ssh://git@open-mesh.org/alfred
On branches: master,siwu/release
>---------------------------------------------------------------
commit fac591b6d8a8a9eaca33a0d7614433cbca23f55f
Author: Simon Wunderlich <siwu(a)hrz.tu-chemnitz.de>
Date: Sun Jul 28 19:05:50 2013 +0200
alfred: Update CHANGELOG for upcoming release
Signed-off-by: Simon Wunderlich <siwu(a)hrz.tu-chemnitz.de>
>---------------------------------------------------------------
fac591b6d8a8a9eaca33a0d7614433cbca23f55f
CHANGELOG | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/CHANGELOG b/CHANGELOG
new file mode 100644
index 0000000..aa0371f
--- /dev/null
+++ b/CHANGELOG
@@ -0,0 +1,13 @@
+alfred 2013.3.0:
+
+ * initial release of alfred after beta (synced release cycle with
+ batman-adv)
+ * allows to share arbitrary local information over a (mesh) network
+ * initial support for vis (previously in-kernel feature of batman-adv
+ to visualize the network) included
+ * easy but flexible communication interface to allow data applications
+ of all kinds
+ * two-tiered architecture (master and slaves)
+ * exchanges data via IPv6 unicast/multicast
+
+ -- Sun, 28 Jul 2013 18:56:52 +0200
Repository : ssh://git@open-mesh.org/batman-adv
Branch 'maint' now includes:
a75dbf4 batman-adv: split batadv_is_wifi_iface() into two functions
cc1fde3 batman-adv: send each broadcast only once on non-wireless interfaces
b459f99 batman-adv: fix typos in kernel doc & comments
2e4003c Merge branch 'next'
b3b036c Merge branch 'next'
30b5722 batman-adv: drop useless argument seqno in neighbor creation
ca32543 batman-adv: slightly improve neighbor creation debug message
0e7086c batman-adv: don't check the source address twice
ae9218e batman-adv: don't check compat version twice
c969b9e batman-adv: do not silently ignore wrong condition
1cc6cbc batman-adv: don't initialise batman_iv private members in hard-interface.c
c8bda21 batman-adv: Fix rcu_barrier() miss due to double call_rcu() in TT code
3d36bed Merge branch 'next'
1015463 batman-adv: use eth_hdr() when it makes sense
c941378 batman-adv: move ring_buffer helper functions in bat_iv_ogm
919495e Merge branch 'next'
3d1c46e Merge branch 'next'
1ba0222 batman-adv: move batadv_slide_own_bcast_window to bat_iv_ogm.c
90725dd batman-adv: refactor batadv_tt_local_event()
b10ac71 batman-adv: Avoid double freeing of bat_counters
6c2d441 Merge branch 'next'
1cacf96 batman-adv: don't deal with NET_IP_ALIGN manually
9d48211 Merge branch 'next'
0ff0af1 batman-adv: pass a 16bit long flag argument to tt_global_add()
68a3373 batman-adv: Remove unnecessary INIT_HLIST_NODE() calls
7b6b29f batman-adv: do not print orig nodes without nc neighbors on nc table print
0b1da17 batman-adv: change VID semantic in the BLA code
454b849 batman-adv: print the VID properly
ae72fda batman-adv: Move call to batadv_nc_skb_forward() from routing.c to send.c
49f0f59 batman-adv: Start new development cycle
d5e4a47 Merge remote-tracking branch 'origin/next'
675fbb4 Merge branch 'maint' into next
7996b58 Merge branch 'maint' into next
32cadb4 batman-adv: check proto length before accessing proto string buffer
d544c5e Merge branch 'maint' into next
4e564b0 batman-adv: remove white spaces in indentation
3269ba9 Merge branch 'maint' into next
675a590 Merge branch 'maint' into next
78c836c batman-adv: use VLAN_VID_MASK when printing the vid
64fc7ed batman-adv: use VLAN_VID_MASK instead of BATADV_VID_MASK
92bc8cd net: pass info struct via netdevice notifier
33da4be Merge branch 'maint' into next
052104b Merge branch 'maint' into next
3b378ce Merge branch 'maint' into next
b6afebb batman-adv: Update CHANGELOG for upcoming release
1dbfe42 batman-adv: Update compatible kernel version number