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.

43 lines
1.4 KiB

  1. #!/bin/bash
  2. # SPDX-License-Identifier: GPL-3.0+
  3. # shellcheck disable=SC1091
  4. source /home/coreboot/common_scripts/variables.sh
  5. source /home/coreboot/common_scripts/download_coreboot.sh
  6. source /home/coreboot/common_scripts/config_and_make.sh
  7. ################################################################################
  8. ## MODEL VARIABLES
  9. ################################################################################
  10. MAINBOARD="lenovo"
  11. MODEL="x230"
  12. ################################################################################
  13. ###############################################
  14. ## download/git clone/git pull Coreboot ##
  15. ###############################################
  16. downloadOrUpdateCoreboot
  17. ##############################
  18. ## Copy config and make ##
  19. ##############################
  20. configAndMake
  21. #####################
  22. ## Post build ##
  23. #####################
  24. if [ ! -f "$DOCKER_COREBOOT_DIR/build/coreboot.rom" ]; then
  25. echo "Uh oh. Things did not go according to plan."
  26. exit 1;
  27. else
  28. #split out top BIOS
  29. if [ ! -z "$COREBOOT_COMMIT" ]; then
  30. RELEASEFILE="${MODEL}_coreboot_seabios_$(echo ${COREBOOT_COMMIT} | cut -c 1-10)_top.rom"
  31. else
  32. RELEASEFILE="coreboot_$MAINBOARD-$MODEL-top.rom"
  33. fi
  34. dd if="$DOCKER_COREBOOT_DIR/build/coreboot.rom" of="$DOCKER_COREBOOT_DIR/$RELEASEFILE" bs=1M skip=8
  35. sha256sum "$DOCKER_COREBOOT_DIR/$RELEASEFILE" > "$DOCKER_COREBOOT_DIR/${RELEASEFILE}".sha256
  36. fi