Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for EXT3 file systems used by Motorola Devices #1

Open
wants to merge 1 commit into
base: ics
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions releasetools/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ def SignFile(input_name, output_name, key, password, align=None,
else:
sign_name = output_name

cmd = ["java", "-Xmx2048m", "-jar",
cmd = ["java", "-Xmx1024m", "-jar",
os.path.join(OPTIONS.search_path, "signapk.jar")]
if whole_file:
cmd.append("-w")
Expand Down Expand Up @@ -817,7 +817,7 @@ def worker():

# map recovery.fstab's fs_types to mount/format "partition types"
PARTITION_TYPES = { "yaffs2": "MTD", "mtd": "MTD",
"ext4": "EMMC", "emmc": "EMMC", "vfat": "EMMC"}
"ext4": "EMMC", "ext3": "EMMC", "emmc": "EMMC", "vfat": "EMMC"}

def GetTypeAndDevice(mount_point, info):
fstab = info["fstab"]
Expand Down