Re: [OS-BUILD PATCHv2] enable the rtc-rv8803 driver on RHEL

2022-10-27 Thread pbrobinson (via Email Bridge)
From: pbrobinson on gitlab.com https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2121#note_1152049527 Please enable it in common not ark, it should in Fedora too to enable proper Edge testing right the way through from Fedora -> C9S -> RHEL. ___

Re: [OS-BUILD PATCHv3 0/5] redhat: python replacement for merge.pl

2022-10-27 Thread Clark Williams (via Email Bridge)
From: Clark Williams on gitlab.com https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2117#note_1151697795 Backed out the specfile BuildRequires and modified merge.py to be executable and have a shbang of /usr/bin/python3, modified build_configs.sh to execute ./merge.py rather than calling

[OS-BUILD PATCHv3 3/5] redhat: Use a context manager in merge.py for opening the config file for reading

2022-10-27 Thread Clark Williams (via Email Bridge)
From: Patrick Talbert redhat: Use a context manager in merge.py for opening the config file for reading Signed-off-by: Clark Williams diff --git a/redhat/configs/merge.py b/redhat/configs/merge.py index blahblah..blahblah 100755 --- a/redhat/configs/merge.py +++ b/redhat/configs/merge.py @@ -

[OS-BUILD PATCHv3 4/5] redhat: use 'update' method in merge.py

2022-10-27 Thread Clark Williams (via Email Bridge)
From: Patrick Talbert redhat: use 'update' method in merge.py Use the update method to update our baseconfigs dictionary rather than iterating Signed-off-by: Clark Williams diff --git a/redhat/configs/merge.py b/redhat/configs/merge.py index blahblah..blahblah 100755 --- a/redhat/configs/merg

[OS-BUILD PATCHv3 5/5] redhat: method.py: change the output loop to use 'values' method

2022-10-27 Thread Clark Williams (via Email Bridge)
From: Patrick Talbert redhat: method.py: change the output loop to use 'values' method We don't need the key values when printing the output file so just use the values method to fetch them Signed-off-by: Clark Williams diff --git a/redhat/configs/merge.py b/redhat/configs/merge.py index blah

[OS-BUILD PATCHv3 1/5] redhat: python replacement for merge.pl

2022-10-27 Thread Clark Williams (via Email Bridge)
From: Clark Williams redhat: python replacement for merge.pl Replace the (still functioning) merge.pl in redhat/configs with a python version (merge.py) for ease of maintenance. Signed-off-by: Clark Williams diff --git a/redhat/configs/build_configs.sh b/redhat/configs/build_configs.sh index

[OS-BUILD PATCHv3 2/5] redhat: automatically strip newlines in merge.py

2022-10-27 Thread Clark Williams (via Email Bridge)
From: Clark Williams redhat: automatically strip newlines in merge.py When reading configfiles call strip() to remove newlines, so that we can easily find blank lines Signed-off-by: Clark Williams diff --git a/redhat/configs/merge.py b/redhat/configs/merge.py index blahblah..blahblah 100755 -

[OS-BUILD PATCHv3 0/5] redhat: python replacement for merge.pl

2022-10-27 Thread Clark Williams (via Email Bridge)
From: Clark Williams on gitlab.com Merge Request: https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2117 Replace the (still functioning) merge.pl in redhat/configs with a python version (merge.py) for ease of maintenance. Signed-off-by: Clark Williams --- redhat/configs/build_configs.

Re: [OS-BUILD PATCHv2 0/6] redhat: python replacement for merge.pl

2022-10-27 Thread Justin M. Forbes (via Email Bridge)
From: Justin M. Forbes on gitlab.com https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2117#note_1151622605 `BuildRequires: python3-devel` This is already present. ___ kernel mailing list -- kernel@lists.fedoraproject.org To unsubscribe send an

Re: [OS-BUILD PATCHv2 0/6] redhat: python replacement for merge.pl

2022-10-27 Thread Clark Williams (via Email Bridge)
From: Clark Williams on gitlab.com https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2117#note_1151622156 Ok, I can remove the buildrequires and I'll change how we call it ___ kernel mailing list -- kernel@lists.fedoraproject.org To unsubscribe

Re: [OS-BUILD PATCHv2 0/6] redhat: python replacement for merge.pl

