coreboot 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. #!/usr/bin/env bash
  2. # Copyright (C) 2016 Paul Kocialkowski <contact@paulk.fr>
  3. #
  4. # This program is free software: you can redistribute it and/or modify
  5. # it under the terms of the GNU General Public License as published by
  6. # the Free Software Foundation, either version 3 of the License, or
  7. # (at your option) any later version.
  8. #
  9. # This program is distributed in the hope that it will be useful,
  10. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. # GNU General Public License for more details.
  13. #
  14. # You should have received a copy of the GNU General Public License
  15. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  16. arguments() {
  17. project_arguments_targets "$project" "$@"
  18. }
  19. usage() {
  20. project_usage_actions "$project"
  21. project_usage_arguments "$project" "$@"
  22. }
  23. dependencies() {
  24. project_dependencies "$project" "$@"
  25. }
  26. dependencies_check() {
  27. project_dependencies_check "$project" "$@"
  28. }
  29. download() {
  30. local repository=$project
  31. project_download_git "$project" "$repository" "https://review.coreboot.org/coreboot https://github.com/coreboot/coreboot.git" "$@"
  32. }
  33. download_check() {
  34. local repository=$project
  35. project_download_check_git "$project" "$repository" "$@"
  36. }
  37. extract() {
  38. project_extract "$project" "$@"
  39. }
  40. extract_check() {
  41. project_extract_check "$project" "$@"
  42. }
  43. update() {
  44. local repository=$project
  45. project_update_git "$project" "$repository" "$@"
  46. }
  47. update_check() {
  48. local repository=$project
  49. project_update_check_git "$project" "$repository" "$@"
  50. }
  51. build() {
  52. local board="$1"
  53. shift
  54. local repository=$project
  55. project_sources_directory_missing_empty_error "$project" "$repository" "$board" "$@"
  56. local sources_path=$(project_sources_path "$project" "$repository" "$board" "$@")
  57. local build_path=$(project_build_path "$project" "$board" "$@")
  58. local base_config_path=$(coreboot_config_path "$board" "$@")
  59. local variant_config_path="$(coreboot_variant_config_path "$board" "$@")"
  60. local arch=$(coreboot_arch "$board" "$@")
  61. local crossgcc_build_path=$(project_build_path "crossgcc" "$arch")
  62. local crossgcc_bin_path="$crossgcc_build_path/bin/"
  63. local vboot_sources_path=$(project_sources_path "vboot" "vboot" "devices")
  64. local -i base_config_line_count="$(wc -l < "$base_config_path")"
  65. local -a base_config_overrides
  66. local -a board_variant_config
  67. # To only get overrides, trim out base config since
  68. # we cannot skip it in project_file_contents_herit()
  69. mapfile -t base_config_overrides \
  70. < <(tail -n +$(($base_config_line_count+1)) \
  71. < <(coreboot_config "$board" "$@") \
  72. 2>/dev/null)
  73. if [[ -n "$variant_config_path" ]]; then
  74. mapfile -t board_variant_config < "$variant_config_path"
  75. fi
  76. if git_project_check "$repository"
  77. then
  78. git_project_checkout "$project" "$repository" "$board" "$@"
  79. fi
  80. project_action_arguments "checkout" "vboot" "devices"
  81. rm -f "$sources_path/.xcompile"
  82. mkdir -p "$build_path"
  83. make -C "$sources_path" obj="$build_path" DOTCONFIG="$build_path/.config" XGCCPATH="$crossgcc_bin_path" BUILD_TIMELESS=1 KERNELVERSION="$VERSION" KBUILD_DEFCONFIG="$base_config_path" "${board_variant_config[@]}" "${base_config_overrides[@]}" "defconfig"
  84. make -C "$sources_path" obj="$build_path" DOTCONFIG="$build_path/.config" XGCCPATH="$crossgcc_bin_path" BUILD_TIMELESS=1 KERNELVERSION="$VERSION" VBOOT_SOURCE="$vboot_sources_path" "${board_variant_config[@]}" "${base_config_overrides[@]}" -j$TASKS
  85. rm -f "$sources_path/.xcompile"
  86. }
  87. build_check() {
  88. project_build_check "$project" "$@"
  89. }
  90. install() {
  91. project_install "$project" "$@"
  92. }
  93. install_check() {
  94. project_install_check "$project" "$@"
  95. }
  96. release() {
  97. local repository=$project
  98. project_release_install_archive "$project" "$IMAGES" "$@"
  99. project_release_sources_git "$project" "$repository" "$@"
  100. }
  101. release_check() {
  102. local repository=$project
  103. project_release_install_archive_check "$project" "$IMAGES" "$@"
  104. project_release_check_sources_git "$project" "$repository" "$@"
  105. }
  106. clean() {
  107. project_clean "$project" "$@"
  108. }