Le Thursday 04 June 2009 17:23:20 [email protected], vous avez écrit : > I currently play around with sshfs and it was missing the kernel fuse > module (so it said). In reality the /dev/fuse character device was missing. > > Now I need a clue on how to modify the package Makefile to create > /dev/fuse either on package installation or earlier and package it with > the ipkg archive. > Any ideas? > > All I know the commandline would be 'mknod /dev/fuse -m 0666 c 10 229'
I suggest that you use the postinstall script defined like this: define Package/quagga/postinst #!/bin/sh mknod /dev/fuse -m 0666 c 10 229 endef Even though the device should be created automatically once the module is inserted, is not it ? -- Best regards, Florian Fainelli Email : [email protected] http://openwrt.org -------------------------------
signature.asc
Description: This is a digitally signed message part.
_______________________________________________ openwrt-devel mailing list [email protected] https://lists.openwrt.org/mailman/listinfo/openwrt-devel
