From: chombourger@gmail.com
To: isar-users <isar-users@googlegroups.com>
Subject: Re: [PATCH v2 7/7] linux-mainline: disable support for HFS to demonstrate use of config fragments
Date: Tue, 5 Nov 2019 12:25:29 -0800 (PST) [thread overview]
Message-ID: <469fffbc-a9bb-4e45-b269-62f40feb224c@googlegroups.com> (raw)
In-Reply-To: <1572025154-1312-8-git-send-email-Cedric_Hombourger@mentor.com>
[-- Attachment #1.1: Type: text/plain, Size: 1804 bytes --]
to avoid further confusion, this thread should be considered closed. I have
refactored my patches to have all linux-custom changes in one series
I now have a clean patch for the the ci40 but will be submitting it only
after the kernel recipe rework is accepted
On Friday, October 25, 2019 at 7:40:50 PM UTC+2, Cedric Hombourger wrote:
>
> Signed-off-by: Cedric Hombourger <Cedric_H...@mentor.com <javascript:>>
> ---
> meta-isar/recipes-kernel/linux/files/no-fs-hfs.cfg | 2 ++
> meta-isar/recipes-kernel/linux/linux-mainline_4.19.80.bb | 4 +++-
> 2 files changed, 5 insertions(+), 1 deletion(-)
> create mode 100644 meta-isar/recipes-kernel/linux/files/no-fs-hfs.cfg
>
> diff --git a/meta-isar/recipes-kernel/linux/files/no-fs-hfs.cfg
> b/meta-isar/recipes-kernel/linux/files/no-fs-hfs.cfg
> new file mode 100644
> index 0000000..5dbfadb
> --- /dev/null
> +++ b/meta-isar/recipes-kernel/linux/files/no-fs-hfs.cfg
> @@ -0,0 +1,2 @@
> +# CONFIG_FS_HFS is not set
> +# CONFIG_HFSPLUS_FS is not set
> diff --git a/meta-isar/recipes-kernel/linux/linux-mainline_4.19.80.bb
> b/meta-isar/recipes-kernel/linux/linux-mainline_4.19.80.bb
> index b41d1a8..83038f0 100644
> --- a/meta-isar/recipes-kernel/linux/linux-mainline_4.19.80.bb
> +++ b/meta-isar/recipes-kernel/linux/linux-mainline_4.19.80.bb
> @@ -11,7 +11,9 @@ ARCHIVE_VERSION = "${@ d.getVar('PV')[:-2] if
> d.getVar('PV').endswith('.0') else
>
> SRC_URI += " \
>
> https://cdn.kernel.org/pub/linux/kernel/v4.x/linux-${ARCHIVE_VERSION}.tar.xz
> \
> - file://x86_64_defconfig"
> + file://x86_64_defconfig \
> + file://no-fs-hfs.cfg"
> +
> SRC_URI[sha256sum] =
> "80a9ba764e088aa7fddfef5a97c0236905e291468a37832243b6f3828d36e7ec"
>
> SRC_URI_append_de0-nano-soc = " \
> --
> 2.20.1
>
>
[-- Attachment #1.2: Type: text/html, Size: 5251 bytes --]
prev parent reply other threads:[~2019-11-05 20:25 UTC|newest]
Thread overview: 40+ messages / expand[flat|nested] mbox.gz Atom feed top
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 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=469fffbc-a9bb-4e45-b269-62f40feb224c@googlegroups.com \
--to=chombourger@gmail.com \
--cc=isar-users@googlegroups.com \
/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