layerscape 376 B

123456789101112131415161718192021222324
  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,ls1043v|\
  11. traverse,ls1043s)
  12. ubootenv_add_uci_config "/dev/mtd1" "0x40000" "0x2000" "0x20000"
  13. ;;
  14. esac
  15. config_load ubootenv
  16. config_foreach ubootenv_add_app_config ubootenv
  17. exit 0