From: Michael Mrozek Date: Mon, 14 Jan 2013 01:57:26 +0000 (+0100) Subject: op_createsd: Added -F 32 to mkfs.vfat. X-Git-Tag: sz_153~1 X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2cd20f7e27dafd78239eade3a59006f7c32ff32a;p=openpandora.oe.git op_createsd: Added -F 32 to mkfs.vfat. --- diff --git a/recipes/pandora-system/pandora-scripts.bb b/recipes/pandora-system/pandora-scripts.bb index 78b5618..2141686 100644 --- a/recipes/pandora-system/pandora-scripts.bb +++ b/recipes/pandora-system/pandora-scripts.bb @@ -6,7 +6,7 @@ COMPATIBLE_MACHINE = "omap3-pandora" DEPENDS = "zenity dbus" RDEPENDS = "zenity dbus" -PR = "r127" +PR = "r128" SRC_URI = " \ file://op_paths.sh \ diff --git a/recipes/pandora-system/pandora-scripts/op_createsd.sh b/recipes/pandora-system/pandora-scripts/op_createsd.sh index d2fe3ed..54796cd 100644 --- a/recipes/pandora-system/pandora-scripts/op_createsd.sh +++ b/recipes/pandora-system/pandora-scripts/op_createsd.sh @@ -22,7 +22,7 @@ device=$(grep "${selection2}" /proc/mounts | awk '{print $1}') ( case $fstype in "vfat") - gksudo "mkfs.vfat -n "$name" $device" + gksudo "mkfs.vfat -F 32 -n "$name" $device" ;; "ext2") gksudo "mkfs.ext2 -L "$name" $device"