[OS-BUILD PATCH] redhat/configs: Enable CONFIG_LZ4_COMPRESS

2022-07-20 Thread Prarit Bhargava (via Email Bridge)
From: Prarit Bhargava redhat/configs: Enable CONFIG_LZ4_COMPRESS CONFIG_LZ4_COMPRESS is needed for Virtual Data Optimizer (VDO). Suggested-by: Andrew Walsh Signed-off-by: Prarit Bhargava diff --git a/redhat/configs/ark/generic/CONFIG_LZ4_COMPRESS b/redhat/configs/ark/generic/CONFIG_LZ4_COMP

Re: Latest rawhide kernel, kernel-5.19.0-0.rc6.20220714git4a57a8400075.49.fc37.src.rpm, builds but won't boot

2022-07-20 Thread stan via kernel
On Wed, 20 Jul 2022 08:19:17 -0700 stan via kernel wrote: > configuration options have changed. I think I will be opening a > bugzilla against dracut, just to get their input. https://bugzilla.redhat.com/show_bug.cgi?id=2109194 ___ kernel mailing list

Re: Latest rawhide kernel, kernel-5.19.0-0.rc6.20220714git4a57a8400075.49.fc37.src.rpm, builds but won't boot

2022-07-20 Thread stan via kernel
On Tue, 19 Jul 2022 15:36:09 -0700 stan via kernel wrote: > I downgraded dracut to a version (56) before the problem, and rebuilt > the initramfs for the local rc7 build. It still failed to boot with > the same symptom. So, I think that lets dracut off the hook. > Something else has changed th

[OS-BUILD PATCH 2/3] redhat/Makefile: Fix eln BUILD_TARGET

2022-07-20 Thread Prarit Bhargava (via Email Bridge)
From: Prarit Bhargava redhat/Makefile: Fix eln BUILD_TARGET When the DIST is set to .eln, the BUILD_TARGET should be eln. Suggested-by: Justin Forbes Signed-off-by: Prarit Bhargava diff --git a/redhat/Makefile b/redhat/Makefile index blahblah..blahblah 100644 --- a/redhat/Makefile +++ b/redh

[OS-BUILD PATCH 0/3] redhat/Makefile: BUILD_TARGET fixes

2022-07-20 Thread Prarit Bhargava (via Email Bridge)
From: Prarit Bhargava on gitlab.com Merge Request: https://gitlab.com/cki-project/kernel-ark/-/merge_requests/1913 Update the BUILD_TARGET for dist-brew and eln. Also update the documentation as 'make dist-brew' should work everywhere. Signed-off-by: Prarit Bhargava --- redhat/docs/faq.rst

[OS-BUILD PATCH 3/3] redhat/docs: Update brew information

2022-07-20 Thread Prarit Bhargava (via Email Bridge)
From: Prarit Bhargava redhat/docs: Update brew information Update the documention with the 'make dist-brew' target. Signed-off-by: Prarit Bhargava diff --git a/redhat/docs/faq.rst b/redhat/docs/faq.rst index blahblah..blahblah 100644 --- a/redhat/docs/faq.rst +++ b/redhat/docs/faq.rst @@ -72,

[OS-BUILD PATCH 1/3] redhat/Makefile: Set BUILD_TARGET for dist-brew

2022-07-20 Thread Prarit Bhargava (via Email Bridge)
From: Prarit Bhargava redhat/Makefile: Set BUILD_TARGET for dist-brew The 'dist-brew' target should always be rhel-9-scratch. Future proof this value by using $RHEL_MAJOR. Fix the brew target for the dist-brew Makefile target. Signed-off-by: Prarit Bhargava diff --git a/redhat/Makefile b/re

Re: [OS-BUILD PATCHv5 0/5] redhat/Makefile: Add dist-get-buildreqs target

2022-07-20 Thread Prarit Bhargava (via Email Bridge)
From: Prarit Bhargava on gitlab.com https://gitlab.com/cki-project/kernel-ark/-/merge_requests/1900#note_1032291625 Good idea. Added a pass message in a new version. ___ kernel mailing list -- kernel@lists.fedoraproject.org To unsubscribe send an email

[OS-BUILD PATCHv5 4/5] redhat/docs: Add information on build dependencies

2022-07-20 Thread Prarit Bhargava (via Email Bridge)
From: Prarit Bhargava redhat/docs: Add information on build dependencies Add a section on build dependencies. Signed-off-by: Prarit Bhargava diff --git a/redhat/docs/index.rst b/redhat/docs/index.rst index blahblah..blahblah 100644 --- a/redhat/docs/index.rst +++ b/redhat/docs/index.rst @@ -6

[OS-BUILD PATCHv5 5/5] .gitlab-ci.yaml: Add test for dist-get-buildreqs target

