From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH v7 00/23] Move toolchain configs and autobuild logic in-tree
Date: Tue, 25 Jul 2017 23:10:34 +0200 [thread overview]
Message-ID: <20170725231034.02a791e9@windsurf.home> (raw)
In-Reply-To: <20170721010530.4747-1-arnout@mind.be>
Hello,
On Fri, 21 Jul 2017 03:05:07 +0200, Arnout Vandecappelle
(Essensium/Mind) wrote:
> Arnout Vandecappelle (23):
> utils/genrandconfig: new script
> genrandconfig: use subprocess.check_output instead of Popen
> genrandconfig: fix (some) pep8 warnings
> genrandconfig: replace kwargs with explicit arguments
> genrandconfig: move instantiation of SystemInfo down
> genrandconfig: verbose output and use stderr
> genrandconfig: calculate outputdir in __main__
> genrandconfig: calculate buildrootdir in __main__
> genrandconfig: pass outputdir and buildrootdir as arguments
> genrandconfig: calculate configfile only once
> genrandconfig: fix the case when outputdir is 'output'
> support/test-pkg: move minimal.config into a separate file
> minimal.config: add BR2_COMPILER_PARANOID_UNSAFE_PATH=y
> minimal.config: add BR2_PACKAGE_BUSYBOX_SHOW_OTHERS=y
> genrandconfig: use minimal.config
> support: add autobuild toolchain config fragments
> test-pkg: get configs from in-tree toolchain-configs.csv
> support/test-pkg: add option to use an alternate toolchains CSV file
> genrandconfig: get configs from in-tree toolchain-configs.csv
> toolchain-configs.csv: remove unused libc column
> Makefile: refactor *config targets
> Makefile: add alldefconfig target
> test-pkg: use merge_config.sh to merge the fragments
Thanks, I've applied all patches, except "support/test-pkg: add option
to use an alternate toolchains CSV file", and replied to this one with
the explanation.
I only did a quick review, because the general direction is definitely
the right one, and I trust you to be there to fix issues :-)
Thanks for doing this, it was long overdue, and will definitely ease
the maintenance of autobuilder exceptions, and opens the path to
testing multiple branches.
Thanks!
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux and Kernel engineering
http://free-electrons.com
prev parent reply other threads:[~2017-07-25 21:10 UTC|newest]
Thread overview: 34+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-07-21 1:05 [Buildroot] [PATCH v7 00/23] Move toolchain configs and autobuild logic in-tree Arnout Vandecappelle
2017-07-21 1:05 ` [Buildroot] [PATCH v7 01/23] utils/genrandconfig: new script Arnout Vandecappelle
2017-07-21 1:05 ` [Buildroot] [PATCH v7 02/23] genrandconfig: use subprocess.check_output instead of Popen Arnout Vandecappelle
2017-07-21 1:05 ` [Buildroot] [PATCH v7 03/23] genrandconfig: fix (some) pep8 warnings Arnout Vandecappelle
2017-07-21 1:05 ` [Buildroot] [PATCH v7 04/23] genrandconfig: replace kwargs with explicit arguments Arnout Vandecappelle
2017-07-21 1:05 ` [Buildroot] [PATCH v7 05/23] genrandconfig: move instantiation of SystemInfo down Arnout Vandecappelle
2017-07-21 1:05 ` [Buildroot] [PATCH v7 06/23] genrandconfig: verbose output and use stderr Arnout Vandecappelle
2017-07-21 1:05 ` [Buildroot] [PATCH v7 07/23] genrandconfig: calculate outputdir in __main__ Arnout Vandecappelle
2017-07-21 1:05 ` [Buildroot] [PATCH v7 08/23] genrandconfig: calculate buildrootdir " Arnout Vandecappelle
2017-07-21 1:05 ` [Buildroot] [PATCH v7 09/23] genrandconfig: pass outputdir and buildrootdir as arguments Arnout Vandecappelle
2017-07-21 1:05 ` [Buildroot] [PATCH v7 10/23] genrandconfig: calculate configfile only once Arnout Vandecappelle
2017-07-21 1:05 ` [Buildroot] [PATCH v7 11/23] genrandconfig: fix the case when outputdir is 'output' Arnout Vandecappelle
2017-07-21 1:05 ` [Buildroot] [PATCH v7 12/23] support/test-pkg: move minimal.config into a separate file Arnout Vandecappelle
2017-07-21 7:01 ` Thomas Petazzoni
2017-07-21 1:05 ` [Buildroot] [PATCH v7 13/23] minimal.config: add BR2_COMPILER_PARANOID_UNSAFE_PATH=y Arnout Vandecappelle
2017-07-21 7:01 ` Thomas Petazzoni
2017-07-21 1:05 ` [Buildroot] [PATCH v7 14/23] minimal.config: add BR2_PACKAGE_BUSYBOX_SHOW_OTHERS=y Arnout Vandecappelle
2017-07-21 7:01 ` Thomas Petazzoni
2017-07-21 1:05 ` [Buildroot] [PATCH v7 15/23] genrandconfig: use minimal.config Arnout Vandecappelle
2017-07-21 1:05 ` [Buildroot] [PATCH v7 16/23] support: add autobuild toolchain config fragments Arnout Vandecappelle
2017-07-21 1:05 ` [Buildroot] [PATCH v7 17/23] test-pkg: get configs from in-tree toolchain-configs.csv Arnout Vandecappelle
2017-07-21 1:05 ` [Buildroot] [PATCH v7 18/23] support/test-pkg: add option to use an alternate toolchains CSV file Arnout Vandecappelle
2017-07-25 21:05 ` Thomas Petazzoni
2017-07-21 1:05 ` [Buildroot] [PATCH v7 19/23] genrandconfig: get configs from in-tree toolchain-configs.csv Arnout Vandecappelle
2017-07-21 1:05 ` [Buildroot] [PATCH v7 20/23] toolchain-configs.csv: remove unused libc column Arnout Vandecappelle
2017-07-21 1:05 ` [Buildroot] [PATCH v7 21/23] Makefile: refactor *config targets Arnout Vandecappelle
2017-07-21 1:05 ` [Buildroot] [PATCH v7 22/23] Makefile: add alldefconfig target Arnout Vandecappelle
2017-07-21 1:05 ` [Buildroot] [PATCH v7 23/23] test-pkg: use merge_config.sh to merge the fragments Arnout Vandecappelle
2017-07-21 1:06 ` [Buildroot] [PATCH v3 1/4] autobuild-run: use in-tree genrandconfig script (initial version) Arnout Vandecappelle
2017-07-21 1:06 ` [Buildroot] [PATCH v3 2/4] autobuild-run: adapt to genrandconfig without log_write Arnout Vandecappelle
2017-07-21 1:06 ` [Buildroot] [PATCH v3 3/4] autobuild-run: adapt to genrandconfig with outputdir and buildrootdir options Arnout Vandecappelle
2017-07-21 1:06 ` [Buildroot] [PATCH v3 4/4] autobuild-run: adapt to genrandconfig with toolchains-csv option Arnout Vandecappelle
2017-07-25 21:24 ` [Buildroot] [PATCH v3 1/4] autobuild-run: use in-tree genrandconfig script (initial version) Thomas Petazzoni
2017-07-25 21:10 ` Thomas Petazzoni [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20170725231034.02a791e9@windsurf.home \
--to=thomas.petazzoni@free-electrons.com \
--cc=buildroot@busybox.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox