[OpenWrt-Devel] libcap package v1

2011-11-11 Thread Peter Wagner
updated Makefile On Freitag, 11. November 2011 12:01:21 Peter Wagner wrote: Hi, this Makefile adds libcap to Openwrt. This is a slightly modified version to jows version that he posted in juli in the openwrt forum. It is needed for the ntpd package to run as none root user. /Peter

[OpenWrt-Devel] Help -- Noob Question -- Driving Me Crazy

2011-11-11 Thread Mike Brady
Can someone tell be or direct me to an example of how to put a linux version conditional into an OpenWrt package Makefile please? What I want to do is say if this is and version of Linux 2.4 then do stufft. I've tried something like ifeq ($(CONFIG_LINUX_2_4),1) do stuff endif but no

Re: [OpenWrt-Devel] Help -- Noob Question -- Driving Me Crazy

2011-11-11 Thread edgar . soldin
On 11.11.2011 20:51, Mike Brady wrote: Can someone tell be or direct me to an example of how to put a linux version conditional into an OpenWrt package Makefile please? What I want to do is say if this is and version of Linux 2.4 then do stufft. I've tried something like ifeq

[OpenWrt-Devel] modifying sk_buff

2011-11-11 Thread abhinav narain
hi, I am trying to add a header in driver ath9k. I am doing it by adding the header by using skb_put(..) and increment the skb-data pointer. Then adding the usual skb content after it by using skb_put(). I finally call netif_rx() to push the skb to upper layers, and can see a notification that it

Re: [OpenWrt-Devel] modifying sk_buff

2011-11-11 Thread abhinav narain
When I comment the call to ieee80211_rx_monitor() in ieee80211_rx() and recompile the driver, my router keeps rebooting. On Fri, Nov 11, 2011 at 8:56 PM, abhinav narain abhinavnarai...@gmail.comwrote: hi, I am trying to add a header in driver ath9k. I am doing it by adding the header by