From patchwork Fri Sep 23 16:00:42 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Masahiro Yamada X-Patchwork-Id: 76893 Delivered-To: patch@linaro.org Received: by 10.140.106.72 with SMTP id d66csp646190qgf; Fri, 23 Sep 2016 09:01:58 -0700 (PDT) X-Received: by 10.194.13.4 with SMTP id d4mr7797559wjc.218.1474646518214; Fri, 23 Sep 2016 09:01:58 -0700 (PDT) Return-Path: Received: from theia.denx.de (theia.denx.de. [85.214.87.163]) by mx.google.com with ESMTP id c7si3895631wmd.73.2016.09.23.09.01.57; Fri, 23 Sep 2016 09:01:58 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of u-boot-bounces@lists.denx.de designates 85.214.87.163 as permitted sender) client-ip=85.214.87.163; Authentication-Results: mx.google.com; dkim=neutral (body hash did not verify) header.i=@nifty.com; spf=pass (google.com: best guess record for domain of u-boot-bounces@lists.denx.de designates 85.214.87.163 as permitted sender) smtp.mailfrom=u-boot-bounces@lists.denx.de Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 40BC5B384A; Fri, 23 Sep 2016 18:01:46 +0200 (CEST) Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 4Mxz58bqGT9b; Fri, 23 Sep 2016 18:01:46 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 4B8DFA7718; Fri, 23 Sep 2016 18:01:38 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 00C88A7705 for ; Fri, 23 Sep 2016 18:01:27 +0200 (CEST) Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id CqtxL407pnrO for ; Fri, 23 Sep 2016 18:01:26 +0200 (CEST) X-policyd-weight: NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_SPAMCOP=-1.5 NOT_IN_BL_NJABL=-1.5 (only DNSBL check requested) Received: from conuserg-07.nifty.com (conuserg-07.nifty.com [210.131.2.74]) by theia.denx.de (Postfix) with ESMTPS id 162E0A76BA for ; Fri, 23 Sep 2016 18:01:22 +0200 (CEST) Received: from grover.sesame (FL1-111-169-71-157.osk.mesh.ad.jp [111.169.71.157]) (authenticated) by conuserg-07.nifty.com with ESMTP id u8NG0jrx014295; Sat, 24 Sep 2016 01:00:53 +0900 DKIM-Filter: OpenDKIM Filter v2.10.3 conuserg-07.nifty.com u8NG0jrx014295 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nifty.com; s=dec2015msa; t=1474646454; bh=RXxNfLQTkbEnj+mirAVLy5eiDI1uDkA9ypYrCOxNO98=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=iLd44/neVq8ATILCmi04qckZFfSMkF7KOnM3sVi7mDziF7h9r4i4nCsQoy/kq5T0/ NC/r26SoLbhoC8R9dCNjCOaBt/ZBALG+wDdUup9EQTusgTb3zZtKKSDvgjlxnJax2+ et4T8CEaeg/0yIF0qGbbIVsO6nsep4dRTrQ5Vl0J15o/EOLw8EbPhFMzeDeWyZSffw yeK1GAO42nJAJrJWdzBFQ1+YZ0RGbZermw1hKcTsPGFY5R2ZjdHy/hypQGVGOxZpxY qN+BOQhijJdNC1PWXWcuZcmSlZLaDjLn/TBZRsb2dp/QlKzUwDLh8VJTnJuiRwkb3E 4KsCOaKwrsILA== X-Nifty-SrcIP: [111.169.71.157] From: Masahiro Yamada To: u-boot@lists.denx.de Date: Sat, 24 Sep 2016 01:00:42 +0900 Message-Id: <1474646442-8074-3-git-send-email-yamada.masahiro@socionext.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1474646442-8074-1-git-send-email-yamada.masahiro@socionext.com> References: <1474646442-8074-1-git-send-email-yamada.masahiro@socionext.com> Cc: Tom Rini Subject: [U-Boot] [PATCH v2 2/2] Sync config_whitelist.txt X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.15 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" It is a good practice to drop a option from the whitelist when we convert it to Kconfig, but we may sometimes forget to do that. So, it might be a good idea to sync the whitelist from time to time. This commit was generated by: scripts/build-whitelist.sh Looks like we had a bit progress... Signed-off-by: Masahiro Yamada --- You do not need to apply this, but this is a reminder for periodical sync, like we sync defconfigs from time to time. Tom can directly run scripts/build-whitelist.sh in the u-boot/master while drinking coffee. Changes in v2: - Resync on the current u-boot/master scripts/config_whitelist.txt | 6 ------ 1 file changed, 6 deletions(-) -- 1.9.1 _______________________________________________ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot diff --git a/scripts/config_whitelist.txt b/scripts/config_whitelist.txt index cb4516f..d91f99a 100644 --- a/scripts/config_whitelist.txt +++ b/scripts/config_whitelist.txt @@ -891,7 +891,6 @@ CONFIG_DMC_DDRTR2 CONFIG_DNET_AUTONEG_TIMEOUT CONFIG_DNP5370_EXT_WD_DISABLE CONFIG_DOS_PARTITION -CONFIG_DPLL_SSC_RATE_1PER CONFIG_DP_DDR_CTRL CONFIG_DP_DDR_DIMM_SLOTS_PER_CTLR CONFIG_DP_DDR_NUM_CTRLS @@ -1256,7 +1255,6 @@ CONFIG_FO300 CONFIG_FOO CONFIG_FORCE_DDR_DATA_BUS_WIDTH_32 CONFIG_FORMIKE -CONFIG_FPGA CONFIG_FPGA_ALTERA CONFIG_FPGA_COUNT CONFIG_FPGA_CYCLON2 @@ -1265,7 +1263,6 @@ CONFIG_FPGA_SOCFPGA CONFIG_FPGA_SPARTAN2 CONFIG_FPGA_SPARTAN3 CONFIG_FPGA_STRATIX_V -CONFIG_FPGA_XILINX CONFIG_FPGA_ZYNQPL CONFIG_FSLDMAFEC CONFIG_FSL_CADMUS @@ -1656,7 +1653,6 @@ CONFIG_ICACHE CONFIG_ICACHE_OFF CONFIG_ICON CONFIG_ICS307_REFCLK_HZ -CONFIG_IDENT_STRING CONFIG_IDE_8xx_DIRECT CONFIG_IDE_8xx_PCCARD CONFIG_IDE_INIT_POSTRESET @@ -3991,8 +3987,6 @@ CONFIG_SCSI_SYM53C8XX CONFIG_SC_TIMER_CLK CONFIG_SDCARD CONFIG_SDHCI -CONFIG_SDHCI_CMD_DEFAULT_TIMEOUT -CONFIG_SDHCI_CMD_MAX_TIMEOUT CONFIG_SDRAM_BANK0 CONFIG_SDRAM_BANK1 CONFIG_SDRAM_ECC