mxs 416 B

12345678910111213141516171819202122232425
  1. #!/bin/sh
  2. #
  3. # Copyright (C) 2013 OpenWrt.org
  4. #
  5. [ -e /etc/config/ubootenv ] && exit 0
  6. touch /etc/config/ubootenv
  7. . /lib/uboot-envtools.sh
  8. . /lib/functions.sh
  9. board=$(board_name)
  10. case "$board" in
  11. duckbill)
  12. ubootenv_add_uci_config "/dev/mmcblk0" "0x20000" "0x20000"
  13. ubootenv_add_uci_config "/dev/mmcblk0" "0x40000" "0x20000"
  14. ;;
  15. esac
  16. config_load ubootenv
  17. config_foreach ubootenv_add_app_config ubootenv
  18. exit 0