From 86391d8a47b909af416c49fdc9ef7a4088c7a604 Mon Sep 17 00:00:00 2001 From: Michael Mrozek Date: Mon, 5 Jul 2010 03:58:22 +0200 Subject: [PATCH] mount.sh: Changed it so that spaces will be converted to underscores (until libpnd is fixed) --- recipes/udev/udev-151/omap3-pandora/mount.sh | 2 +- recipes/udev/udev_151.bb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/recipes/udev/udev-151/omap3-pandora/mount.sh b/recipes/udev/udev-151/omap3-pandora/mount.sh index 979fb277e0..d69ae9d784 100755 --- a/recipes/udev/udev-151/omap3-pandora/mount.sh +++ b/recipes/udev/udev-151/omap3-pandora/mount.sh @@ -10,7 +10,7 @@ PMOUNT="/usr/bin/pmount" UMOUNT="/bin/umount" blkid="/usr/sbin/blkid" name="`basename "$DEVNAME"`" -name2="`$blkid "$DEVNAME" -c /dev/null -o value -s LABEL`" +name2="`$blkid "$DEVNAME" -c /dev/null -o value -s LABEL | sed 's/ /_/g'`" name3=$(echo $DEVNAME | sed 's/.*dev.//g') for line in `grep -v ^# /etc/udev/mount.blacklist` diff --git a/recipes/udev/udev_151.bb b/recipes/udev/udev_151.bb index 8081855d34..63a83d55e8 100644 --- a/recipes/udev/udev_151.bb +++ b/recipes/udev/udev_151.bb @@ -3,7 +3,7 @@ DESCRIPTION = "udev is a daemon which dynamically creates and removes device nod the hotplug package and requires a kernel not older than 2.6.12." LICENSE = "GPLv2+" -PR = "r14" +PR = "r15" # Untested DEFAULT_PREFERENCE = "-1" -- 2.39.5