Browse Source

udev: Fixed create_nodes.sh to not chown symlinks, and changed to print nodes including path

early
Alejandro Mery 16 years ago
parent
commit
a741fe04aa
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      filesystem/udev/create_nodes.sh

+ 2
- 2
filesystem/udev/create_nodes.sh

@ -47,10 +47,10 @@ while read type node mode uid gid data; do
;;
*)
chmod "$mode" "$node"
chown "$uid:$gid" "$node"
;;
esac
chown "$uid:$gid" "$node"
echo "$node"
echo "$PWD/$node"
done

Loading…
Cancel
Save