From patchwork Fri Aug 19 14:09:16 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mattias Backman X-Patchwork-Id: 3560 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 EFDA123F22 for ; Fri, 19 Aug 2011 14:09:19 +0000 (UTC) Received: from mail-yx0-f180.google.com (mail-yx0-f180.google.com [209.85.213.180]) by fiordland.canonical.com (Postfix) with ESMTP id BF8DDA18100 for ; Fri, 19 Aug 2011 14:09:19 +0000 (UTC) Received: by yxi11 with SMTP id 11so3165034yxi.11 for ; Fri, 19 Aug 2011 07:09:19 -0700 (PDT) Received: by 10.151.21.21 with SMTP id y21mr2243420ybi.447.1313762959246; Fri, 19 Aug 2011 07:09:19 -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.150.157.17 with SMTP id f17cs100331ybe; Fri, 19 Aug 2011 07:09:19 -0700 (PDT) Received: by 10.216.169.211 with SMTP id n61mr511331wel.83.1313762957277; Fri, 19 Aug 2011 07:09:17 -0700 (PDT) Received: from indium.canonical.com (indium.canonical.com [91.189.90.7]) by mx.google.com with ESMTPS id n62si8523051wed.57.2011.08.19.07.09.16 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 19 Aug 2011 07:09:17 -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 1QuPl6-0006Ek-KT for ; Fri, 19 Aug 2011 14:09:16 +0000 Received: from ackee.canonical.com (localhost [127.0.0.1]) by ackee.canonical.com (Postfix) with ESMTP id 91D3DE043F for ; Fri, 19 Aug 2011 14:09:16 +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: 416 X-Launchpad-Notification-Type: branch-revision To: Linaro Patch Tracker From: noreply@launchpad.net Subject: [Branch ~linaro-image-tools/linaro-image-tools/trunk] Rev 416: Change --rootfs default to ext4. Message-Id: <20110819140916.4597.56275.launchpad@ackee.canonical.com> Date: Fri, 19 Aug 2011 14:09: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="13697"; Instance="initZopeless config overlay" X-Launchpad-Hash: af92b35d67b5598bf8765cdd15cac9bc3486ec86 ------------------------------------------------------------ revno: 416 committer: Mattias Backman branch nick: trunk timestamp: Fri 2011-08-19 16:04:54 +0200 message: Change --rootfs default to ext4. modified: linaro_image_tools/media_create/__init__.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_image_tools/media_create/__init__.py' --- linaro_image_tools/media_create/__init__.py 2011-08-18 13:31:28 +0000 +++ linaro_image_tools/media_create/__init__.py 2011-08-19 14:04:54 +0000 @@ -58,7 +58,7 @@ '--dev', required=True, dest='board', choices=KNOWN_BOARDS, help='Generate an SD card or image for the given board.') parser.add_argument( - '--rootfs', default='ext3', choices=['ext2', 'ext3', 'ext4', 'btrfs'], + '--rootfs', default='ext4', choices=['ext2', 'ext3', 'ext4', 'btrfs'], help='Type of filesystem to use for the rootfs') parser.add_argument( '--rfs_label', default='rootfs',