diff options
Diffstat (limited to 'recipes/pcmcia-cs/pcmcia-cs-3.2.8/automount.patch')
-rw-r--r-- | recipes/pcmcia-cs/pcmcia-cs-3.2.8/automount.patch | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/recipes/pcmcia-cs/pcmcia-cs-3.2.8/automount.patch b/recipes/pcmcia-cs/pcmcia-cs-3.2.8/automount.patch new file mode 100644 index 0000000000..5f11147eb8 --- /dev/null +++ b/recipes/pcmcia-cs/pcmcia-cs-3.2.8/automount.patch @@ -0,0 +1,19 @@ +--- pcmcia-cs-3.2.8/etc/shared.orig 2004-12-15 02:21:11.000000000 +0100 ++++ pcmcia-cs-3.2.8/etc/shared 2004-12-27 17:09:51.000000000 +0100 +@@ -55,8 +55,15 @@ + fi + if is_true $DO_MOUNT ; then + O=${OPTS:+-o $OPTS} ; FS=${FSTYPE:+-t $FSTYPE} +- log mount $O $FS $1 $MOUNTPT || return 1 ++ if test -x /etc/pcmcia/ide_automount ++ then ++ /etc/pcmcia/ide_automount ++ else ++ log mount $O $FS $1 $MOUNTPT || return 1 ++ fi + fi ++ ++ logger "SHARED [$MOUNTPT] [$1]" + return 0 + } + |