Page 5 of 7 FirstFirst ... 34567 LastLast
Results 61 to 75 of 101

Thread: ASUS WL-700gE custom firmware released - (1.0.4.2-1)

  1. #61
    Quote Originally Posted by d3viant View Post
    I was hoping that the lights would be controlled from somewhere within the linux /proc structure - but thats a pure guess

    If theyre in there somewhere, its just a case of finding them and changing a one to a zero in the file or something. Otherwise it becomes harder as a dig through the firmware source code is required. It is ok for the time being as the torrent client doesn't work amazingly well - so it isnt downloading anything (so I turn it off at night) but once downloads work properly, I will be wanting to leave it running :P
    I totally agree. There's some documentation that comes with the GPL source from Broadcom that talks about the GPIO triggers and such. You might be able to find something in there. The docs that came with the sources helped me get started figuring out what goes where and how certain things work when it comes to the OS and other functions.

  2. #62
    Quote Originally Posted by d3viant View Post
    I was hoping that the lights would be controlled from somewhere within the linux /proc structure - but thats a pure guess

    If theyre in there somewhere, its just a case of finding them and changing a one to a zero in the file or something. Otherwise it becomes harder as a dig through the firmware source code is required. It is ok for the time being as the torrent client doesn't work amazingly well - so it isnt downloading anything (so I turn it off at night) but once downloads work properly, I will be wanting to leave it running :P
    OpenWRT has gpio control binary: http://forum.openwrt.org/viewtopic.php?pid=35928#p35928
    Last edited by MoD; 15-11-2006 at 08:12.

  3. #63

    Strange behavior when update the firmware from web interface

    I'm working on new customized firmware. What is interesting, when I flash it from web interface, it is written to the router but not activized.

    The web page with progress bar comes saying that reboot is in progress. It seems that it is a web page with 2 minutes javascript timer that on exit redirects back to some page. In paralel I have telnet session open. It never gets disconnected. Only when I reboot router from telnet, the new firmware is activised.

    Maybe this is because of developement bug. But still - interesting,....

  4. #64
    Hmm, maybe the open telnet session is causing the router to not reboot?

    No idea why this would be the case, but the firmware code is sort of a mess

    I had a problem with this on the first firmware upgrade - from 1.0.4.1 to 1.0.4.6 but since then it has worked through the web interface no problem.

  5. #65
    Quote Originally Posted by d3viant View Post
    Hmm, maybe the open telnet session is causing the router to not reboot?

    No idea why this would be the case, but the firmware code is sort of a mess

    I had a problem with this on the first firmware upgrade - from 1.0.4.1 to 1.0.4.6 but since then it has worked through the web interface no problem.
    good point. Thanks

  6. #66
    Quote Originally Posted by MoD View Post
    I'm working on new customized firmware. What is interesting, when I flash it from web interface, it is written to the router but not activized.

    The web page with progress bar comes saying that reboot is in progress. It seems that it is a web page with 2 minutes javascript timer that on exit redirects back to some page. In paralel I have telnet session open. It never gets disconnected. Only when I reboot router from telnet, the new firmware is activised.

    Maybe this is because of developement bug. But still - interesting,....
    Funny, I had a similar problem last night trying to flash a freshly compiled firmware. The flash of my latest & not-so-greatest compile went fine. The router reboots, and almost everything came back up (except samba, and it didn't mount the HD either ) When I flashed a previous version to get everything back in running order, all I got was the same thing. A progress bar, but as far as I could tell the router didn't do anything, nor did the 'Ready' light ever go off. Afterwards I had to shut it down and turn it back on, and it completed the flashing and all was good again.

    My first attempt to add a custom boot script was semi-successful. I'm not sure where I went wrong, but I have 2 thoughts. First one is a mod I made to busybox didn't compile right, and that caused some system confusion, or it attempted to look for my custom script but where I stored it on the HD get's nuked everytime it reboots, so that threw it off. Either way it's gonna require some tinkering.

  7. #67
    Most of the created directories will disappear upon a reboot - the source code appears to build the filesystem dynamically on power on...

  8. #68
    Quote Originally Posted by fireflash View Post
    Funny, I had a similar problem last night trying to flash a freshly compiled firmware. The flash of my latest & not-so-greatest compile went fine. The router reboots, and almost everything came back up (except samba, and it didn't mount the HD either )
    Exactly! if something goes wrong, HDD is not mounted I also do not know were I was wrong

  9. #69
    Quote Originally Posted by MoD View Post
    Exactly! if something goes wrong, HDD is not mounted I also do not know were I was wrong
    Interesting... I've never seen this behavior. Maybe it's a something specific to 1.0.4.2?

    - K.C.

  10. #70
    Quote Originally Posted by MoD View Post
    Hmm, no luck with that gpio binary, I copied it across to my share, but running /share/MYVOLUME1/MYSHARE1/gpio from the router gives gpio: not found

    running . gpio in the directory gives not found: ELF (then 3 diamonds)

    It seems like it isn't compiled quite right for the wl-700ge...

    although there is a .c source file - does anyone know how i would go about compiling this specifically for the wl-700ge?

  11. #71
    Quote Originally Posted by d3viant View Post
    Hmm, no luck with that gpio binary, I copied it across to my share, but running /share/MYVOLUME1/MYSHARE1/gpio from the router gives gpio: not found

    running . gpio in the directory gives not found: ELF (then 3 diamonds)

    It seems like it isn't compiled quite right for the wl-700ge...

    although there is a .c source file - does anyone know how i would go about compiling this specifically for the wl-700ge?
    i guess it is uClibc compiled. you have to install uClibc or recompile with glibc.

  12. #72
    Right, seeing as I don't appear to be able to install uclibc on my router right now, how do I go about compiling it on a linux box with glibc?

  13. #73
    Quote Originally Posted by kfurge View Post
    Interesting... I've never seen this behavior. Maybe it's a something specific to 1.0.4.2?

    - K.C.
    I'm messing with the 1.0.4.6 source, so it's not version specific. I'm hoping my problem had to do with the missing script I had written. I've moved it to a safer location (safe from boot-time nukings anyways) so I'll take another stab at it eventually. Right now I'm going to take a small break from trying to brick my router and try and brick my iMac. lol

  14. #74
    Quote Originally Posted by d3viant View Post
    Hmm, no luck with that gpio binary, I copied it across to my share, but running /share/MYVOLUME1/MYSHARE1/gpio from the router gives gpio: not found

    running . gpio in the directory gives not found: ELF (then 3 diamonds)

    It seems like it isn't compiled quite right for the wl-700ge...

    although there is a .c source file - does anyone know how i would go about compiling this specifically for the wl-700ge?
    There's a gpio binary in the router. Hopefully some of the Broadcom docs Asus provided explains how to use it.

  15. #75
    Unfortunately, the provided gpio program SIGSEGV's when you try to run it - another ASUS bug I think

Page 5 of 7 FirstFirst ... 34567 LastLast

Similar Threads

  1. WL-500gP and Asus support experience
    By Blezi in forum WL-500gP Q&A
    Replies: 6
    Last Post: 03-12-2006, 12:59
  2. New Asus firmware, old Oleg firmware
    By JuggernauT in forum WL-500gP Firmware Discussion
    Replies: 0
    Last Post: 26-09-2006, 13:26
  3. Website (Firmware 1.0.4.2)
    By BlueEye in forum WL-700g Q&A
    Replies: 2
    Last Post: 16-07-2006, 04:04
  4. Cannot roll back firmware to "standard" asus?
    By Rasmuskarlsen in forum WL-500gP Q&A
    Replies: 2
    Last Post: 05-07-2006, 09:00
  5. Custom Firmware v1.1.2.7
    By JOCKYW2001 in forum WL-HDD Firmware Releases
    Replies: 59
    Last Post: 11-12-2004, 12:26

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •