From patchwork Wed Oct 5 09:21:14 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mattias Backman X-Patchwork-Id: 4517 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id AAC4B23DEF for ; Wed, 5 Oct 2011 09:21:17 +0000 (UTC) Received: from mail-wy0-f180.google.com (mail-wy0-f180.google.com [74.125.82.180]) by fiordland.canonical.com (Postfix) with ESMTP id A4263A18ABD for ; Wed, 5 Oct 2011 09:21:17 +0000 (UTC) Received: by wyh11 with SMTP id 11so2005858wyh.11 for ; Wed, 05 Oct 2011 02:21:17 -0700 (PDT) Received: by 10.223.63.8 with SMTP id z8mr997580fah.84.1317806477217; Wed, 05 Oct 2011 02:21:17 -0700 (PDT) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.152.23.170 with SMTP id n10cs85627laf; Wed, 5 Oct 2011 02:21:17 -0700 (PDT) Received: by 10.213.105.130 with SMTP id t2mr1795557ebo.80.1317806474679; Wed, 05 Oct 2011 02:21:14 -0700 (PDT) Received: from indium.canonical.com (indium.canonical.com. [91.189.90.7]) by mx.google.com with ESMTPS id h2si652273wed.45.2011.10.05.02.21.14 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 05 Oct 2011 02:21:14 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of bounces@canonical.com designates 91.189.90.7 as permitted sender) client-ip=91.189.90.7; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of bounces@canonical.com designates 91.189.90.7 as permitted sender) smtp.mail=bounces@canonical.com Received: from ackee.canonical.com ([91.189.89.26]) by indium.canonical.com with esmtp (Exim 4.71 #1 (Debian)) id 1RBNf8-0003Jh-6W for ; Wed, 05 Oct 2011 09:21:14 +0000 Received: from ackee.canonical.com (localhost [127.0.0.1]) by ackee.canonical.com (Postfix) with ESMTP id 2835AE1573 for ; Wed, 5 Oct 2011 09:21:14 +0000 (UTC) MIME-Version: 1.0 X-Launchpad-Project: linaro-image-tools X-Launchpad-Branch: ~linaro-image-tools/linaro-image-tools/trunk X-Launchpad-Message-Rationale: Subscriber X-Launchpad-Branch-Revision-Number: 441 X-Launchpad-Notification-Type: branch-revision To: Linaro Patch Tracker From: noreply@launchpad.net Subject: [Branch ~linaro-image-tools/linaro-image-tools/trunk] Rev 441: Use --dev mx53loco in linaro-android-media-create to be consistent with linaro-media-create. Add ... Message-Id: <20111005092114.2211.59400.launchpad@ackee.canonical.com> Date: Wed, 05 Oct 2011 09:21:14 -0000 Reply-To: noreply@launchpad.net Sender: bounces@canonical.com Errors-To: bounces@canonical.com Precedence: bulk X-Generated-By: Launchpad (canonical.com); Revision="14085"; Instance="launchpad-lazr.conf" X-Launchpad-Hash: 407eb4a186680bb48e867f1725d1a0281d7d4f72 Merge authors: Mattias Backman (mabac) Related merge proposals: https://code.launchpad.net/~mabac/linaro-image-tools/bug-837201/+merge/73362 proposed by: Mattias Backman (mabac) review: Approve - Fathi Boudra (fboudra) ------------------------------------------------------------ revno: 441 [merge] committer: Mattias Backman branch nick: trunl timestamp: Wed 2011-10-05 11:19:03 +0200 message: Use --dev mx53loco in linaro-android-media-create to be consistent with linaro-media-create. Add deprecation warning for --dev iMX53. modified: linaro-android-media-create linaro_image_tools/media_create/android_boards.py --- lp:linaro-image-tools https://code.launchpad.net/~linaro-image-tools/linaro-image-tools/trunk You are subscribed to branch lp:linaro-image-tools. To unsubscribe from this branch go to https://code.launchpad.net/~linaro-image-tools/linaro-image-tools/trunk/+edit-subscription === modified file 'linaro-android-media-create' --- linaro-android-media-create 2011-10-03 18:36:11 +0000 +++ linaro-android-media-create 2011-10-05 09:19:03 +0000 @@ -106,6 +106,10 @@ board_config = android_board_configs[args.board] + if args.board == 'iMX53': + # XXX: remove this and the corresponding entry in android_board_configs + print "DEPRECATION WARNING: iMX53 is deprecated, please use mx53loco." + ensure_required_commands(args) media = Media(args.device) === modified file 'linaro_image_tools/media_create/android_boards.py' --- linaro_image_tools/media_create/android_boards.py 2011-08-26 07:58:01 +0000 +++ linaro_image_tools/media_create/android_boards.py 2011-09-30 13:22:50 +0000 @@ -278,6 +278,7 @@ 'snowball_sd': AndroidSnowballSdConfig, 'snowball_emmc': AndroidSnowballEmmcConfig, 'smdkv310': AndroidSMDKV310Config, + 'mx53loco': AndroidMx53LoCoConfig, 'iMX53': AndroidMx53LoCoConfig, 'origen': AndroidOrigenConfig, }