cns3xxx 533 B

123456789101112131415161718192021222324252627
  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. laguna)
  12. # Laguna uboot env size/erasesize vary depending on NOR vs SPI FLASH
  13. size=$(grep mtd1 /proc/mtd | awk '{print $2}')
  14. erasesize=$(grep mtd1 /proc/mtd | awk '{print $3}')
  15. ubootenv_add_uci_config "/dev/mtd1" "0x0" "0x$size" "0x$erasesize"
  16. ;;
  17. esac
  18. config_load ubootenv
  19. config_foreach ubootenv_add_app_config ubootenv
  20. exit 0