From patchwork Fri Jun 10 17:57:16 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paul Larson X-Patchwork-Id: 1817 Return-Path: Delivered-To: unknown Received: from imap.gmail.com (74.125.45.109) by localhost6.localdomain6 with IMAP4-SSL; 10 Jun 2011 20:12:07 -0000 Delivered-To: patches@linaro.org Received: by 10.52.181.10 with SMTP id ds10cs330929vdc; Fri, 10 Jun 2011 10:57:18 -0700 (PDT) Received: by 10.227.12.18 with SMTP id v18mr2433103wbv.89.1307728637220; Fri, 10 Jun 2011 10:57:17 -0700 (PDT) Received: from adelie.canonical.com (adelie.canonical.com [91.189.90.139]) by mx.google.com with ESMTP id fe21si7538767wbb.84.2011.06.10.10.57.16; Fri, 10 Jun 2011 10:57:17 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of bounces@canonical.com designates 91.189.90.139 as permitted sender) client-ip=91.189.90.139; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of bounces@canonical.com designates 91.189.90.139 as permitted sender) smtp.mail=bounces@canonical.com Received: from loganberry.canonical.com ([91.189.90.37]) by adelie.canonical.com with esmtp (Exim 4.71 #1 (Debian)) id 1QV5xM-0000Sq-J5 for ; Fri, 10 Jun 2011 17:57:16 +0000 Received: from loganberry.canonical.com (localhost [127.0.0.1]) by loganberry.canonical.com (Postfix) with ESMTP id 8AA9C2E8951 for ; Fri, 10 Jun 2011 17:57:16 +0000 (UTC) MIME-Version: 1.0 X-Launchpad-Project: lava-dispatcher X-Launchpad-Branch: ~linaro-validation/lava-dispatcher/trunk X-Launchpad-Message-Rationale: Subscriber X-Launchpad-Branch-Revision-Number: 63 X-Launchpad-Notification-Type: branch-revision To: Linaro Patch Tracker From: noreply@launchpad.net Subject: [Branch ~linaro-validation/lava-dispatcher/trunk] Rev 63: Add support for dtb and fix addresses for mx51 Message-Id: <20110610175716.18490.48994.launchpad@loganberry.canonical.com> Date: Fri, 10 Jun 2011 17:57:16 -0000 Reply-To: noreply@launchpad.net Sender: bounces@canonical.com Errors-To: bounces@canonical.com Precedence: bulk X-Generated-By: Launchpad (canonical.com); Revision="13175"; Instance="initZopeless config overlay" X-Launchpad-Hash: 9af1cea59caccd25936885fc668700196a0c25fc ------------------------------------------------------------ revno: 63 committer: Paul Larson branch nick: lava-dispatcher timestamp: Fri 2011-06-10 12:00:37 -0500 message: Add support for dtb and fix addresses for mx51 modified: lava/dispatcher/config.py --- lp:lava-dispatcher https://code.launchpad.net/~linaro-validation/lava-dispatcher/trunk You are subscribed to branch lp:lava-dispatcher. To unsubscribe from this branch go to https://code.launchpad.net/~linaro-validation/lava-dispatcher/trunk/+edit-subscription === modified file 'lava/dispatcher/config.py' --- lava/dispatcher/config.py 2011-06-02 21:11:09 +0000 +++ lava/dispatcher/config.py 2011-06-10 17:00:37 +0000 @@ -37,8 +37,9 @@ boot_part = 2 root_part = 3 uboot_cmds = ["mmc init", - "setenv bootcmd 'fatload mmc 0:5 0x90800000 uImage; fatload mmc " - "0:5 0x90800000 uInitrd; bootm 0x90000000 0x90800000'", + "setenv bootcmd 'fatload mmc 0:5 0x90000000 uImage; fatload mmc 0:5 " + "0x92000000 uInitrd; fatload mmc 0:5 0x91ff0000 board.dtb; bootm " + "0x90000000 0x92000000 0x91ff0000'", "setenv bootargs ' console=tty0 console=ttymxc0,115200n8 " "root=LABEL=testrootfs rootwait ro'", "boot"] @@ -55,13 +56,13 @@ "boot"] type = "mx53loco" -#Here, it still needs to maintain a map from boardid to board, for there is only -#boardid in jobfile.json +#Here, it still needs to maintain a map from boardid to board, for there is +#only boardid in jobfile.json BOARDS = { "panda01": PandaBoard, "panda02": PandaBoard, "beaglexm01": BeagleBoard, - "bbg01": Mx51evkBoard, + "mx51evk01": Mx51evkBoard, "mx53loco01": Mx53locoBoard, }