[OpenWrt-Devel] Opensource users asking for code on a github account you censored

2016-10-04 Thread Luke McKee
https://forum.openwrt.org/viewtopic.php?pid=340239#p340239 Look at that. It implies github doesn't support open-source. They support gay marriage activists having sex with 22 month old Russian infant instead. Restore my account before I do massive damage to your PR Luke

[OpenWrt-Devel] tdestroy in musl works differently to glibc?

2016-07-24 Thread Luke McKee
Slowly getting the accel-pppd package done... Lots of missing headers, as their usually are with musl vs glibc and a problem relating to atomic memory ops are already fixed as openwrt people bumped into the same issue with rtorrent. https://github.com/rakshasa/rtorrent/issues/156 error:

[OpenWrt-Devel] [PATCH] fix include/cmake.mk so it allows out of source tree builds

2016-07-23 Thread Luke McKee
/ci/master/tree/README This adds a new variable that can be used in Makefiles $(CMAKE_BINARY_DIR) Signed-off-by: Luke McKee hojur...@gmail.com @nbd168 agrees, patching the include is the only way to go. This also needs to get merged into LEDE or a new package I'm working on accel-ppp (give me

[OpenWrt-Devel] pppd: Someone please fix the Makefile to install net/pppd_defs.h so my pull request for rp-pppoe can go through

2016-07-16 Thread Luke McKee
out there now the minority of openwrt users who are interested in using this. Signed-off-by: Luke McKee hojur...@gmail.com https://dev.openwrt.org/ticket/21350 Seven months ago someone nagged for this to be fixed. That makes only two people that want this :) >Changed 7 months ago by @nbd168 >Resol

[OpenWrt-Devel] ar71xx: add tp-link 841nd-v9-vn board - 8mbit flash isp oem variant

2016-07-14 Thread Luke McKee
https://github.com/openwrt/openwrt/pull/29 https://github.com/openwrt/openwrt/pull/29/commits/84c616f66390230a2938f8db691e8093f1669ec2 Please see the commit message or the forum. This has been run-tested on the new hardware which is basically the same as a v9 board just with the larger flash size

[OpenWrt-Devel] procd ubox jsonfilter: dev question. how to properly handle interface changes per instance only in init scripts

2016-07-08 Thread Luke McKee
t;: "\/etc\/init.d\/mini_snmpd", "instances": { "instance1": { "command": [ "\/usr\/bin\/mini_snmpd", "-n", "-c", "public", "-C", "Luke McKee <hojur...@gmail.com>", "-t", "2"

Re: [OpenWrt-Devel] [LEDE-DEV] [PATCH] netifd: remove wireless device when device fails to setup

2016-07-06 Thread Luke McKee
The I think said patch would break scripts that see what devices are available as in CONFIGURED, and set up procd triggers to reload when the device is fixed or comes back online and gets given an IP address. If DFS pulls down a wifi then it should change ubus interface state to down, not remove

[OpenWrt-Devel] [PATCH] coova-chilli: Fix UCI parse error

2016-07-06 Thread Luke McKee
I'm interested in coova chilli too I will be making use of it again soon like I did 3/6 years ago :) There is a pull request to update it to the latest version: https://github.com/openwrt/packages/pull/2737/commits/f3898d3e2be47c414882b93d8f54e7bd919c4628 Previous message (by thread): On Wed,

[OpenWrt-Devel] mini_snmpd: coming back to openwrt soon & other matters

2016-07-06 Thread Luke McKee
Hey Devs, mini_snmpd went to oldpackages because the original developer's page went offline a few years ago, however it's been taken up by a new maintainer who's implemented all the previous 1.2b openwrt patches in a more ingenious way. The other fork isn't worth considering.

[OpenWrt-Devel] [RFD] Future - suggestion for the teleconference

2016-07-03 Thread Luke McKee
Suggestion for the teleconference: Talkshoe.com Talkshoe is free. It has a web client too with a chat log when the conference call starts. Someone make an account. It's got SIP and a US number. That way nobody get's everyone ease's IP addresses and nobody can play funny buggers with a firewall

Re: [OpenWrt-Devel] procd: patch to support busybox mkfs.ext2

2016-07-03 Thread Luke McKee
m.storchak at gmail dot com wrote: Is there a reason to use full path specification? Why can't mkfs.ext{2|4} be called and whichever is found first in PATH gets executed? In this case only one of e2fsprogs and busybox implementations should be required. Let busybox be default, but please leave an

[OpenWrt-Devel] [PATCH V3] Re: procd: patch to support busybox mkfs.ext2

2016-07-03 Thread Luke McKee
a configuration option to the Makefile if you want lz4 support config PROCD_ZRAM_TMPFS bool default n prompt "Mount /tmp using zram." endmenu & ifeq ($(CONFIG_PROCD_ZRAM_TMPFS_LZ4),y) CMAKE_OPTIONS += -DZRAM_TMPFS_LZ4=1 endif Signed-

Re: [OpenWrt-Devel] procd: patch v3 to support busybox mkfs.ext2

2016-07-03 Thread Luke McKee
To quote Arjen: If the only reason to switch to ext2 is to remove the journal, why not just add -O ^has_journal to the mount options? That's not a mount option. That's a tune2fs option. Journaling isn't the the only problem. The biggest problem is BLOAT. You need libext2+e2fsprogs

Re: [OpenWrt-Devel] procd: patch to support busybox mkfs.ext2

2016-07-02 Thread Luke McKee
3.0 in lzo. Can't hurt to go with the fastest. On 3 July 2016 at 07:10, Luke McKee <hojur...@gmail.com> wrote: > v2 of the patch. uses lz4 compression by default. lz4 is always > installed by openwrt Makefile Config.in if zram. > > lz4 is best for compressed filesystems as we

Re: [OpenWrt-Devel] procd: patch to support busybox mkfs.ext2

2016-07-02 Thread Luke McKee
v2 of the patch. uses lz4 compression by default. lz4 is always installed by openwrt Makefile Config.in if zram. lz4 is best for compressed filesystems as we all know (if you had to choose between that and lzo). zram-swap can keep using lzo for speed! I'll work in a compatibility patch for

Re: [OpenWrt-Devel] procd: patch to support busybox mkfs.ext2

2016-07-02 Thread Luke McKee
For some further background... the original procd zram patch uses ext2 :) https://dev.openwrt.org/ticket/19586#comment:9 https://lists.openwrt.org/pipermail/openwrt-devel/2014-December/029587.html It shows you what happens when someone enables this option from make menuconfig. There needs to be

[OpenWrt-Devel] procd: patch to support busybox mkfs.ext2

2016-07-02 Thread Luke McKee
Hi guys, This is a little one. Busybox mkfs.ext2 works and with this setup the ext4 module can mount /tmp without a journal. See #22666 I tested it. Also the Makefile for procd doesn't have any dependencies for busybox CONFIG_BUSYBOX_CONFIG_MKFS_EXT2=y OR e2fsprogs. See the zram-swap Makefile.