platform.sh 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. #!/bin/sh
  2. #
  3. # Copyright (C) 2017 OpenWrt.org
  4. #
  5. # This is free software, licensed under the GNU General Public License v2.
  6. # See /LICENSE for more information.
  7. #
  8. RAMFS_COPY_BIN="/usr/sbin/fw_printenv /usr/sbin/fw_setenv /bin/mkdir /bin/dmesg /bin/sed /bin/grep"
  9. RAMFS_COPY_DATA="/etc/fw_env.config"
  10. REQUIRE_IMAGE_METADATA=0
  11. platform_check_image()
  12. {
  13. local board=$(board_name)
  14. nand_do_platform_check $board $1
  15. return $?
  16. }
  17. platform_pre_upgrade() {
  18. # TODO no need to switch to ramfs with dual partitions in
  19. # fact we don't even want to reboot as part of seamless
  20. # upgrades. Instead just upgrade opposite partition and mark
  21. # the next reboot to boot from that partition. Could just call
  22. # stage2 directly but need to refactor nand_upgrade_success
  23. # for this to work.
  24. # Also the nand functions don't allow url to be used
  25. nand_do_upgrade $1
  26. }
  27. platform_nand_pre_upgrade() {
  28. local board=$(board_name)
  29. case "$board" in
  30. img,pistachio-marduk)
  31. local boot_partition=$(dmesg | grep "ubi0: attached.*" | sed "s/^.*\(firmware[0-1]\).*/\1/g")
  32. echo "Current boot partiton $boot_partition (/dev/mtd$(find_mtd_index $boot_partition))"
  33. mkdir -p /var/lock
  34. if [ "$boot_partition" == "firmware0" ]; then
  35. CI_UBIPART="firmware1"
  36. fw_setenv boot_partition 1 || exit 1
  37. else
  38. CI_UBIPART="firmware0"
  39. fw_setenv boot_partition 0 || exit 1
  40. fi
  41. echo "Upgrading partition $CI_UBIPART (/dev/mtd$(find_mtd_index $CI_UBIPART))"
  42. ;;
  43. esac
  44. }
  45. blink_led() {
  46. . /etc/diag.sh; set_state upgrade
  47. }
  48. append sysupgrade_pre_upgrade blink_led