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.

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