Hi,
I want to build radvd (>2.0 version) on OpenWrt but it supports radvd 1.9
version.
I have two options:
1) either configure OpenWrt to download radvd's 2.0 version instead of 1.9
or
2) disable radvd in oldpackages and create a new package for 2.0 version
under /openwrt/package/ (like this
htt
Hi,
What's the difference between following 2 methods in package makefile:
1) PKG_INSTALL:=1
logs:
make[2]: Leaving directory
`/home/pratik.prajapati/work/openwrt-radvd/openwrt-tip/openwrt/package/libs/toolchain'
make[2]: Entering directory
`/home/pratik.prajapati/work/openwrt-radvd/openwrt-tip/
Hi,
I want to build radvd-2.11 package in OpenWrt but i am unable to download
it using Makefile rules.
Makefile:
include $(TOPDIR)/rules.mk
PKG_NAME:=radvd
PKG_VERSION:=2.11
PKG_SOURCE_PROTO:=git
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).zip
-b new_branch_name
HEAD is now at e3e2b38... Makefile.am: add --with-check to packages target
On Mon, Jul 13, 2015 at 8:05 PM, Yousong Zhou wrote:
>
> On Jul 13, 2015 6:53 PM, "Pratik Prajapati"
> wrote:
> >
> > Hi,
> >
> > I want to build radvd
I was able to download radvd-2.11 using your changes. I was just worrying
about those git logs.
Thanks.
On Tue, Jul 14, 2015 at 12:28 PM, Yousong Zhou
wrote:
> On 14 July 2015 at 14:32, Pratik Prajapati
> wrote:
> > It worked but still i got some logs but don't know i should
Hi,
I was trying radvd (2.11) with two machines but my target couldn't assign
ipv6 address.
Setup:
Both machines (linux machine and OpenWrt ported embedded board) are
connected directly with LAN cable.
/etc/radvd.conf
interface eth0 {
AdvSendAdvert on;
MinRtrAdvInterval 3;
I have added that section on target's /etc/config/network file
but still ipv6 is not assigned to it
ifconfig on target:
eth0 Link encap:Ethernet HWaddr E2:AB:C0:A8:5F:38
inet6 addr: fe80::e0ab:c0ff:fea8:5f38/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric
Hi,
I want to run radvd on OpenWrt but its giving me syntax error in radvd.conf
radvd.conf:
config 'interface'
option 'interface' 'eth0'
option 'AdvSendAdvert' '1'
option 'AdvManagedFlag' '0'
option 'AdvOtherConfigFlag' '0'
config 'prefix'
>
>
> Cheers,
>
> Steven
>
>
>
> Am 24.07.2015 um 14:27 schrieb Pratik Prajapati:
>
> I have added that section on target's /etc/config/network file
>
> but still ipv6 is not assigned to it
>
> ifconfig on target:
>
> eth0 Link encap
On Fri, Jul 24, 2015 at 9:26 PM, Luiz Angelo Daros de Luca <
luizl...@gmail.com> wrote:
> This is a question for openwrt-users.
>
> Anyway, interface is the logical openwrt interface (lan, wan), not Linux
> devices.
> http://wiki.openwrt.org/doc/uci/radvd
>
> Regards,
>
>
Hi,
I we write makefile using this approach
https://dev.openwrt.org/browser/packages/ipv6/radvd/Makefile
make package/radvd/compile V=s works
but
make package/radvdump/compile V=s doesn't work
Why?
How to correct this?
___
openwrt-devel maili
will have content:
I tried adding argument in modules.mk flle like this, but no luck
AUTOLOAD:=$(call AutoLoad,31,/"=")
Please share How can I fix this or some useful links.
Best Regards,
Pratik Prajapati
___
openwrt-devel mailing list
openwrt-dev
Hi,
I want to set mac address for ethernet, wifi and 6lowpan interfaces. I
tried to add
macaddr option
in each lan, sta and wpan interface in /etc/config/network and then
restarted network (/etc/init.d/network restart) but no luck.
I found that there is macaddr_add() in
base-files/files/lib/funct
Hi,
I am trying to access a lua web page (.lp) hosted using uhttpd server in
openwrt installed on embedded board but i am getting following error:
Bad GatewayThe process did not produce any response
I checked on internet and there is no information for this error, i think
may be i can get some
Running .lp on shell gave me following error:
./index.lp: line1: can't open ?lua: no such file
./index.lp: line2: syntax error: unexpected word (expecting ")")
How to support LuaPages in uhttpd ?
Same lua page is working on buildroot using uhttpd.
On Thu, Oct 29, 2015 at 4:29 PM, Jo-Philipp Wi
>
> As expected, so its not actually a standalone CGI program but a script
> similar to a PHP file.
I have .lua for backend operation of .lp
You need to associate an interpreter with the *.lp extension which is
> able to process LuaPages. Not sure if such an interpreter exist, consult
> the Kepl
One more thing, cgilua's makefile in buildroot is having luarocks rule to
compile it but on openwrt i have just copied its makefile (
https://github.com/keplerproject/cgilua/blob/master/Makefile) changes (not
used luarocks)
On Thu, Oct 29, 2015 at 4:51 PM, Pratik Prajapati <
pratik.
Hi,
I want to compile cgilua package using luarocks (like this
https://github.com/maximeh/buildroot/blob/master/package/cgilua/cgilua.mk).
How to write makefile for that (means how to write 'eval BuildPackage')?
___
openwrt-devel mailing list
openwrt-de
Hi,
How to copy binary to target filesystem
(openwrt/staging_dir/target-xxx/root-xxx/usr/bin)?
I have tried following code but it copies that file into
'openwrt/build_dir/target-xxx/my_package/ipkg-install/usr/bin/'
snippet from my_package Makefile:
define Package/my_package/install
$(INSTA
that helps!
> Joseph
>
> - Original Message -
> From: "Pratik Prajapati"
> To: "OpenWrt Development List"
> Sent: Thursday, October 29, 2015 9:41:28 AM
> Subject: [OpenWrt-Devel] Copy file to target filesystem
>
> Hi,
>
> How to copy binary to targ
Hi,
I am trying to call a function registered on ubus from lua script. I know
how to call a argument less function but don't know the syntax of a
function with args (also how to add ubus timeout).
My lua script snippet:
require "ubus"
local conn = ubus.connect()
local status_1 = conn:call("my_i
Hi,
Is there any API documentation of ubus available?
If yes, where can i found those?
___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel
conn = ubus.connect(1000)
gives me following error:
attempt to index local 'conn' (a nil value)
On Fri, Nov 20, 2015 at 6:58 PM, Jo-Philipp Wich wrote:
> Hi.
>
> > I am trying to call a function registered on ubus from lua script. I
> > know how to call a argument less function but don't know
Gentle Reminder
On Fri, Nov 20, 2015 at 6:29 PM, Pratik Prajapati <
pratik.prajapat...@gmail.com> wrote:
> Hi,
>
> Is there any API documentation of ubus available?
>
> If yes, where can i found those?
>
>
___
openwrt-devel
;
> Apart from that, you can read procd, rpcd, uhttpd, netifd and ubus itself
> to see how to use it. I had plans on further documenting it but still
> didn't have time. You are welcome to further document it.
>
> On Sat, Nov 21, 2015 at 11:53 AM Pratik Prajapati <
>
25 matches
Mail list logo