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.

110 lines
4.2 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. # pull in microcode update to the blobs repo
  25. cd "$DOCKER_COREBOOT_DIR/3rdparty/blobs/" || exit
  26. git pull https://review.coreboot.org/blobs refs/changes/52/27352/1
  27. cd "$DOCKER_COREBOOT_DIR" || exit
  28. git pull https://review.coreboot.org/coreboot refs/changes/54/27354/3
  29. }
  30. ################################################################################
  31. ################################################################################
  32. ##
  33. ################################################################################
  34. function checkoutTag() {
  35. cd "$DOCKER_COREBOOT_DIR" || exit
  36. git checkout tags/"$COREBOOT_TAG" || exit
  37. git submodule update --recursive --remote
  38. }
  39. ################################################################################
  40. ################################################################################
  41. ##
  42. ################################################################################
  43. function checkoutCommit() {
  44. cd "$DOCKER_COREBOOT_DIR" || exit
  45. # bleeding-edge should checkout master
  46. git checkout "$COREBOOT_COMMIT" || exit
  47. if [ "$COREBOOT_COMMIT" == "master" ]; then
  48. git pull --all
  49. fi
  50. git submodule update --recursive --remote
  51. }
  52. ################################################################################
  53. ################################################################################
  54. ## Download the latest released version of Coreboot
  55. ################################################################################
  56. function downloadCoreboot() {
  57. CB_RELEASES=$(wget -q -O- https://coreboot.org/releases/sha256sum.txt | sed 's/[^*]*\*//')
  58. LATEST_RELEASE=$(echo -n "$CB_RELEASES" | grep "coreboot-" | grep -v "coreboot-blobs-" | sort -V | tail -n1)
  59. LATEST_BLOBS=$(echo -n "$CB_RELEASES" | grep "coreboot-blobs-" | sort -V | tail -n1)
  60. COREBOOT_VERSION=$(echo -n "$LATEST_RELEASE" | sed 's/coreboot-//' | sed 's/.tar.xz//')
  61. echo "Beginning download of $LATEST_RELEASE..."
  62. wget -q -O- "https://coreboot.org/releases/$LATEST_RELEASE" | unxz -c | tar -C "$DOCKER_COREBOOT_DIR" -x --strip 1
  63. wget -q -O- "https://coreboot.org/releases/$LATEST_BLOBS" | unxz -c | tar -C "$DOCKER_COREBOOT_DIR" -x --strip 1
  64. echo "Downloading $LATEST_RELEASE complete"
  65. export COREBOOT_VERSION;
  66. }
  67. ################################################################################
  68. ################################################################################
  69. ## MAIN FUNCTION: download/clone/checkout appropriate version of CoreBoot
  70. ########################################
  71. ########################################################################################################################
  72. function downloadOrUpdateCoreboot() {
  73. if [ -z "$COREBOOT_COMMIT" ] && [ -z "$COREBOOT_TAG" ] && [ -z "$IS_BUILD_DIR_EMPTY" ]; then
  74. # If a no commit nor tag is given and the directory is empty download Coreboot release
  75. downloadCoreboot;
  76. elif [ "$COREBOOT_COMMIT" ]; then
  77. # DOCKER_COMMIT?=$(shell git log -n 1 --pretty=%h)
  78. gitUpdate
  79. checkoutCommit
  80. elif [ "$COREBOOT_TAG" ]; then
  81. gitUpdate
  82. checkoutTag
  83. fi
  84. }
  85. ################################################################################