Re: [OpenWrt-Devel] Cannot flash UBNT Loco M2

2016-03-11 Thread Joseph Marlin
- Original Message - From: "Outback Dingo" <outbackdi...@gmail.com> To: "Joseph Marlin" <jmar...@saucontech.com> Cc: "Bill Moffitt" <bmoff...@ayrstone.com>, openwrt-devel@lists.openwrt.org Sent: Friday, March 11, 2016 6:22:39 AM Subject: Re: [OpenWrt

Re: [OpenWrt-Devel] Cannot flash UBNT Loco M2

2016-02-12 Thread Joseph Marlin
Yes, we've been fighting this bug unsuccessfully for quite a while. It's the result of a new version of uboot changing the partition sizes. Here's the ticket: https://dev.openwrt.org/ticket/20982 - Original Message - From: "Outback Dingo" To: "Bill Moffitt"

Re: [OpenWrt-Devel] Copy file to target filesystem

2015-10-29 Thread Joseph Marlin
define Package/my_package/install $(INSTALL_DIR) $(1)/usr/sbin $(INSTALL_BIN) $(PKG_BUILD_DIR)/some_binary $(1)/usr/sbin/ endef Hope that helps! Joseph - Original Message - From: "Pratik Prajapati" To: "OpenWrt Development List"

Re: [OpenWrt-Devel] Designated Driver

2015-04-07 Thread Joseph Marlin
+1 - Original Message - From: edgar soldin edgar.sol...@web.de To: OpenWrt Development List openwrt-devel@lists.openwrt.org Sent: Tuesday, April 7, 2015 4:10:20 PM Subject: Re: [OpenWrt-Devel] Designated Driver hmm.. seems like all doodle polls, incl. the original one suffer from this

Re: [OpenWrt-Devel] Dynamically generate custom files before building?

2015-03-24 Thread Joseph Marlin
If I understand your question correctly, I think you'll find the default config files in: target/linux/your_architecture_here/base-files/etc/config/ Joseph Marlin - Original Message - From: Nguyễn Hồng Quân ng.hong.q...@gmail.com To: Christian Schoenebeck christian.schoeneb...@gmail.com

[OpenWrt-Devel] Patch to fix broken DHCP renewals with metric for AA

2015-03-13 Thread Joseph Marlin
:10.585079439 -0400 @@ -134,7 +134,10 @@ local mask=$2 local gw=$3 -append PROTO_ROUTE $target/$mask/$gw// +#Fix missing metric parameter +local metric=$4 + +append PROTO_ROUTE $target/$mask/$gw/$metric/ } proto_add_ipv6_route() { Thanks, Joseph