Re: [OpenWrt-Devel] [PATCH][include] Reduce configuration file entropy

2013-05-03 Thread Sergey Ryazanov
2013/5/1 Matthias Buecher / Germany : >> - $(call FIND_L, $(SCAN_DIR)) $(SCAN_EXTRA) -mindepth 1 $(if >> $(SCAN_DEPTH),-maxdepth $(SCAN_DEPTH)) -name Makefile | xargs grep >> -HE 'call (Build/DefaultTargets|Build(Package|Target)|.+Package)' | >> sed -e 's#^$(SCAN_DIR)/##' -e '

Re: [OpenWrt-Devel] [PATCH][include] Reduce configuration file entropy

2013-05-01 Thread Matthias Buecher / Germany
On 01.05.2013 01:21, Jonh Wendell wrote: > didn't try the patch, but I'm all for it, as it fixes a really annoying > behavior. > > > 2013/4/30 Sergey Ryazanov > > > Reducing entropy of configuration file, which is introduced by find > utility, by applying

Re: [OpenWrt-Devel] [PATCH][include] Reduce configuration file entropy

2013-04-30 Thread Jonh Wendell
didn't try the patch, but I'm all for it, as it fixes a really annoying behavior. 2013/4/30 Sergey Ryazanov > Reducing entropy of configuration file, which is introduced by find > utility, by applying sorting to its output. > > Find is used here to scan packages and targets subdirectories. Its

[OpenWrt-Devel] [PATCH][include] Reduce configuration file entropy

2013-04-30 Thread Sergey Ryazanov
Reducing entropy of configuration file, which is introduced by find utility, by applying sorting to its output. Find is used here to scan packages and targets subdirectories. Its output, known for its random ordering, determines the base order of configuration options. So let's fix that. Signed-o