Hi,
Am Tue, 7 Feb 2017 08:39:53 -0800
schrieb Etienne Champetier :
> [..]
> Haven't looked how debian and others are doing telemetry
Debian uses the package "popularity contest". It submits the ist of installed
(and based on file timestamps: used) packages along with a unique host ID
(AFAIK). T
Hi Michael,
Am Wed, 14 Dec 2016 09:29:18 -0500
schrieb Michael Richardson :
> Jo-Philipp Wich wrote:
> > a recent mailing list post from a DMARC enabled domain caused a large
> > flood of bounces from various mail providers, causing an automatic
> > disabling of about 190 subscripti
Hi,
Am Tue, 22 Nov 2016 10:12:53 -
schrieb Karl Palsson :
> [..]
> The life of the "service start|stop|status" really wasn't
> very long.
I just looked up the changelog of sysvinit-utils in Debian: this wrapper was
introduced in 2009. Seven years is not that bad, I guess.
Anyway: the wrapp
Hello Oswald,
Am Sat, 1 Oct 2016 09:35:47 +0200
schrieb Oswald Buddenhagen :
> On Fri, Sep 30, 2016 at 11:50:09PM +0200, Lars Kruse wrote:
> > Am Fri, 30 Sep 2016 22:02:15 +0200 schrieb Jan-Tarek Butt :
> >
> [...]
> >
> > Just out of curiosity: do you know
Hi Jan-Tarek,
Am Sat, 1 Oct 2016 21:37:14 +0200
schrieb Jan-Tarek Butt :
> > I am not sure, if this script is supposed to break on every missing libdir
> > (I
> > do not know the context). Thus maybe " && " would be better instead ";"?
> > This would prevent unwanted directories (e.g. the curre
Hi Oswald,
Am Sat, 1 Oct 2016 11:09:48 +0200
schrieb Oswald Buddenhagen :
> this won't work, because it makes the loop body a subshell, and thus the
> assignment of SELECTED will get lost.
Right. I missed that.
> to achieve the goal with minimal effort, adding
>
> local IFS=$'\n'
>
> pri
Hi Jan-Tarek,
Am Sat, 1 Oct 2016 01:27:24 +0200
schrieb Jan-Tarek Butt :
> > Is there a reason for not adding quotes for CE_VERSION and FILE_NUM?
>
> bacause there just nummeric.
personally I would add quotes wherever possible. They would not hurt here.
Whenever I will read the above line
Hello Daniel,
Am Fri, 30 Sep 2016 18:39:39 +0300
schrieb Daniel Petre :
> > CONFIG_TARGET_ROOTFS_SQUASHFS=y
> > CONFIG_TARGET_SQUASHFS_BLOCK_SIZE=256
> >
> > You could try setting the blocksize to 1024 - this should make a
> > noticeable difference as squashfs can compress better.
>
> Awesome
Hi,
Am Sat, 1 Oct 2016 00:11:23 +0200
schrieb Martin Tippmann :
> [..]
> I'm not a shell pro but I found it very difficult to impossible to
> write something that passes without any hints/errors.
>
> There is a way to avoid this by using special comments that prevent
> shellcheck from nagging a
Hi Jan-Tarek,
I think, this is just a change based on style preferences, or?
Using single quotes specifically for situation where expansion is not intended
feels quite explicite and clear to me - thus personally I would prefer to stick
with single quotes instead of double quotes combined with esca
Hi,
Am Fri, 30 Sep 2016 22:02:27 +0200
schrieb Jan-Tarek Butt :
> ---
> scripts/deptest.sh | 8
> 1 file changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/scripts/deptest.sh b/scripts/deptest.sh
> index 8c859ef..0b0e7a9 100755
> --- a/scripts/deptest.sh
> +++ b/scripts/deptest
Hi Jan-Tarek,
Am Fri, 30 Sep 2016 22:02:26 +0200
schrieb Jan-Tarek Butt :
> - cc="$@"
> + cc="$*"
as far as I understand $* and $@, there should be no difference in this
context, or?
Cheers,
Lars
___
Lede-dev mailing list
Led
Hi Jan-Tarek,
Am Fri, 30 Sep 2016 22:02:25 +0200
schrieb Jan-Tarek Butt :
> ---
> scripts/config/lxdialog/check-lxdialog.sh | 16 +++-
> scripts/diffconfig.sh | 16 +++-
> scripts/ext-toolchain.sh | 43
> +-- 3 file
Hi Jan-Tarek,
Am Fri, 30 Sep 2016 22:02:24 +0200
schrieb Jan-Tarek Butt :
> ---
> scripts/getver.sh | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/scripts/getver.sh b/scripts/getver.sh
> index f8b4ed3..27f246e 100755
> --- a/scripts/getver.sh
> +++ b/scripts/getve
Hi Jan-Tarek,
Am Fri, 30 Sep 2016 22:02:21 +0200
schrieb Jan-Tarek Butt :
> diff --git a/scripts/strip-kmod.sh b/scripts/strip-kmod.sh
> index ef35b82..2946408 100755
> --- a/scripts/strip-kmod.sh
> +++ b/scripts/strip-kmod.sh
> @@ -50,6 +50,6 @@ $3 && $2 ~ /[brtd]/ && $3 !~ /\$LC/ && !def[$3] {
Hi,
Am Fri, 30 Sep 2016 22:02:20 +0200
schrieb Jan-Tarek Butt :
> ---
> scripts/make-ipkg-dir.sh | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/scripts/make-ipkg-dir.sh b/scripts/make-ipkg-dir.sh
> index 529e430..9e38df5 100755
> --- a/scripts/make-ipkg-dir.sh
> +
Hi,
Am Fri, 30 Sep 2016 22:02:19 +0200
schrieb Jan-Tarek Butt :
> diff --git a/scripts/clean-package.sh b/scripts/clean-package.sh
> index 5cae341..9efcac5 100755
> --- a/scripts/clean-package.sh
> +++ b/scripts/clean-package.sh
> @@ -8,14 +8,14 @@
> exit 1
> }
> cat "$1" | (
> - cd
Hi Jan-Tarek,
first of all: I am very happy to see your patches!
Whenever I took a look at some shell scripts in openwrt, I felt the strong urge
to change many of the things you went out to fix. But until now I was always
stopped by the sheer amount of changes necessary. Thank you!
Am Fri, 30 Se
Hello Valent,
Am Wed, 28 Sep 2016 13:25:20 +0200
schrieb "valent.turko...@gmail.com" :
> Github has become de facto standard for contributing to open source
> projects, so no matter if you hate it or love it, this is just now the
> new norm.
> Going against the "norm" is seen by potential contri
Hi Dave,
Am Sun, 12 Jun 2016 08:23:04 -0700
schrieb Dave Taht :
> Groovy. There are quite a few other devices that have POE (edgerouter
> is the first that comes to mind), perhaps this can be built on
> generically?
here should be the proper place (it was changed after my patch):
https://git.
Hi Dave,
> D) https://github.com/dtaht/ceropackages-3.10/tree/master/utils/nanom5poe
>
> I don't know what landed upstream to control poe for the nano-m5
> radios, if anything?
I submitted a patch (that was accepted) for GPIO-based POE control - at least
for Nanostations XM/XW and for TP-Link CP
21 matches
Mail list logo