rockchip 336 B

12345678910111213141516171819202122
  1. #
  2. # Copyright (C) 2023 OpenWrt.org
  3. #
  4. [ -e /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. lyt,t68m)
  11. ubootenv_add_uci_config "/dev/mmcblk0" "0x3f8000" "0x8000"
  12. ;;
  13. esac
  14. config_load ubootenv
  15. config_foreach ubootenv_add_app_config
  16. exit 0