From patchwork Thu Apr 21 13:19:16 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Lo=C3=AFc_Minier?= X-Patchwork-Id: 1141 Return-Path: Delivered-To: unknown Received: from imap.gmail.com (74.125.159.109) by localhost6.localdomain6 with IMAP4-SSL; 08 Jun 2011 14:49:37 -0000 Delivered-To: patches@linaro.org Received: by 10.224.67.148 with SMTP id r20cs163858qai; Thu, 21 Apr 2011 06:19:18 -0700 (PDT) Received: by 10.216.179.137 with SMTP id h9mr148922wem.4.1303391957388; Thu, 21 Apr 2011 06:19:17 -0700 (PDT) Received: from adelie.canonical.com (adelie.canonical.com [91.189.90.139]) by mx.google.com with ESMTP id n56si4198071wej.157.2011.04.21.06.19.17; Thu, 21 Apr 2011 06:19: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 1QCtmu-0006o9-Ni for ; Thu, 21 Apr 2011 13:19:16 +0000 Received: from loganberry.canonical.com (localhost [127.0.0.1]) by loganberry.canonical.com (Postfix) with ESMTP id AF2392E889C for ; Thu, 21 Apr 2011 13:19:16 +0000 (UTC) MIME-Version: 1.0 X-Launchpad-Project: linaro-image-tools X-Launchpad-Branch: ~linaro-maintainers/linaro-image-tools/trunk X-Launchpad-Message-Rationale: Subscriber X-Launchpad-Branch-Revision-Number: 322 X-Launchpad-Notification-Type: branch-revision To: Linaro Patch Tracker From: noreply@launchpad.net Subject: [Branch ~linaro-maintainers/linaro-image-tools/trunk] Rev 322: Don't call make_dtb() on Samsung or pass a d_img_data file in the testsuite as Message-Id: <20110421131916.9911.43784.launchpad@loganberry.canonical.com> Date: Thu, 21 Apr 2011 13:19: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="12883"; Instance="initZopeless config overlay" X-Launchpad-Hash: 2f5d1502dbb26ed41fa97fba1053c7d3a5ee6a89 ------------------------------------------------------------ revno: 322 committer: Loïc Minier branch nick: linaro-image-tools timestamp: Thu 2011-04-21 15:12:57 +0200 message: Don't call make_dtb() on Samsung or pass a d_img_data file in the testsuite as this board doesn't set DTB config vars for now. modified: linaro_image_tools/media_create/boards.py linaro_image_tools/media_create/tests/test_media_create.py --- lp:linaro-image-tools https://code.launchpad.net/~linaro-maintainers/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-maintainers/linaro-image-tools/trunk/+edit-subscription === modified file 'linaro_image_tools/media_create/boards.py' --- linaro_image_tools/media_create/boards.py 2011-04-21 12:54:25 +0000 +++ linaro_image_tools/media_create/boards.py 2011-04-21 13:12:57 +0000 @@ -722,7 +722,6 @@ make_uImage(cls.load_addr, k_img_data, boot_dir) make_uInitrd(i_img_data, boot_dir) - make_dtb(d_img_data, boot_dir) # unused at the moment once FAT support enabled for the # Samsung u-boot this can be used bug 727978 === modified file 'linaro_image_tools/media_create/tests/test_media_create.py' --- linaro_image_tools/media_create/tests/test_media_create.py 2011-04-20 14:42:47 +0000 +++ linaro_image_tools/media_create/tests/test_media_create.py 2011-04-21 13:12:57 +0000 @@ -364,7 +364,7 @@ def test_smdkv310(self): boot_commands = board_configs['smdkv310']._get_boot_env( is_live=False, is_lowmem=False, consoles=[], - rootfs_uuid="deadbeef", d_img_data="smdkv310.dtb") + rootfs_uuid="deadbeef", d_img_data=None) expected = { 'bootargs': 'console=ttySAC1,115200n8 root=UUID=deadbeef ' 'rootwait ro',