arm64: morello: Would be going against Vincenzo's own tagging for the exact same thing like:
[linux-morello] [PATCH 09/10] morello: Enable GPU/DPU in defconfig [linux-morello] [PATCH 10/10] morello: Enable RTC support
Which is why is the pattern I chose to continue as it follows in the same vein. I can sneak in a defconfig there.
On 1/24/23 17:01, Kevin Brodsky wrote:
The tag should be "arm64: morello:" for everything Morello-specific. Would also be good to say in the title it's about the defconfig.
On 24/01/2023 15:08, carsten.haitzler@foss.arm.com wrote:
From: Carsten Haitzler carsten.haitzler@foss.arm.com
Enable a range of config options to have USB HID devices and related input devices build so we can run a proper UI with input working too in morello_transitional_pcuabi_defconfig.
Signed-off-by: Carsten Haitzler Carsten.Haitzler@arm.com
.../configs/morello_transitional_pcuabi_defconfig | 11 +++++++++++ 1 file changed, 11 insertions(+)
diff --git a/arch/arm64/configs/morello_transitional_pcuabi_defconfig b/arch/arm64/configs/morello_transitional_pcuabi_defconfig index 1db4601197a3..1f51440de6ea 100644 --- a/arch/arm64/configs/morello_transitional_pcuabi_defconfig +++ b/arch/arm64/configs/morello_transitional_pcuabi_defconfig @@ -165,3 +165,14 @@ CONFIG_DEBUG_FS=y # CONFIG_DEBUG_PREEMPT is not set # CONFIG_FTRACE is not set CONFIG_MEMTEST=y +CONFIG_USB_HID=y +CONFIG_USB_HIDDEV=y +CONFIG_USB_KBD=y +CONFIG_USB_MOUSE=y +CONFIG_I2C_HID_ACPI=y +CONFIG_HID_GENERIC=y +CONFIG_INPUT=y +CONFIG_INPUT_MOUSEDEV=y +CONFIG_INPUT_EVDEV=y +CONFIG_INPUT_KEYBOARD=y +CONFIG_INPUT_MOUSE=y
As usual, the defconfig should be regenerated with make savedefconfig (I think many of these options are implied as they don't appear in the standard defconfig).
I never knew about savedefconfig - I was nuking options by hand (and I cut out ~ 3/4 of the config opts I had added to get to the above). Will use that.
Kevin