layerscape 353 B

1234567891011121314151617181920212223
  1. #
  2. # Copyright (C) 2016 LEDE
  3. #
  4. [ -f /etc/config/ubootenv ] && exit 0
  5. touch /etc/config/ubootenv
  6. . /lib/uboot-envtools.sh
  7. . /lib/functions.sh
  8. board=$(board_name)
  9. case "$board" in
  10. traverse,ten64)
  11. ubootenv_add_uci_config "/dev/mtd3" "0x0000" "0x80000" "0x80000"
  12. ;;
  13. esac
  14. config_load ubootenv
  15. config_foreach ubootenv_add_app_config ubootenv
  16. exit 0