public inbox for isar-users@googlegroups.com
 help / color / mirror / Atom feed
* [PATCH 00/10] add ci40 machine support + new Isar features
@ 2019-10-24  9:02 Cedric Hombourger
  2019-10-24  9:02 ` [PATCH 01/10] ci_build.sh: delay "set -x" for a clean --help output Cedric Hombourger
                   ` (11 more replies)
  0 siblings, 12 replies; 40+ messages in thread
From: Cedric Hombourger @ 2019-10-24  9:02 UTC (permalink / raw)
  To: isar-users; +Cc: Cedric Hombourger

Add (basic) support for the Creator Ci40 board (mipsel) as a mean to validate our
mipsel architecture support on real hardware. Several enhancements to our kernel
recipes were created along the way:

 * update from 4.19.0 to 4.19.80
 * support for config fragments

but also some fixes:

 * honor the KERNEL_FILE setting (mips uses vmlinux instead of vmlinuz)
 * correct SRC_URI for -stable releases ending with "0" (e.g. 4.19.80)

All of this was ci_build tested with the other two patchsets I submitted earlier
this week, namely:

 * [PATCH 0/1] update bitbake to version 1.44.0
 * [PATCH v2 0/5] miscellaneous (minor) fixes

Cedric Hombourger (10):
  ci_build.sh: delay "set -x" for a clean --help output
  linux-custom: honor KERNEL_FILE setting
  bitbake.conf: set name of the qemu-static binary to use for mipsel
  recipes-kernel/linux: make KERNEL_DEFCONFIG support in-tree defconfigs
  linux-mainline: fix stripping of .0 from the kernel version
  linux-mainline: update from 4.19.0 to 4.19.80
  image: add CUSTOM_IMAGE_EXTENSIONS for user layers/machines to use
  linux-custom: add support for kernel config fragments
  linux-mainline: disable support for HFS to demonstrate use of config fragments
  meta-isar: add creator-ci40-marduk machine (mipsel + mainline kernel)

 .../creator-ci40-image-extension.bbclass      |  9 ++++++
 meta-isar/conf/local.conf.sample              |  1 +
 .../conf/machine/creator-ci40-marduk.conf     | 14 ++++++++
 .../creator-ci40-marduk-buster.conf           |  7 ++++
 ...tachio-set-KBUILD_IMAGE-to-uImage.gz.patch | 27 ++++++++++++++++
 .../recipes-kernel/linux/files/no-display.cfg |  1 +
 .../recipes-kernel/linux/files/no-fs-hfs.cfg  |  2 ++
 .../recipes-kernel/linux/files/no-fs-nfs.cfg  |  6 ++++
 .../recipes-kernel/linux/files/no-sound.cfg   |  1 +
 ...ne_4.19.0.bb => linux-mainline_4.19.80.bb} | 14 ++++++--
 meta/classes/image.bbclass                    |  5 ++-
 meta/conf/bitbake.conf                        |  2 ++
 .../linux/files/build-kernel.sh               | 13 ++++----
 meta/recipes-kernel/linux/linux-custom.inc    | 32 +++++++++++++++++--
 scripts/ci_build.sh                           |  4 ++-
 15 files changed, 124 insertions(+), 14 deletions(-)
 create mode 100644 meta-isar/classes/creator-ci40-image-extension.bbclass
 create mode 100644 meta-isar/conf/machine/creator-ci40-marduk.conf
 create mode 100644 meta-isar/conf/multiconfig/creator-ci40-marduk-buster.conf
 create mode 100644 meta-isar/recipes-kernel/linux/files/0001-MIPS-pistachio-set-KBUILD_IMAGE-to-uImage.gz.patch
 create mode 100644 meta-isar/recipes-kernel/linux/files/no-display.cfg
 create mode 100644 meta-isar/recipes-kernel/linux/files/no-fs-hfs.cfg
 create mode 100644 meta-isar/recipes-kernel/linux/files/no-fs-nfs.cfg
 create mode 100644 meta-isar/recipes-kernel/linux/files/no-sound.cfg
 rename meta-isar/recipes-kernel/linux/{linux-mainline_4.19.0.bb => linux-mainline_4.19.80.bb} (53%)

