What's new
  • SNBForums Code of Conduct

    SNBForums is a community for everyone, no matter what their level of experience.

    Please be tolerant and patient of others, especially newcomers. We are all here to share and learn!

    The rules are simple: Be patient, be nice, be helpful or be gone!

how to install entware to jffs without USB flashdrive

This is NOT recommended, but it's your router.

Copy the file /usr/sbin/entware-setup.sh to jffs and then modify the PART_TYPES variables on line 23 and 27 to include the jffs partition:
Code:
case $(uname -m) in
  armv7l)
    PART_TYPES='ext2|ext3|ext4|jffs2'
    INST_URL='http://pkg.entware.net/binaries/armv7/installer/entware_install.sh'
    ;;
  mips)
    PART_TYPES='ext2|ext3|jffs2'
    INST_URL='http://pkg.entware.net/binaries/mipsel/installer/installer.sh'
    ;;
  *)
    echo "This is unsupported platform, sorry."
    ;;
esac
 
This is NOT recommended, but it's your router.

Copy the file /usr/sbin/entware-setup.sh to jffs and then modify the PART_TYPES variables on line 23 and 27 to include the jffs partition:
Code:
case $(uname -m) in
  armv7l)
    PART_TYPES='ext2|ext3|ext4|jffs2'
    INST_URL='http://pkg.entware.net/binaries/armv7/installer/entware_install.sh'
    ;;
  mips)
    PART_TYPES='ext2|ext3|jffs2'
    INST_URL='http://pkg.entware.net/binaries/mipsel/installer/installer.sh'
    ;;
  *)
    echo "This is unsupported platform, sorry."
    ;;
esac
got it

thanks !!!
 
so by default, entware reqquires a flash drive intresting
 
so by default, entware reqquires a flash drive intresting
The script filters out all non ext* formatted devices.
Since you usually install additional packages on it, the size of the entware folder can dramatically increase.
The jffs partition is only 30/60MB, not much room to manouver.
In addition to that, you actively decrease the lifetime of that non-replaceable memory block considerably since it's read/write cycles have a finite number.

As I said, NOT recommended. Don't even think about installing AB-Solution in jffs, it won't fit.
 
The script filters out all non ext* formatted devices.
Since you usually install additional packages on it, the size of the entware folder can dramatically increase.
The jffs partition is only 30/60MB, not much room to manouver.
In addition to that, you actively decrease the lifetime of that non-replaceable memory block considerably since it's read/write cycles have a finite number.

As I said, NOT recommended. Don't even think about installing AB-Solution in jffs, it won't fit.
that awesome, cause i wan to isntall abunch of scripts to the router that use ent ware and i was looking for a guide on how to mount it to a usb lol. I thought by default it install to the jfs folder.
 
Last edited:

Similar threads

Support SNBForums w/ Amazon

If you'd like to support SNBForums, just use this link and buy anything on Amazon. Thanks!

Sign Up For SNBForums Daily Digest

Get an update of what's new every day delivered to your mailbox. Sign up here!

Staff online

Back
Top