2022-10-27 Thread Herton R. Krzesinski (via Email Bridge)
From: Herton R. Krzesinski on gitlab.com https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2117#note_1151621759 Yes, python2 doesn't exist anymore, and python3 is the default. At least it hasn't been a problem. ___ kernel mailing list -- kernel@

Re: [OS-BUILD PATCHv2 0/6] redhat: python replacement for merge.pl

2022-10-27 Thread Clark Williams (via Email Bridge)
From: Clark Williams on gitlab.com https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2117#note_1151620288 Are we guaranteed to actually *have* python3 in the buildroot? ___ kernel mailing list -- kernel@lists.fedoraproject.org To unsubscribe sen

Re: [OS-BUILD PATCHv2 0/6] redhat: python replacement for merge.pl

2022-10-27 Thread Herton R. Krzesinski (via Email Bridge)
From: Herton R. Krzesinski on gitlab.com https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2117#note_1151619466 Wouldn't it be better to just do what we already do eg. for redhat/genlog.py (where it's called directly from redhat/genlog.sh)? ``` Add #!/usr/bin/python3 to the first line of

Re: [OS-BUILD PATCHv2 0/6] redhat: python replacement for merge.pl

2022-10-27 Thread Clark Williams (via Email Bridge)
From: Clark Williams on gitlab.com https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2117#note_1151608303 Added a commit that BuildRequires: python3 and python-unversioned-command packages. Hopefully that will allow the pipeline to run correctly ___

[OS-BUILD PATCHv2 6/6] redhat: update specfile to require python3 for builds

2022-10-27 Thread Clark Williams (via Email Bridge)
From: Clark Williams redhat: update specfile to require python3 for builds Signed-off-by: Clark Williams diff --git a/redhat/kernel.spec.template b/redhat/kernel.spec.template index blahblah..blahblah 100755 --- a/redhat/kernel.spec.template +++ b/redhat/kernel.spec.template @@ -579,7 +579,7 @

[OS-BUILD PATCHv2 5/6] redhat: method.py: change the output loop to use 'values' method

2022-10-27 Thread Clark Williams (via Email Bridge)
From: Patrick Talbert redhat: method.py: change the output loop to use 'values' method We don't need the key values when printing the output file so just use the values method to fetch them Signed-off-by: Clark Williams diff --git a/redhat/configs/merge.py b/redhat/configs/merge.py index blah

[OS-BUILD PATCHv2 3/6] redhat: Use a context manager in merge.py for opening the config file for reading

2022-10-27 Thread Clark Williams (via Email Bridge)
From: Patrick Talbert redhat: Use a context manager in merge.py for opening the config file for reading Signed-off-by: Clark Williams diff --git a/redhat/configs/merge.py b/redhat/configs/merge.py index blahblah..blahblah 100644 --- a/redhat/configs/merge.py +++ b/redhat/configs/merge.py @@ -

[OS-BUILD PATCHv2 1/6] redhat: python replacement for merge.pl

2022-10-27 Thread Clark Williams (via Email Bridge)
From: Clark Williams redhat: python replacement for merge.pl Replace the (still functioning) merge.pl in redhat/configs with a python version (merge.py) for ease of maintenance. Signed-off-by: Clark Williams diff --git a/redhat/configs/build_configs.sh b/redhat/configs/build_configs.sh index

[OS-BUILD PATCHv2 2/6] redhat: automatically strip newlines in merge.py

2022-10-27 Thread Clark Williams (via Email Bridge)
From: Clark Williams redhat: automatically strip newlines in merge.py When reading configfiles call strip() to remove newlines, so that we can easily find blank lines Signed-off-by: Clark Williams diff --git a/redhat/configs/merge.py b/redhat/configs/merge.py index blahblah..blahblah 100644 -

[OS-BUILD PATCHv2 4/6] redhat: use 'update' method in merge.py

2022-10-27 Thread Clark Williams (via Email Bridge)
From: Patrick Talbert redhat: use 'update' method in merge.py Use the update method to update our baseconfigs dictionary rather than iterating Signed-off-by: Clark Williams diff --git a/redhat/configs/merge.py b/redhat/configs/merge.py index blahblah..blahblah 100644 --- a/redhat/configs/merg

[OS-BUILD PATCHv2 0/6] redhat: python replacement for merge.pl

