DistroKit Mailinglist
 help / color / mirror / Atom feed
* [DistroKit] [PATCH v2 00/16] Barebox Update and Cleanup
@ 2019-11-04 21:21 Michael Olbrich
  2019-11-04 21:21 ` [DistroKit] [PATCH v2 01/16] v7a: barebox-common: modify oldconfig to affect all bareboxes Michael Olbrich
                   ` (16 more replies)
  0 siblings, 17 replies; 19+ messages in thread
From: Michael Olbrich @ 2019-11-04 21:21 UTC (permalink / raw)
  To: distrokit; +Cc: Michael Olbrich

Hi,

Changes since v1:

- the extra environment handling is now a separate patch and the config
  files are modifed correctly to ensure that the environment is actually
  found.
- one aditional patch to run qemu with only one CPU core: otherwise barebox
  does not start.

Michael

Ahmad Fatoum (3):
  v7a: barebox-common: modify oldconfig to affect all bareboxes
  v7a: barebox-common: add clean target that affects all bareboxes
  v7a: barebox: version bump 2019.08.1 → 2019.10.0

Michael Olbrich (13):
  barebox-vexpress: sync with latest barebox template
  barebox-mx6: sync with latest barebox template
  barebox-rpi2: sync with latest barebox template
  barebox-am335x-mlo: sync with latest barebox template
  barebox-am335x: sync with latest barebox template
  barebox-common: sync with latest barebox template
  barebox-vexpress: remove installed files
  barebox-rpi2: don't add a suffix to the images
  barebox-am335x-mlo: actually remove images during 'clean'
  barebox-am335x: actually remove images during 'clean'
  barebox-mx6: actually remove images during 'clean'
  barebox: create the .ptxdist-defaultenv symlink in the build dir
  platform-v7a: vexpress: use only one core for barebox

 .../platform-v7a/barebox-am335x-mlo.config    |  8 ++-
 configs/platform-v7a/barebox-am335x.config    | 21 ++++++-
 .../platform-v7a/barebox-am335x.config.diff   | 12 ++--
 configs/platform-v7a/barebox-mx6.config       | 18 +++++-
 configs/platform-v7a/barebox-mx6.config.diff  |  8 +--
 configs/platform-v7a/barebox-rpi2.config      | 13 ++++-
 configs/platform-v7a/barebox-rpi2.config.diff |  2 +-
 configs/platform-v7a/barebox-vexpress.config  | 13 ++++-
 .../platform-v7a/barebox-vexpress.config.diff |  2 +-
 configs/platform-v7a/barebox.config           | 13 ++++-
 .../platform-v7a/config/images/rpi2.config    |  2 +-
 .../platform-v7a/config/images/rpi3.config    |  2 +-
 configs/platform-v7a/platformconfig           |  4 +-
 .../rules/barebox-am335x-mlo.make             | 41 +++++++------
 .../platform-v7a/rules/barebox-am335x.make    | 55 +++++++++---------
 .../platform-v7a/rules/barebox-common.make    | 58 ++++++++++---------
 configs/platform-v7a/rules/barebox-mx6.make   | 45 +++++++-------
 configs/platform-v7a/rules/barebox-rpi2.make  | 45 +++++++-------
 .../platform-v7a/rules/barebox-vexpress.make  | 51 ++++++++--------
 configs/platform-v7a/run                      |  1 +
 rules/post/barebox-common.make                | 22 +++++++
 21 files changed, 266 insertions(+), 170 deletions(-)
 create mode 100644 rules/post/barebox-common.make

-- 
2.20.1


_______________________________________________
DistroKit mailing list
DistroKit@pengutronix.de

^ permalink raw reply	[flat|nested] 19+ messages in thread

end of thread, other threads:[~2019-11-04 22:42 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-11-04 21:21 [DistroKit] [PATCH v2 00/16] Barebox Update and Cleanup Michael Olbrich
2019-11-04 21:21 ` [DistroKit] [PATCH v2 01/16] v7a: barebox-common: modify oldconfig to affect all bareboxes Michael Olbrich
2019-11-04 21:21 ` [DistroKit] [PATCH v2 02/16] v7a: barebox-common: add clean target that affects " Michael Olbrich
2019-11-04 21:21 ` [DistroKit] [PATCH v2 03/16] v7a: barebox: version bump 2019.08.1 → 2019.10.0 Michael Olbrich
2019-11-04 21:21 ` [DistroKit] [PATCH v2 04/16] barebox-vexpress: sync with latest barebox template Michael Olbrich
2019-11-04 21:21 ` [DistroKit] [PATCH v2 05/16] barebox-mx6: " Michael Olbrich
2019-11-04 21:21 ` [DistroKit] [PATCH v2 06/16] barebox-rpi2: " Michael Olbrich
2019-11-04 21:21 ` [DistroKit] [PATCH v2 07/16] barebox-am335x-mlo: " Michael Olbrich
2019-11-04 21:21 ` [DistroKit] [PATCH v2 08/16] barebox-am335x: " Michael Olbrich
2019-11-04 21:21 ` [DistroKit] [PATCH v2 09/16] barebox-common: " Michael Olbrich
2019-11-04 21:21 ` [DistroKit] [PATCH v2 10/16] barebox-vexpress: remove installed files Michael Olbrich
2019-11-04 21:21 ` [DistroKit] [PATCH v2 11/16] barebox-rpi2: don't add a suffix to the images Michael Olbrich
2019-11-04 21:21 ` [DistroKit] [PATCH v2 12/16] barebox-am335x-mlo: actually remove images during 'clean' Michael Olbrich
2019-11-04 21:21 ` [DistroKit] [PATCH v2 13/16] barebox-am335x: " Michael Olbrich
2019-11-04 21:21 ` [DistroKit] [PATCH v2 14/16] barebox-mx6: " Michael Olbrich
2019-11-04 21:21 ` [DistroKit] [PATCH v2 15/16] barebox: create the .ptxdist-defaultenv symlink in the build dir Michael Olbrich
2019-11-04 21:21 ` [DistroKit] [PATCH v2 16/16] platform-v7a: vexpress: use only one core for barebox Michael Olbrich
2019-11-04 22:10 ` [DistroKit] [PATCH v2 00/16] Barebox Update and Cleanup Robert Schwebel
2019-11-04 22:42   ` Robert Schwebel

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox