Browse Source

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

early
Alejandro Mery 17 years ago
parent
commit
a741fe04aa
  1. 4
      filesystem/udev/create_nodes.sh

4
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