[OS-BUILD PATCH 0/0] Fedora arm 5.17 updates

2022-04-04 Thread pbrobinson (via Email Bridge)
From: pbrobinson on gitlab.com Merge Request: https://gitlab.com/cki-project/kernel-ark/-/merge_requests/1731 NOTE: Truncated patchset due to missing public @redhat.com email address on your GitLab profile at https://gitlab.com/-/profile. Once that is fixed, close and reopen the merge r

Re: [OS-BUILD PATCH] redhat/kernel.spec.template: Fix intel-speed-select compile

2022-04-04 Thread Herton R. Krzesinski (via Email Bridge)
From: Herton R. Krzesinski on gitlab.com https://gitlab.com/cki-project/kernel-ark/-/merge_requests/1721#note_899628813 Yes I'll try to do it here. Also, if you need to just get the build working, feel free to keep the change on spec only not using full flags, until we get the Makefile change upst

Re: [OS-BUILD PATCH] redhat/kernel.spec.template: Fix intel-speed-select compile

2022-04-04 Thread Herton R. Krzesinski (via Email Bridge)
From: Herton R. Krzesinski on gitlab.com https://gitlab.com/cki-project/kernel-ark/-/merge_requests/1721#note_899632055 By not using full flags I mean you can drop the %make invocation and call it directly as a quick workaround, until we get it fixed. __

Re: [OS-BUILD PATCH] redhat/kernel.spec.template: Fix intel-speed-select compile

2022-04-04 Thread Justin M. Forbes (via Email Bridge)
From: Justin M. Forbes on gitlab.com https://gitlab.com/cki-project/kernel-ark/-/merge_requests/1721#note_899643862 Friday I just fixed things up by hand in dist-git, and I had planed to do the same for rc1, but would like to just get things include-in-releases at least until we get proper acks. _

[OS-BUILD PATCH] redhat: indicate HEAD state in tarball/rpm name

2022-04-04 Thread Jarod Wilson (via Email Bridge)
From: Jarod Wilson redhat: indicate HEAD state in tarball/rpm name For the non-Fedora (RHEL) case, we are looking to move to a setup where we include Merge Requests as soon as they are ready, and thus the head of main may not always be a tagged build. This gives some indication to someone basing

[OS-BUILD PATCH] tools/power/x86/intel-speed-select: fix build failure when using -Wl,--as-needed

2022-04-04 Thread Herton R. Krzesinski (via Email Bridge)
From: Herton R. Krzesinski tools/power/x86/intel-speed-select: fix build failure when using -Wl,--as-needed Upstream Status: patch submitted to platform-driver-x86/upstream maintainer Build of intel-speed-select will fail if you run: $ LDFLAGS="-Wl,--as-needed" /usr/bin/make V=1 ... gcc -O2 -W

Re: [OS-BUILD PATCH] redhat/kernel.spec.template: Fix intel-speed-select compile

2022-04-04 Thread Herton R. Krzesinski (via Email Bridge)
From: Herton R. Krzesinski on gitlab.com https://gitlab.com/cki-project/kernel-ark/-/merge_requests/1721#note_900260336 Justin, just opened this MR: https://gitlab.com/cki-project/kernel- ark/-/merge_requests/1736 ___ kernel mailing list -- kernel@lists.

Re: [OS-BUILD PATCH] redhat/kernel.spec.template: Fix intel-speed-select compile

2022-04-04 Thread Justin M. Forbes (via Email Bridge)
From: Justin M. Forbes on gitlab.com https://gitlab.com/cki-project/kernel-ark/-/merge_requests/1721#note_900288988 Thanks, just used that to build kernel-tools for Fedora. We do have a different make call there though, and I had to append the include, so my lines are: %{tools_make} CFLAGS+="-D_G

Re: [OS-BUILD PATCH] redhat/kernel.spec.template: Fix intel-speed-select compile

2022-04-04 Thread Herton R. Krzesinski (via Email Bridge)
From: Herton R. Krzesinski on gitlab.com https://gitlab.com/cki-project/kernel-ark/-/merge_requests/1721#note_900324237 So the problem of CFLAGS is that tools_make calls ```make CFLAGS=(...)``` instead of ```CFLAGS=(...) make```, the first form overrides the Makefile CFLAGS and then you need to ag