From patchwork Sun May 17 11:53:26 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Lubomir Rintel X-Patchwork-Id: 1292125 Return-Path: X-Original-To: incoming-buildroot@patchwork.ozlabs.org Delivered-To: patchwork-incoming-buildroot@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=busybox.net (client-ip=140.211.166.137; helo=fraxinus.osuosl.org; envelope-from=buildroot-bounces@busybox.net; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=v3.sk Received: from fraxinus.osuosl.org (smtp4.osuosl.org [140.211.166.137]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 49Q0sx0CsKz9sT8 for ; Sun, 17 May 2020 21:53:57 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 3E26A86B34; Sun, 17 May 2020 11:53:54 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id lqE2b5jrpW2g; Sun, 17 May 2020 11:53:52 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id 5722D864D0; Sun, 17 May 2020 11:53:52 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from hemlock.osuosl.org (smtp2.osuosl.org [140.211.166.133]) by ash.osuosl.org (Postfix) with ESMTP id 306DB1BF3D5 for ; Sun, 17 May 2020 11:53:50 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 2A37A884C1 for ; Sun, 17 May 2020 11:53:50 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id VfyVjPFMAXaI for ; Sun, 17 May 2020 11:53:49 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from v6.sk (v6.sk [167.172.42.174]) by hemlock.osuosl.org (Postfix) with ESMTPS id ADF3288456 for ; Sun, 17 May 2020 11:53:48 +0000 (UTC) Received: from localhost (v6.sk [IPv6:::1]) by v6.sk (Postfix) with ESMTP id 94871610B0; Sun, 17 May 2020 11:53:45 +0000 (UTC) From: Lubomir Rintel To: buildroot@buildroot.org Date: Sun, 17 May 2020 13:53:26 +0200 Message-Id: <20200517115341.1677382-1-lkundrak@v3.sk> X-Mailer: git-send-email 2.26.2 MIME-Version: 1.0 Subject: [Buildroot] [PATCH 00/15] OLPC XO updates X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.29 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Lubomir Rintel Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" Hi, please consider applying this patch set. The ultimate goal is to enable jffs2 images for the XO-1. While I that, I noticed that while tidying up the kernel configuration, I messed up a bit and some config symbols ended up disabled. The first few patches fix the kernel configuration: [PATCH 01/15] board/olpc: move MTD symbols up to the common config [PATCH 02/15] board/olpc: move SERIO_OLPC_APSP to XO-1.75 [PATCH 03/15] board/olpc: move BACKLIGHT_CLASS_DEVICE up to common [PATCH 04/15] board/olpc: move the SDHCI drivers to appropriate board [PATCH 05/15] board/olpc: move GPIO_SYSFS to common config [PATCH 06/15] board/olpc: move LIS3_SPI to XO-1.75 [PATCH 07/15] board/olpc: enable dependencies of options we use [PATCH 08/15] board/olpc/xo-1: enable JFFS2 [PATCH 09/15] board/olpc/xo-1: enable STAGING [PATCH 10/15] board/olpc/xo-1: enable ACPI [PATCH 11/15] board/olpc/xo-1: drop garbage from kernel config Followed by the jffs2 related enhancements: [PATCH 12/15] board/olpc: set JFFS2 root when booting from a MTD [PATCH 13/15] configs/olpc_xo1: enable JFFS2 image [PATCH 14/15] board/olpc: move the paragraph on firmware up in the [PATCH 15/15] board/olpc: document flashing the JFFS2 image Tested on a XO-1. Thank you Lubo