Re: [LEDE-DEV] [PATCH 2/2] download.mk: introduce a new variable SKIPHASH

2017-10-26 Thread Yousong Zhou
On 26 October 2017 at 17:50, Baptiste Jonglez wrote: > When calling a download target, hash verification is now completely > skipped if the SKIPHASH variable is set. > > This allows to easily bump package version: > > # Update PKG_VERSION in the package Makefile >

Re: [LEDE-DEV] [OpenWrt-Devel] [PATCH v2] merge: add OpenWrt branding

2017-10-26 Thread Yousong Zhou
On 27 October 2017 at 00:32, Imre Kaloz wrote: > Hi Paul, > > On 2017-10-26 18:16, p...@oranjevos.nl wrote: > > Please, could you add some info on what has changed with the new version of > the patch ? > And, it would be appreciated when the SOB would not use an openwrt.org

Re: [LEDE-DEV] Testing ARM images

2017-10-26 Thread Philip Prindeville
> On Oct 25, 2017, at 8:32 PM, Yousong Zhou wrote: > > On 26 October 2017 at 08:08, Philip Prindeville > wrote: >> Hi. >> >> I was recently working on updating Perl 5.26.1 which required making >> machine-specific parameters for

Re: [LEDE-DEV] [PATCH v2] merge: add OpenWrt branding

2017-10-26 Thread Karl Palsson
Hannu Nyman wrote: > Zoltan HERPAI kirjoitti 26.10.2017 klo 18:41: > > + - > > + * 2 oz. Orange Juice Combine all juices in a > > + * 2 oz. Pineapple Juice tall glass filled with > > + * 2 oz. Grapefruit

Re: [LEDE-DEV] [OpenWrt-Devel] [RFC] A new developper documentation for OpenWrt/LEDE

2017-10-26 Thread Jo-Philipp Wich
Hi Baptiste, first of all I think that is a great initiative! > So, here is a RFC proposal of a new developer documentation based on > git and Sphinx: > > https://files.polyno.me/openwrt/doc/index.html git clone > git://git.polyno.me/openwrt-doc The layout is okay and the ASCII markup looks

[LEDE-DEV] Please add support for Easybox-904xDSL

2017-10-26 Thread Bongo79
Hi all, is it possible that somewhere add the great work from QAuge to the lede-project ? Support of the Easybox 904xDSL inside the next Major release will be great. https://forum.openwrt.org/viewtopic.php?id=3D44676 https://github.com/Quallenauge/Easybox-904-XDSL

Re: [LEDE-DEV] [PATCH v2] merge: add OpenWrt branding

2017-10-26 Thread John Norton
On 10/26/2017 9:05 PM, Dave Taht wrote: "Blurry fish butt" I think was (until recently) a codename for the linux kernel. It's just Torvalds making fun of codenames, the linux kernel "codename" isn't used anywhere outside of Torvalds posts. -Alberto

Re: [LEDE-DEV] [PATCH v2] merge: add OpenWrt branding

2017-10-26 Thread Dave Taht
Hannu Nyman writes: > Zoltan HERPAI kirjoitti 26.10.2017 klo 18:41: >> + - >> + * 2 oz. Orange Juice Combine all juices in a >> + * 2 oz. Pineapple Juice tall glass filled with >> + * 2 oz. Grapefruit Juice

Re: [LEDE-DEV] [PATCH v2] merge: add OpenWrt branding

2017-10-26 Thread Hannu Nyman
Zoltan HERPAI kirjoitti 26.10.2017 klo 18:41: + - + * 2 oz. Orange Juice Combine all juices in a + * 2 oz. Pineapple Juice tall glass filled with + * 2 oz. Grapefruit Juice ice, stir well. + * 2 oz. Cranberry Juice +

[LEDE-DEV] Merged: kernel: enable CONFIG_ADVISE_SYSCALLS

2017-10-26 Thread Jo-Philipp Wich
Merged into my staging tree with http://git.lede-project.org/?p=lede/jow/staging.git;a=commitdiff;h=bc584ac5d1. Thank you! ___ Lede-dev mailing list Lede-dev@lists.infradead.org http://lists.infradead.org/mailman/listinfo/lede-dev

Re: [LEDE-DEV] [PATCH v2] merge: add OpenWrt branding

2017-10-26 Thread por
Please, could you add some info on what has changed with the new version of the patch ? And, it would be appreciated when the SOB would not use an openwrt.org mail address (assuming Imre has another suitable mail available). Paul > Op 26 okt. 2017, om 17:41 heeft Zoltan HERPAI

[LEDE-DEV] 34c3 CyberCompetenceCenter Infrastructure

2017-10-26 Thread Arne Zachlod
Dear Free Infrastructure Enthusiasts, as you know the 34c3 is taking place in Leipzig and the organ team wants to shift more of the planning to the Communities.  The orga wants to place all assemblies that have an infrastructure focus into a "CyberCompetenceCenter Infratsructure" :) The years

[LEDE-DEV] [PATCH v2] merge: add OpenWrt branding

2017-10-26 Thread Zoltan HERPAI
Given that we've decided to sail under the same flag for the benefit of the whole community, and acknowledge the achievements of the LEDE project, let's start the final steps of the merge. The git and other sources are untouched until the infra merge. v2: - dismiss bugtracker and forum change

Re: [LEDE-DEV] [PATCH 2/2] download.mk: introduce a new variable SKIPHASH

2017-10-26 Thread Karl Palsson
Baptiste Jonglez wrote: > When calling a download target, hash verification is now > completely skipped if the SKIPHASH variable is set. > > This allows to easily bump package version: > > # Update PKG_VERSION in the package Makefile > $ make package//download

[LEDE-DEV] [PATCH 2/2] download.mk: introduce a new variable SKIPHASH

2017-10-26 Thread Baptiste Jonglez
When calling a download target, hash verification is now completely skipped if the SKIPHASH variable is set. This allows to easily bump package version: # Update PKG_VERSION in the package Makefile $ make package//download SKIPHASH=1 V=s $ make package//check FIXUP=1 V=s This will

[LEDE-DEV] [PATCH 1/2] scripts/download.pl: Add a --skip-hash option

2017-10-26 Thread Baptiste Jonglez
When the new "--skip-hash" option is passed to scripts/download.pl, hash verification of the downloaded files is completely skipped. This can be useful when bumping package version, since the hash may not be known in advance. Signed-off-by: Baptiste Jonglez ---