Bigger Flash

Is there a way in the future to get Cores with even bigger Flash ?
(after installing some opkg packages, it is already at 86% full)

Not possible for bigger flash because the chip limitation. But you can use SD card or USB and install your program on it.

The methods:

  1. First mount USB/MicroSD card, e.g. as /mnt/sda1
  2. in /etc/opkg.config, add one line with contents:
    dest usb /mnt/sda1
  3. When install packages, add path, e.g.

opkg install xxxx -d usb 

More help can be found: OPKG Package Manager [Old OpenWrt Wiki]

As long as you have USB storage (That will always be connected) you can use extroot to essentially copy and run the OS from that storage; it works really well and was quite painless to set up (Assuming you’re ok with editing files from the command line and other Linux admin tasks). Once it’s set up it will intelligently mount the storage on boot and use it instead of the internal flash. I have the 3-port USB/micro SD tile and have a 32GB microSD card inserted, it’s great and no more worries about storage.

See here, starting in the section "Prerequisites: http://wiki.openwrt.org/doc/howto/extroot

-Larry

Thanks, Larry !
That is a good alternative !