| »
Simpleshare Firmware «
Download
Simpleshare 1.09 Firmware with /opt Directory (USE
AT YOUR OWN RISK!)
This is
the stock Simpleshare 1.09 firmware, I only added the /opt directory
to the root. That means it DOES NOT include any extras. You
have to set everything else up yourself. Luckly the default startup
script runs a shell script at /shares/SimplePool/ShareApps/ext-script.sh.
You can create a new share called "ShareApps" from the web GUI. That's
how I setup telnet and other options on
startup.
I figured
this way I
can
disable
telnet
if
I wanted
to without
reflashing,
and
easily
re-enable it.
If you need it, here's utelnetd
and ipkg from the openmss firmware. I created /opt/bin in the
ShareApps share and put utelnetd and ipkg in there then added it
to my path. 1.09
includes utelnetd in /bin so you can use that instead.
This is my ext-script.sh:
#!/bin/sh
export PATH=/opt/bin:/opt/sbin:/opt/usr/bin:/opt/usr/sbin:$PATH
export LD_LIBRARY_PATH=/opt/lib:/lib
mount -o bind /shares/SimplePool/ShareApps/opt /opt
utelnetd &
Also, if
your interested, I compiled enhanced-ctorrent
and screen. They were statically
linked, so it's huge, but they seem to work. I had to install termcap with
ipkg to get screen to work, I think it needed some directories created.
Sorry no ipk packages, don't know how to create them. I'm new at this,
just followed instructions.
|