From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754474AbcAHKvy (ORCPT ); Fri, 8 Jan 2016 05:51:54 -0500 Received: from mout.kundenserver.de ([217.72.192.74]:54536 "EHLO mout.kundenserver.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751401AbcAHKvw (ORCPT ); Fri, 8 Jan 2016 05:51:52 -0500 From: Arnd Bergmann To: linux-arm-kernel@lists.infradead.org Cc: Robert Jarzmik , arm@kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] ARM: pxa: add defconfig covering all the boards Date: Fri, 08 Jan 2016 11:46:18 +0100 Message-ID: <5674174.3M49lNincT@wuerfel> User-Agent: KMail/4.11.5 (Linux/3.16.0-10-generic; KDE/4.11.5; x86_64; ; ) In-Reply-To: <1451764857-18248-1-git-send-email-robert.jarzmik@free.fr> References: <1451764857-18248-1-git-send-email-robert.jarzmik@free.fr> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" X-Provags-ID: V03:K0:kSFTVLG8561KmSgH9gg7YGPKZbGAk3qJ0KoH4GcBuM8JQieHsl6 3GhjsBqtorEGaoKsBhqQ2AaIw8sA8PZg0tA0E+L/r3tOKvrMPNhvnCB1JvogeeGmhIHpYfz F6XHsdO+463uAohGbZgdwnSY+HHzj4kDSlIfAkIYogirexoF3vIGRl315tYhAH/cffkf+Ya 6QxTYurlztB1YinyKUgxw== X-UI-Out-Filterresults: notjunk:1;V01:K0:0Ep7tO+gs+s=:Rty4XeA0AP75GsxSVGN1u0 ezakJ/SoN52wt5hEibniIupUL5OwssD+sU0rZCSi+AO04wP1UbrLMykfwao9yjNHOua7NZ444 ICt3Z/n2foowN/EoH8LWBS/qePDOAwy/vHKdnCZLMRZ8BwTRie+9rJzb3h30vWppmSyW4xDXv z4Qw8lU92Yp9Zk/XB/GxcRVRPD0fH8UJQSwLnju+6TBBRIV1bRWxaMl33/kFUQ6samTnwtUIh X298+mPJsx3+mWTQNyk7DNffItx7R1EMNMv+9ypl69Fsr9sQJxBiXgW2ZQ1C7USJWfVzlaaA1 cp0yRNzAlTCjRT4xTQ6VhsN/fctdSPAhGXi1z+ggSVihENeLdQUWKyIN/HaeaFo6gFjsP+wmp 0muhOA5RYsen5vEd9vbjzIZeYLhnsSPtNouNt5wxwc9rNQjCKvhdjx5JL1WpzAhVoiVpjnKcu b+pMET8GDxPtDlLcwuNN65pR/dQwt7/mDUFTYyw+MWFzOQdRMnmY33nqmG9Hbz2wiRsvRHLbu A/ouJd4kSzWZubhHTVGGkhRtS/4i8bYeGvT7D3XKDjGUG01pDqhzF/YB7S7Wtj5np0HiE0gx7 GsoPe04HjS5bmAlC72FyxpdJuSdk7//66namsGE191Z0AyShzBVifl97OfnFSEsDyP7l7eFqg 42xORFz6KRUE1QzO7si+dbumYjcFlywM/ukY1lW+vAAIYApTOp6j7iJ8cIfc1BH1ZGGZCiOfH UIDVoCnk9Zy5ziDD Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Saturday 02 January 2016 21:00:57 Robert Jarzmik wrote: > Add a defconfig covering all known pxa board, ie. all selectable machine > files in arch/arm/mach-pxa/*.c. > > This defconfig was built by doing : > - aggregation of all known defconfigs by cat > am200epdkit_defconfig > cm_x2xx_defconfig > cm_x300_defconfig > colibri_pxa270_defconfig > colibri_pxa300_defconfig > corgi_defconfig > em_x270_defconfig > eseries_pxa_defconfig > ezx_defconfig > h5000_defconfig > imote2_defconfig > lpd270_defconfig > lubbock_defconfig > magician_defconfig > mainstone_defconfig > multi_v7_defconfig > palmz72_defconfig > pcm027_defconfig > pxa255-idp_defconfig > pxa3xx_defconfig > raumfeld_defconfig > spitz_defconfig > trizeps4_defconfig > viper_defconfig > xcep_defconfig > zeus_defconfig > - manual make menuconfig to ensure : > - all pxa implementation were selected > - all drivers were transformed into modules rather than builtin > => as a consequence this single kernel will rely on an initramfs > => as kernel size matters on pxa, each machine can take the subset > of modules required for it to work > - all missed configurations are selected verified by : > => grep -i pxa .config | grep "is not set" > => this should only show the left on purpose options (either not > selectable or sharpsl exception below) > - CONFIG_PXA_SHARPSL was disabled > This breaks the boot very early on any non Sharp platform, see > head-sharpsl.S > > This defconfig was tested as booting up to the login phase on : > - lubbock (pxa25x) > - mainstone (pxa27x) > - zylonite (pxa3xx) > > The completion of this work will require to : > - parse manually all the arch/arm/mach-pxa/*c files, look for all > platform devices added, and verify they are all in pxa_defconfig > - do the same to ensure all pxa specific drivers (leds, gpio, ...) are > included > > Signed-off-by: Robert Jarzmik > Merged into next/defconfig, thanks! Arnd