This commit deactivates some special treatments for low memory devices, we
need to first evaluate the current openwrt to check what is needed and what
not.
Signed-off-by: Tim Niemeyer <tim.niemeyer@mastersword.de>
Used this script to clean up the config files:
--- 8< ---
for cfg in bsp/*/.config; do
grep -e "^CONFIG\|^# CONFIG" $cfg | sort >> $cfg.new
mv $cfg.new $cfg
done
--- >8 ---
Signed-off-by: Tim Niemeyer <tim.niemeyer@mastersword.de>
The new build_script uses a bsp-style interface. Now it's possible
to work on more than one board at the same time. Just select the
selected_bsp with the build_script and start over.
Signed-off-by: Tim Niemeyer <tim.niemeyer@mastersword.de>