2022-07-20 Thread Prarit Bhargava (via Email Bridge)
From: Prarit Bhargava .gitlab-ci.yaml: Add test for dist-get-buildreqs target Add a test for the dist-get-buildreqs target. Signed-off-by: Prarit Bhargava diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index blahblah..blahblah 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -239,6 +239,27 @

[OS-BUILD PATCHv5 3/5] redhat/Makefile: Add better pass message for dist-get-buildreqs

2022-07-20 Thread Prarit Bhargava (via Email Bridge)
From: Prarit Bhargava redhat/Makefile: Add better pass message for dist-get-buildreqs The dist-get-buildreqs passes silently. Add a pass message for the target. Suggested-by: Patrick Talbert Signed-off-by: Prarit Bhargava diff --git a/redhat/Makefile b/redhat/Makefile index blahblah..blahbl

[OS-BUILD PATCHv5 2/5] redhat/Makefile: Provide a better message for system-sb-certs

2022-07-20 Thread Prarit Bhargava (via Email Bridge)
From: Prarit Bhargava redhat/Makefile: Provide a better message for system-sb-certs Most of the kernel build dependencies come from widely known repositories including EPEL, RHEL, and Fedora. The system-sb-certs package comes from a smaller RHEL and CS9 repository called CodeReady Linux Builder

[OS-BUILD PATCHv5 1/5] redhat/Makefile: Change dist-buildreq-check to a non-blocking target

2022-07-20 Thread Prarit Bhargava (via Email Bridge)
From: Prarit Bhargava redhat/Makefile: Change dist-buildreq-check to a non-blocking target Rename dist-buildreq-check to dist-get-buildreqs and make it non-blocking. Signed-off-by: Prarit Bhargava diff --git a/redhat/Makefile b/redhat/Makefile index blahblah..blahblah 100644 --- a/redhat/Make

[OS-BUILD PATCHv5 0/5] redhat/Makefile: Add dist-get-buildreqs target

2022-07-20 Thread Prarit Bhargava (via Email Bridge)
From: Prarit Bhargava on gitlab.com Merge Request: https://gitlab.com/cki-project/kernel-ark/-/merge_requests/1900 The dist-buildreq-check target is useful in a few ways but results in unnecessary errors in many cases. Instead of stopping the build, add a new target 'dist-get-buildreqs' that can

[OS-BUILD PATCHv4 4/4] .gitlab-ci.yaml: Add test for dist-get-buildreqs target

2022-07-20 Thread Prarit Bhargava (via Email Bridge)
From: Prarit Bhargava .gitlab-ci.yaml: Add test for dist-get-buildreqs target Add a test for the dist-get-buildreqs target. Signed-off-by: Prarit Bhargava diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index blahblah..blahblah 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -239,6 +239,27 @

[OS-BUILD PATCHv4 3/4] redhat/docs: Add information on build dependencies

2022-07-20 Thread Prarit Bhargava (via Email Bridge)
From: Prarit Bhargava redhat/docs: Add information on build dependencies Add a section on build dependencies. Signed-off-by: Prarit Bhargava diff --git a/redhat/docs/index.rst b/redhat/docs/index.rst index blahblah..blahblah 100644 --- a/redhat/docs/index.rst +++ b/redhat/docs/index.rst @@ -6

[OS-BUILD PATCHv4 0/4] redhat/Makefile: Add dist-get-buildreqs target

2022-07-20 Thread Prarit Bhargava (via Email Bridge)
From: Prarit Bhargava on gitlab.com Merge Request: https://gitlab.com/cki-project/kernel-ark/-/merge_requests/1900 The dist-buildreq-check target is useful in a few ways but results in unnecessary errors in many cases. Instead of stopping the build, add a new target 'dist-get-buildreqs' that can

[OS-BUILD PATCHv4 2/4] redhat/Makefile: Provide a better message for system-sb-certs

2022-07-20 Thread Prarit Bhargava (via Email Bridge)
From: Prarit Bhargava redhat/Makefile: Provide a better message for system-sb-certs Most of the kernel build dependencies come from widely known repositories including EPEL, RHEL, and Fedora. The system-sb-certs package comes from a smaller RHEL and CS9 repository called CodeReady Linux Builder

[OS-BUILD PATCHv4 1/4] redhat/Makefile: Change dist-buildreq-check to a non-blocking target

2022-07-20 Thread Prarit Bhargava (via Email Bridge)
From: Prarit Bhargava redhat/Makefile: Change dist-buildreq-check to a non-blocking target Rename dist-buildreq-check to dist-get-buildreqs and make it non-blocking. Signed-off-by: Prarit Bhargava diff --git a/redhat/Makefile b/redhat/Makefile index blahblah..blahblah 100644 --- a/redhat/Make