From patchwork Wed Apr 13 20:02:08 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mike Frysinger X-Patchwork-Id: 91100 X-Patchwork-Delegate: wd@denx.de Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from theia.denx.de (theia.denx.de [85.214.87.163]) by ozlabs.org (Postfix) with ESMTP id 52382B70E5 for ; Thu, 14 Apr 2011 06:02:34 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 06B29282AF; Wed, 13 Apr 2011 22:02:28 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at theia.denx.de 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 WTpK5Jlw4s9t; Wed, 13 Apr 2011 22:02:27 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 3A60A282F7; Wed, 13 Apr 2011 22:02:26 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 1781F28327 for ; Wed, 13 Apr 2011 22:02:24 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at theia.denx.de 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 MuNpa4S9y+-R for ; Wed, 13 Apr 2011 22:02:23 +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 smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by theia.denx.de (Postfix) with ESMTPS id 05494282F7 for ; Wed, 13 Apr 2011 22:02:11 +0200 (CEST) Received: from localhost.localdomain (localhost [127.0.0.1]) by smtp.gentoo.org (Postfix) with ESMTP id 98D151B412B; Wed, 13 Apr 2011 20:02:07 +0000 (UTC) From: Mike Frysinger To: Wolfgang Denk Date: Wed, 13 Apr 2011 16:02:08 -0400 Message-Id: <1302724928-24360-1-git-send-email-vapier@gentoo.org> X-Mailer: git-send-email 1.7.5.rc1 Cc: u-boot@lists.denx.de Subject: [U-Boot] Pull request u-boot-blackfin.git (misc branch) X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.9 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: u-boot-bounces@lists.denx.de Errors-To: u-boot-bounces@lists.denx.de Wolfgang: I put together this branch of my random little patches over the tree. These are the latest versions, and haven't garned any new feedback (if any at all). Just in case pulling a branch vs cherry picking random e-mails is easier. The following changes since commit b16aadf411280fc426d7488ddd8a5b2038b7194d: disk/part.c: fix potential stack overflow bug (2011-04-12 22:58:35 +0200) are available in the git repository at: git://www.denx.de/git/u-boot-blackfin.git misc Mike Frysinger (7): env: make import/export optional make `go` optional crc32: make command optional md5sum/sha1sum/unzip: split out of mondo mem file gpio: generalize for all generic gpio providers config_defaults.h: drop OSE bootm default gpio: check request result README | 4 + arch/blackfin/cpu/Makefile | 1 - arch/blackfin/cpu/cmd_gpio.c | 118 -------------------------------------- arch/blackfin/include/asm/gpio.h | 53 +++++++++++++++++ common/Makefile | 4 + common/cmd_boot.c | 4 + common/cmd_gpio.c | 89 ++++++++++++++++++++++++++++ common/cmd_md5sum.c | 53 +++++++++++++++++ common/cmd_mem.c | 108 ++-------------------------------- common/cmd_nvedit.c | 8 +++ common/cmd_sha1sum.c | 53 +++++++++++++++++ common/cmd_unzip.c | 59 +++++++++++++++++++ include/config_cmd_defaults.h | 6 ++- include/config_defaults.h | 1 - 14 files changed, 338 insertions(+), 223 deletions(-) delete mode 100644 arch/blackfin/cpu/cmd_gpio.c create mode 100644 common/cmd_gpio.c create mode 100644 common/cmd_md5sum.c create mode 100644 common/cmd_sha1sum.c create mode 100644 common/cmd_unzip.c