ipq 458 B

12345678910111213141516171819202122232425262728
  1. #!/bin/sh
  2. #
  3. # Copyright (C) 2016 LEDE
  4. #
  5. [ -e /etc/config/ubootenv ] && exit 0
  6. touch /etc/config/ubootenv
  7. . /lib/ipq806x.sh
  8. . /lib/uboot-envtools.sh
  9. . /lib/functions.sh
  10. board=$(ipq806x_board_name)
  11. case "$board" in
  12. ea8500)
  13. ubootenv_add_uci_config "/dev/mtd10" "0x0" "0x20000" "0x20000"
  14. ;;
  15. nbg6817)
  16. ubootenv_add_uci_config "/dev/mtdblock9" "0x0" "0x10000" "0x10000"
  17. ;;
  18. esac
  19. config_load ubootenv
  20. config_foreach ubootenv_add_app_config ubootenv
  21. exit 0