On Sun, 2 Feb 2020 13:07:40 +0100 "H. Nikolaus Schaller" hns@goldelico.com wrote:
Hi,
Am 01.02.2020 um 21:25 schrieb Nick Elsmore nicholaselsmore@gmail.com:
Hey all,
I'm working to integrate proper Pyra support into the Letux kernel. I've been doing work in a fork, but am trying to become synchronized with Letux. This thread is dedicated to stabilizing base Pyra support within Letux, starting with:
- standalone Pyra defconfig
yes, that is good to have and manage a specific Pyra defconfig.
The letux_defconfig builds a lot of modules which are not needed for the Pyra. And by configuring some stuff into the kernel instead of loading modules, boot time can drastically be reduced.
hmm, that pyra_defconfig contains: CONFIG_ARCH_BCM CONFIG_ARCH_MXC
so it is something generic. I am still wondering whether is would be more maintainable to use make savedefconfig output and manually edit things and sort like
# Pyra hw
CONFIG_ARCH_OMAP5=y
# GTA04 hw
CONFIG_ARCH_OMAP3=y CONFIG_GNSS_SIRF=m
# Kobolino
CONFIG_ARCH_IMX6SLL=y ...
# special requirements of distro X ...
# common stuff
...
I guess things can be duplicated
Regards, Andreas