Re: [OS-BUILD PATCHv6 0/5] Fix bug 1882854

2020-11-29 Thread GitLab Bridge on behalf of Paulo Edgar Castro
From: Paulo Edgar Castro on gitlab.com https://gitlab.com/cki-project/kernel-ark/-/merge_requests/761#note_456601938 > |I reviewed your patchset and aside from a nitpick in patch1, I am ok > with it (though I wish there was a better way).| |I've corrected that. I noticed there was duplication in

[OS-BUILD PATCHv6 3/5] Add tools to path mangling script.

2020-11-29 Thread GitLab Bridge on behalf of pecastro
From: "Paulo E. Castro" Signed-off-by: Paulo E. Castro --- redhat/kernel.spec.template | 5 + 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/redhat/kernel.spec.template b/redhat/kernel.spec.template index 8ae48bedf7f0..afc03bacd385 100755 --- a/redhat/kernel.spec.template +++

[OS-BUILD PATCHv6 5/5] Remove cp instruction already handled in instruction below.

2020-11-29 Thread GitLab Bridge on behalf of pecastro
From: "Paulo E. Castro" Signed-off-by: Paulo E. Castro --- redhat/kernel.spec.template | 1 - 1 file changed, 1 deletion(-) diff --git a/redhat/kernel.spec.template b/redhat/kernel.spec.template index ba5f3c09e2bb..86480e49264c 100755 --- a/redhat/kernel.spec.template +++

[OS-BUILD PATCHv6 4/5] Add all the dependencies gleaned from running `make prepare` on a bloated devel kernel.

2020-11-29 Thread GitLab Bridge on behalf of pecastro
From: "Paulo E. Castro" Signed-off-by: Paulo E. Castro --- redhat/kernel.spec.template | 31 +++ 1 file changed, 31 insertions(+) diff --git a/redhat/kernel.spec.template b/redhat/kernel.spec.template index afc03bacd385..ba5f3c09e2bb 100755 ---

[OS-BUILD PATCHv6 1/5] Correct orc_types failure whilst running `make prepare` https://bugzilla.redhat.com/show_bug.cgi?id=1882854

2020-11-29 Thread GitLab Bridge on behalf of pecastro
From: "Paulo E. Castro" In file included from scripts/sorttable.c:191: scripts/sorttable.h:89:10: fatal error: asm/orc_types.h: No such file or directory 89 | #include | ^ compilation terminated. make[1]: *** [scripts/Makefile.host:103: scripts/sorttable]

[OS-BUILD PATCHv6 0/5] Fix bug 1882854

2020-11-29 Thread GitLab Bridge on behalf of pecastro
From: pecastro on gitlab.com `make prepare` fails when trying to build external kernel modules. Details in https://bugzilla.redhat.com/show_bug.cgi?id=1882854 and previous related bugs. I'm not very happy with the final solution to this, ( the copy of the tools dir ) but I ran out of steam

[OS-BUILD PATCHv6 2/5] Remove duplicate cp statement which is also not specific to x86.

2020-11-29 Thread GitLab Bridge on behalf of pecastro
From: "Paulo E. Castro" Signed-off-by: Paulo E. Castro --- redhat/kernel.spec.template | 1 - 1 file changed, 1 deletion(-) diff --git a/redhat/kernel.spec.template b/redhat/kernel.spec.template index 40685210d9fc..8ae48bedf7f0 100755 --- a/redhat/kernel.spec.template +++

[OS-BUILD PATCH 7/7] Build SERIO_SERPORT as a module

2020-11-29 Thread GitLab Bridge on behalf of pbrobinson
From: Peter Robinson In all kernels it's only used by some USB CEC drivers so it no longer needs to be built in. Signed-off-by: Peter Robinson --- redhat/configs/common/generic/CONFIG_SERIO_SERPORT | 2 +- redhat/configs/fedora/generic/s390x/CONFIG_SERIO_SERPORT | 1 - 2 files changed,

[OS-BUILD PATCH 5/7] Sync serio touchscreens for non x86 architectures to the same as ARK

2020-11-29 Thread GitLab Bridge on behalf of pbrobinson
From: Peter Robinson The serio touchscreens in Fedora aren't used out side of x86 so move the ark configs to generic and the Fedora configs to fedora/x86. No change on ARK kernels. Signed-off-by: Peter Robinson --- redhat/configs/{ark => common}/generic/CONFIG_TOUCHSCREEN_DYNAPRO | 0

[OS-BUILD PATCH 6/7] input: touchscreen: move ELO and Wacom serial touchscreens to x86

2020-11-29 Thread GitLab Bridge on behalf of pbrobinson
From: Peter Robinson The following EL0, Point of Sale and related, and Wacom touchscreens are serial based touch screens and are only really used on x86 systems. Signed-off-by: Peter Robinson --- redhat/configs/common/generic/CONFIG_TOUCHSCREEN_ELO| 2 +-

[OS-BUILD PATCH 1/7] Only enable PS2 Mouse options on x86

2020-11-29 Thread GitLab Bridge on behalf of pbrobinson
From: Peter Robinson PS2 mice aren't supported on all current architectures other than x86 so move the generic option to x86 and the ark aarch64 options that disabled them to generic so it applies to all non x86 architectures. Signed-off-by: Peter Robinson ---

[OS-BUILD PATCH 4/7] Only enable SERIO_LIBPS2 on x86

2020-11-29 Thread GitLab Bridge on behalf of pbrobinson
From: Peter Robinson The LIBPS2 is only used by the PS2 mice and AT keyboard drivers which are now only enabled on x86 Signed-off-by: Peter Robinson --- redhat/configs/common/generic/CONFIG_SERIO_LIBPS2 | 2 +- redhat/configs/common/generic/x86/CONFIG_SERIO_LIBPS2 | 1 +

[OS-BUILD PATCH 2/7] Generic: Mouse: Tweak generic serial mouse options

2020-11-29 Thread GitLab Bridge on behalf of pbrobinson
From: Peter Robinson Disable the ancient DEC VSXXXAA mouse, needs a special adapter to be used over RS-232, only enable RS-232 mice on x86. Signed-off-by: Peter Robinson --- redhat/configs/ark/generic/arm/aarch64/CONFIG_MOUSE_SERIAL | 1 -

[OS-BUILD PATCH 3/7] Only enable PC keyboard controller and associated keyboard on x86

2020-11-29 Thread GitLab Bridge on behalf of pbrobinson
From: Peter Robinson THe i8042 PC Keyboard controller and AT keyboard are x86 only so only enable them on that architecture. Signed-off-by: Peter Robinson --- redhat/configs/common/generic/CONFIG_KEYBOARD_ATKBD | 2 +- redhat/configs/common/generic/CONFIG_SERIO_I8042| 2 +-

[OS-BUILD PATCH 0/7] Move all x86 legacy input options to that architecture

2020-11-29 Thread GitLab Bridge on behalf of pbrobinson
From: pbrobinson on gitlab.com None of the non x86 architectures support PS2, AT keyboards, i8042 controllers and related bits. This cleans up a bunch of those options as well as syncing some of the Fedora options on non x86 to be the same as ARK by moving the ARK bits to generic. Signed-off-by: