You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

109 lines
4.1 KiB

  1. #!/bin/bash
  2. # SPDX-License-Identifier: GPL-3.0+
  3. # Copyright (C) 2018, Tom Hiller <thrilleratplay@gmail.com>
  4. # shellcheck disable=SC1091
  5. source /home/coreboot/common_scripts/variables.sh
  6. IS_BUILD_DIR_EMPTY=$(ls -A "$DOCKER_COREBOOT_DIR")
  7. ################################################################################
  8. ## Update or clone git coreboot repo
  9. ################################################################################
  10. function gitUpdate() {
  11. if [ -z "$IS_BUILD_DIR_EMPTY" ]; then
  12. # Clone Coreboot and fetch submodules
  13. git clone https://github.com/coreboot/coreboot.git "$DOCKER_COREBOOT_DIR"
  14. cd "$DOCKER_COREBOOT_DIR" || exit
  15. git submodule update --init --recursive --remote
  16. # blobs are ignored from updates. Manually clone to prevent compile errors later from non empty directory cloning
  17. git clone https://github.com/coreboot/blobs.git 3rdparty/blobs/
  18. else
  19. cd "$DOCKER_COREBOOT_DIR" || exit
  20. git fetch --all --tags --prune
  21. cd "$DOCKER_COREBOOT_DIR/3rdparty/blobs/" || exit
  22. git fetch --all --tags --prune
  23. fi
  24. # update the blobs repo to include the microcode update we need
  25. # cd "$DOCKER_COREBOOT_DIR/3rdparty/blobs/" || exit
  26. cd "$DOCKER_COREBOOT_DIR" || exit
  27. git pull https://review.coreboot.org/coreboot refs/changes/08/30308/1
  28. }
  29. ################################################################################
  30. ################################################################################
  31. ##
  32. ################################################################################
  33. function checkoutTag() {
  34. cd "$DOCKER_COREBOOT_DIR" || exit
  35. git checkout tags/"$COREBOOT_TAG" || exit
  36. git submodule update --recursive --remote
  37. }
  38. ################################################################################
  39. ################################################################################
  40. ##
  41. ################################################################################
  42. function checkoutCommit() {
  43. cd "$DOCKER_COREBOOT_DIR" || exit
  44. # bleeding-edge should checkout master
  45. git checkout "$COREBOOT_COMMIT" || exit
  46. if [ "$COREBOOT_COMMIT" == "master" ]; then
  47. git pull --all
  48. fi
  49. git submodule update --recursive --remote
  50. }
  51. ################################################################################
  52. ################################################################################
  53. ## Download the latest released version of Coreboot
  54. ################################################################################
  55. function downloadCoreboot() {
  56. CB_RELEASES=$(wget -q -O- https://coreboot.org/releases/sha256sum.txt | sed 's/[^*]*\*//')
  57. LATEST_RELEASE=$(echo -n "$CB_RELEASES" | grep "coreboot-" | grep -v "coreboot-blobs-" | sort -V | tail -n1)
  58. LATEST_BLOBS=$(echo -n "$CB_RELEASES" | grep "coreboot-blobs-" | sort -V | tail -n1)
  59. COREBOOT_VERSION=$(echo -n "$LATEST_RELEASE" | sed 's/coreboot-//' | sed 's/.tar.xz//')
  60. echo "Beginning download of $LATEST_RELEASE..."
  61. wget -q -O- "https://coreboot.org/releases/$LATEST_RELEASE" | unxz -c | tar -C "$DOCKER_COREBOOT_DIR" -x --strip 1
  62. wget -q -O- "https://coreboot.org/releases/$LATEST_BLOBS" | unxz -c | tar -C "$DOCKER_COREBOOT_DIR" -x --strip 1
  63. echo "Downloading $LATEST_RELEASE complete"
  64. export COREBOOT_VERSION;
  65. }
  66. ################################################################################
  67. ################################################################################
  68. ## MAIN FUNCTION: download/clone/checkout appropriate version of CoreBoot
  69. ########################################
  70. ########################################################################################################################
  71. function downloadOrUpdateCoreboot() {
  72. if [ -z "$COREBOOT_COMMIT" ] && [ -z "$COREBOOT_TAG" ] && [ -z "$IS_BUILD_DIR_EMPTY" ]; then
  73. # If a no commit nor tag is given and the directory is empty download Coreboot release
  74. downloadCoreboot;
  75. elif [ "$COREBOOT_COMMIT" ]; then
  76. # DOCKER_COMMIT?=$(shell git log -n 1 --pretty=%h)
  77. gitUpdate
  78. checkoutCommit
  79. elif [ "$COREBOOT_TAG" ]; then
  80. gitUpdate
  81. checkoutTag
  82. fi
  83. }
  84. ################################################################################