Buffalo WHR-G54S
This is a wireless G broadband router. It has a WAN uplink, four ethernet port for LAN access, and a Wireless 802.11g interface.
OpenWRT Testing
I have installed OpenWRT from the OpenWRT project and it appears to be working beautifully.
After reading some of the documentation, setting up NFS mounting on it was also a breeze: [pre] $ ipkg install kmod-nfs [/pre] The ipkg subsystem works along the same lines as the debian apt system, and is quite nice. To get a full list of current packages available, all you do is the following: [pre] $ ipkg update $ ipkg list [/pre] This will update to the most current package list available, and then list them all out for you.
When mounting filesystems with NFS, I did not install the portmapper package, so you want to mount remote file systems with the nolocking option: [pre] $ mount -t nfs remote://filesystem /local/filesystem -o nolocking [/pre]