-- 
2.20.1


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

end of thread, other threads:[~2019-11-06 16:33 UTC | newest]

Thread overview: 40+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-10-24  9:02 [PATCH 00/10] add ci40 machine support + new Isar features Cedric Hombourger
2019-10-24  9:02 ` [PATCH 01/10] ci_build.sh: delay "set -x" for a clean --help output Cedric Hombourger
2019-10-24  9:02 ` [PATCH 02/10] linux-custom: honor KERNEL_FILE setting Cedric Hombourger
2019-10-24 17:57   ` Henning Schild
2019-10-24  9:02 ` [PATCH 03/10] bitbake.conf: set name of the qemu-static binary to use for mipsel Cedric Hombourger
2019-10-24  9:02 ` [PATCH 04/10] recipes-kernel/linux: make KERNEL_DEFCONFIG support in-tree defconfigs Cedric Hombourger
2019-10-24 18:02   ` Henning Schild
2019-11-06 16:03     ` Jan Kiszka
2019-11-06 16:17       ` Cedric Hombourger
2019-10-24  9:02 ` [PATCH 05/10] linux-mainline: fix stripping of .0 from the kernel version Cedric Hombourger
2019-11-06 16:04   ` Jan Kiszka
2019-10-24  9:02 ` [PATCH 06/10] linux-mainline: update from 4.19.0 to 4.19.80 Cedric Hombourger
2019-10-24  9:02 ` [PATCH 07/10] image: add CUSTOM_IMAGE_EXTENSIONS for user layers/machines to use Cedric Hombourger
2019-10-24 18:09   ` Henning Schild
2019-11-06 16:08     ` Jan Kiszka
2019-11-06 16:11       ` Cedric Hombourger
2019-11-06 16:16         ` Jan Kiszka
2019-11-06 16:19           ` Cedric Hombourger
2019-11-06 16:32             ` Jan Kiszka
2019-10-24  9:02 ` [PATCH 08/10] linux-custom: add support for kernel config fragments Cedric Hombourger
2019-10-24 18:21   ` Henning Schild
2019-10-24 18:25     ` Cedric Hombourger
2019-10-24 18:29       ` Henning Schild
2019-10-25  9:45     ` Cedric Hombourger
2019-10-24  9:02 ` [PATCH 09/10] linux-mainline: disable support for HFS to demonstrate use of " Cedric Hombourger
2019-10-24  9:02 ` [PATCH 10/10] meta-isar: add creator-ci40-marduk machine (mipsel + mainline kernel) Cedric Hombourger
2019-10-24 18:13   ` Henning Schild
2019-10-24 18:26     ` Henning Schild
2019-11-06 16:11     ` Jan Kiszka
2019-10-24 18:15 ` [PATCH 00/10] add ci40 machine support + new Isar features Henning Schild
2019-10-24 18:17   ` Cedric Hombourger
2019-10-25 17:39 ` [PATCH v2 0/7] custom kernel recipes enhancements (was Ci40 support) Cedric Hombourger
2019-10-25 17:39   ` [PATCH v2 1/7] linux-custom: honor KERNEL_FILE setting Cedric Hombourger
2019-10-25 17:39   ` [PATCH v2 2/7] bitbake.conf: set name of the qemu-static binary to use for mipsel Cedric Hombourger
2019-10-25 17:39   ` [PATCH v2 3/7] recipes-kernel/linux: make KERNEL_DEFCONFIG support in-tree defconfigs Cedric Hombourger
2019-10-25 17:39   ` [PATCH v2 4/7] linux-mainline: fix stripping of .0 from the kernel version Cedric Hombourger
2019-10-25 17:39   ` [PATCH v2 5/7] linux-mainline: update from 4.19.0 to 4.19.80 Cedric Hombourger
2019-10-25 17:39   ` [PATCH v2 6/7] linux-custom: add support for kernel config fragments Cedric Hombourger
2019-10-25 17:39   ` [PATCH v2 7/7] linux-mainline: disable support for HFS to demonstrate use of " Cedric Hombourger
2019-11-05 20:25     ` chombourger

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