2022-10-27 Thread Clark Williams (via Email Bridge)
From: Clark Williams on gitlab.com Merge Request: https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2117 Replace the (still functioning) merge.pl in redhat/configs with a python version (merge.py) for ease of maintenance. Signed-off-by: Clark Williams --- redhat/configs/build_configs.

[OS-BUILD PATCH 5/5] redhat: method.py: change the output loop to use 'values' method

2022-10-27 Thread Clark Williams (via Email Bridge)
From: Patrick Talbert redhat: method.py: change the output loop to use 'values' method We don't need the key values when printing the output file so just use the values method to fetch them Signed-off-by: Clark Williams diff --git a/redhat/configs/merge.py b/redhat/configs/merge.py index blah

[OS-BUILD PATCH 3/5] redhat: Use a context manager in merge.py for opening the config file for reading

2022-10-27 Thread Clark Williams (via Email Bridge)
From: Patrick Talbert redhat: Use a context manager in merge.py for opening the config file for reading Signed-off-by: Clark Williams diff --git a/redhat/configs/merge.py b/redhat/configs/merge.py index blahblah..blahblah 100644 --- a/redhat/configs/merge.py +++ b/redhat/configs/merge.py @@ -

[OS-BUILD PATCH 4/5] redhat: use 'update' method in merge.py

2022-10-27 Thread Clark Williams (via Email Bridge)
From: Patrick Talbert redhat: use 'update' method in merge.py Use the update method to update our baseconfigs dictionary rather than iterating Signed-off-by: Clark Williams diff --git a/redhat/configs/merge.py b/redhat/configs/merge.py index blahblah..blahblah 100644 --- a/redhat/configs/merg

[OS-BUILD PATCH 2/5] redhat: automatically strip newlines in merge.py

2022-10-27 Thread Clark Williams (via Email Bridge)
From: Clark Williams redhat: automatically strip newlines in merge.py When reading configfiles call strip() to remove newlines, so that we can easily find blank lines Signed-off-by: Clark Williams diff --git a/redhat/configs/merge.py b/redhat/configs/merge.py index blahblah..blahblah 100644 -

[OS-BUILD PATCH 0/5] redhat: python replacement for merge.pl

2022-10-27 Thread Clark Williams (via Email Bridge)
From: Clark Williams on gitlab.com Merge Request: https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2117 Replace the (still functioning) merge.pl in redhat/configs with a python version (merge.py) for ease of maintenance. Signed-off-by: Clark Williams --- redhat/configs/build_configs.

[OS-BUILD PATCH 1/5] redhat: python replacement for merge.pl

2022-10-27 Thread Clark Williams (via Email Bridge)
From: Clark Williams redhat: python replacement for merge.pl Replace the (still functioning) merge.pl in redhat/configs with a python version (merge.py) for ease of maintenance. Signed-off-by: Clark Williams diff --git a/redhat/configs/build_configs.sh b/redhat/configs/build_configs.sh index

[OS-BUILD PATCHv2] enable the rtc-rv8803 driver on RHEL

2022-10-27 Thread David Arcari (via Email Bridge)
From: David Arcari enable the rtc-rv8803 driver on RHEL Enable CONFIG_RTC_DRV_RV8803 for x86 and arm for RHEL. Signed-off-by: David Arcari diff --git a/redhat/configs/ark/generic/arm/aarch64/CONFIG_RTC_DRV_RV8803 b/redhat/configs/ark/generic/arm/aarch64/CONFIG_RTC_DRV_RV8803 new file mode 10

[OS-BUILD PATCH] enable the rtc-rv8803 driver on RHEL

2022-10-27 Thread David Arcari (via Email Bridge)
From: David Arcari enable the rtc-rv8803 driver on RHEL Enable CONFIG_RTC_DRV_RV8803 for x86 and arm for RHEL. diff --git a/redhat/configs/ark/generic/arm/aarch64/CONFIG_RTC_DRV_RV8803 b/redhat/configs/ark/generic/arm/aarch64/CONFIG_RTC_DRV_RV8803 new file mode 100644 index blahblah..blahblah

Re: [OS-BUILD PATCH] perf tools: Fix man page build wrt perf-arm-coresight.txt

2022-10-27 Thread Justin M. Forbes (via Email Bridge)
From: Justin M. Forbes on gitlab.com https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2108#note_1151085979 This is upstream now. ___ kernel mailing list -- kernel@lists.fedoraproject.org To unsubscribe send an email to kernel-le...@lists.fedora