• Home
  • Help
  • Search
  • Login
  • Register
  Show Posts
Pages: [1]
1  Hardware and U-Boot firmware / U-Boot stuff / Re: no serial console output on: May 25, 2011, 12:42:50 AM
Hi!

I have the same problem. I tried refresh uboot on my guruplug, according to this forum. And after these commands I could not anymore connect to the device via JTAG serial. there is no console output.

Marvell>> setenv ipaddr 192.168.2.2
Marvell>> setenv serverip 192.168.2.1
Marvell>> tftp 0x6400000 uImage
Marvell>> nand erase 0x100000 0x400000
Marvell>> nand write.e 0x6400000 0x100000 0x400000

Any suggestion?
2  General Category / General Discussion / Re: Forward DCHP requests from Wifi on: October 24, 2010, 01:34:27 AM
Hey!

I bridged the wifi and the ethernet, but it but it doesn't work. How do you bridged your plug computer? I want do this to access the internet through the plug, i don't have any router. Do you have any experience?
3  General Category / General Discussion / Re: Final impressions of GuruPlug Server Plus on: October 24, 2010, 01:27:09 AM
Hey!

How do you bridged your plug computer? I want do this to access the internet through the plug, i don't have any router. I setup bridge-utils and configured, but it doesn't work.
4  General Category / General Discussion / Skype work browser not! on: October 23, 2010, 03:15:05 PM
H!

I get my new plug computer. After i accessed it on wireless, i can use my skype, but not my webbrowser. Why not?

5  General Category / General Discussion / Re: Wifi Acces Point on: October 23, 2010, 09:55:26 AM
Hey!

I dont understand this tutorial, why is these commands specified.  I found all of the command in /root/init_setup.sh. So what could be the problem? I think in boot time, all the command had to executed.

#!/bin/sh

# This is called from /etc/rc.local to perform the initial setup.

# We always bootup in AP mode. Delete any stale files
rm -f /etc/wlanclient.mode
SSID=Plug2-uAP-`ifconfig eth0 | awk -F ":" '/HWaddr/ {print $6$7}'`

insmod /root/uap8xxx.ko
ifconfig uap0 192.168.1.1 up
/usr/bin/uaputl sys_cfg_ssid $SSID
/usr/bin/uaputl bss_start
iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE
iptables -t nat -A POSTROUTING -o ppp0 -j MASQUERADE
echo 1 > /proc/sys/net/ipv4/ip_forward
/etc/init.d/udhcpd start
/etc/init.d/dnsmasq start
iptables -A INPUT -i uap0 -p tcp -m tcp --dport 80 -j ACCEPT


# Re-enable bluetooth. In the earlier case, it didn't find the firmware.
#rmmod libertas_sdio libertas btmrvl_sdio btmrvl bluetooth 2>/dev/null
rmmod btmrvl_sdio btmrvl
/etc/init.d/bluetooth start

modprobe btmrvl_sdio
hciconfig hci0 up
hciconfig hci0 piscan
/usr/bin/mute-agent &

# Set leds
echo 1 > `eval ls /sys/class/leds/*plug*\:green\:health/brightness`
echo 1 > `eval ls /sys/class/leds/*plug*\:green\:wmode/brightness`
6  General Category / General Discussion / Wifi Acces Point on: October 20, 2010, 01:04:07 PM
Hi!

I would like to use my plug computer as a wifi router, so i went throw the tutorial below. But something dont work. I can in the consol download with wget from internet, but in my browser appears nothing.

http://plugcomputer.org/plugwiki/index.php/Setting_GuruPlug_to_be_a_WiFi_Access_Point

modprobe uap8xxx ---> OK
guruplug-debian:~# ifconfig uap0 192.168.1.1 up ---> OK
guruplug-debian:~# /usr/bin/uaputl sys_cfg_ssid $SSID ---> OK
guruplug-debian:~# /usr/bin/uaputl bss_start ---> Fail: ERR:Could not start BSS!
guruplug-debian:~# iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE ---> OK
guruplug-debian:~# echo 1 > /proc/sys/net/ipv4/ip_forward ---> OK
guruplug-debian:~# /etc/init.d/udhcpd start ---> OK
guruplug-debian:~# /etc/init.d/dnsmasq start ---> OK

Somebody has any idea? I think something wrong with uaputl.
Pages: [1]