2017-09-22 20:17:05 +00:00
|
|
|
modules-$(CONFIG_COREBOOT) += coreboot
|
2016-08-03 01:49:22 +00:00
|
|
|
|
2020-11-25 13:43:07 +00:00
|
|
|
ifeq "$(CONFIG_COREBOOT)" "y"
|
|
|
|
|
2021-07-20 20:48:08 +00:00
|
|
|
CONFIG_COREBOOT_ROM ?= coreboot.rom
|
|
|
|
CONFIG_COREBOOT_BOOTBLOCK ?=
|
|
|
|
|
2021-07-18 17:34:20 +00:00
|
|
|
ifeq "$(CONFIG_TARGET_ARCH)" "x86"
|
|
|
|
COREBOOT_TARGET := i386
|
|
|
|
LINUX_IMAGE_FILE := bzImage
|
|
|
|
else ifeq "$(CONFIG_TARGET_ARCH)" "ppc64"
|
|
|
|
COREBOOT_TARGET := ppc64
|
|
|
|
LINUX_IMAGE_FILE := zImage
|
|
|
|
else
|
|
|
|
$(error "$(CONFIG_TARGET_ARCH) target isn't supported by this module")
|
|
|
|
endif
|
|
|
|
|
2020-07-10 13:44:01 +00:00
|
|
|
ifeq "$(CONFIG_COREBOOT_VERSION)" "4.8.1"
|
2020-08-20 19:15:46 +00:00
|
|
|
coreboot_version := 4.8.1
|
|
|
|
coreboot_hash := f0ddf4db0628c1fe1e8348c40084d9cbeb5771400c963fd419cda3995b69ad23
|
|
|
|
coreboot-blobs_hash := 18aa509ae3af005a05d7b1e0b0246dc640249c14fc828f5144b6fd20bb10e295
|
2020-10-18 18:48:25 +00:00
|
|
|
else ifeq "$(CONFIG_COREBOOT_VERSION)" "4.11"
|
|
|
|
coreboot_version := 4.11
|
|
|
|
coreboot_hash := 97fd859b4c39a25534fe33c30eb86e54a233952e08a024c55858d11598a8ad87
|
|
|
|
coreboot-blobs_hash := aa7855c5bd385b3360dadc043ea6bc93f564e6e4840d9b3ee5b9e696bbd055db
|
|
|
|
coreboot_depends := $(if $(CONFIG_PURISM_BLOBS), purism-blobs)
|
2020-12-04 01:15:15 +00:00
|
|
|
else ifeq "$(CONFIG_COREBOOT_VERSION)" "4.13"
|
|
|
|
coreboot_version := 4.13
|
|
|
|
coreboot_hash := 4779da645a25ddebc78f1bd2bd0b740fb1e6479572648d4650042a2b9502856a
|
|
|
|
coreboot-blobs_hash := 060656b46a7859d038ddeec3f7e086e85f146a50b280c4babec23c1188264dc8
|
2020-09-02 18:39:37 +00:00
|
|
|
coreboot_depends := $(if $(CONFIG_PURISM_BLOBS), purism-blobs)
|
2022-09-01 22:39:16 +00:00
|
|
|
else ifeq "$(CONFIG_COREBOOT_VERSION)" "4.17"
|
|
|
|
coreboot_version := 4.17
|
|
|
|
coreboot_hash := 95da11d1c6a450385101a68799258a398ce965f4e46cce6fe8d5ebd74e50c125
|
|
|
|
coreboot-blobs_hash := a2277fe7a2b2aab5da0aa335158460e00b852382f6736f2179992805702eb607
|
|
|
|
coreboot_depends := $(if $(CONFIG_PURISM_BLOBS), purism-blobs)
|
|
|
|
EXTRA_FLAGS := -fdebug-prefix-map=$(pwd)=heads -gno-record-gcc-switches -Wno-error=packed-not-aligned -Wno-error=address-of-packed-member
|
2023-02-15 16:47:30 +00:00
|
|
|
else ifeq "$(CONFIG_COREBOOT_VERSION)" "4.19"
|
|
|
|
coreboot_version := 4.19
|
|
|
|
coreboot_hash := 65ccb2f46535b996e0066a1b76f81c8cf1ff3e27df84b3f97d8ad7b3e7cf0a43
|
|
|
|
coreboot-blobs_hash := 30214caed07b25f11e47bec022ff6234841376e36689eb674de2330a3e980cbc
|
|
|
|
coreboot_depends := $(if $(CONFIG_PURISM_BLOBS), purism-blobs)
|
|
|
|
EXTRA_FLAGS := -fdebug-prefix-map=$(pwd)=heads -gno-record-gcc-switches -Wno-error=packed-not-aligned -Wno-error=address-of-packed-member
|
2021-07-18 17:37:23 +00:00
|
|
|
else ifeq "$(CONFIG_COREBOOT_VERSION)" "talos_2"
|
|
|
|
coreboot_version = git
|
2023-06-09 18:25:49 +00:00
|
|
|
coreboot_patch_version = talos_2
|
2023-05-24 22:07:29 +00:00
|
|
|
coreboot_commit_hash = 068ad520e4ae898d356add72ea7d2a13913b76ab
|
2021-07-18 17:37:23 +00:00
|
|
|
coreboot_repo := https://github.com/Dasharo/coreboot
|
2022-09-01 22:39:16 +00:00
|
|
|
|
2021-03-25 16:58:02 +00:00
|
|
|
else ifeq "$(CONFIG_COREBOOT_VERSION)" "purism"
|
|
|
|
coreboot_version := git
|
|
|
|
coreboot_repo := https://source.puri.sm/coreboot/coreboot
|
|
|
|
coreboot_commit_hash := 6b65c78be89bb640b4b19a187de8400751ed1df5
|
|
|
|
EXTRA_FLAGS := -fdebug-prefix-map=$(pwd)=heads -gno-record-gcc-switches -Wno-error=packed-not-aligned -Wno-error=address-of-packed-member
|
2020-07-10 13:44:01 +00:00
|
|
|
else
|
2020-08-20 19:15:46 +00:00
|
|
|
$(error "$(BOARD): does not specify coreboot version under CONFIG_COREBOOT_VERSION")
|
2020-07-10 13:44:01 +00:00
|
|
|
endif
|
|
|
|
|
2017-02-01 16:50:52 +00:00
|
|
|
#coreboot_version := git
|
|
|
|
#coreboot_repo := https://github.com/osresearch/coreboot
|
2018-05-02 15:38:39 +00:00
|
|
|
coreboot_base_dir := coreboot-$(coreboot_version)
|
|
|
|
coreboot_dir := $(coreboot_base_dir)/$(BOARD)
|
2017-02-01 16:50:52 +00:00
|
|
|
coreboot_tar := coreboot-$(coreboot_version).tar.xz
|
|
|
|
coreboot_url := https://www.coreboot.org/releases/$(coreboot_tar)
|
2016-08-19 15:31:07 +00:00
|
|
|
|
2020-01-08 16:08:15 +00:00
|
|
|
# coreboot builds are specialized on a per-target basis.
|
2016-11-23 17:11:08 +00:00
|
|
|
# The builds are done in a per-target subdirectory
|
2018-02-05 16:56:15 +00:00
|
|
|
CONFIG_COREBOOT_CONFIG ?= config/coreboot-$(BOARD).config
|
2016-11-23 17:11:08 +00:00
|
|
|
|
2018-05-03 20:47:09 +00:00
|
|
|
# Ensure that touching the config file will force a rebuild
|
|
|
|
$(build)/$(coreboot_dir)/.configured: $(CONFIG_COREBOOT_CONFIG)
|
|
|
|
|
2022-01-28 18:57:48 +00:00
|
|
|
EXTRA_FLAGS ?= -fdebug-prefix-map=$(pwd)=heads -gno-record-gcc-switches -Wno-error=packed-not-aligned
|
2017-01-29 01:21:47 +00:00
|
|
|
|
2016-11-23 17:11:08 +00:00
|
|
|
coreboot_configure := \
|
2018-08-13 14:26:08 +00:00
|
|
|
mkdir -p "$(build)/$(coreboot_dir)" \
|
2022-08-16 16:39:33 +00:00
|
|
|
&& $(call install_config,$(pwd)/$(CONFIG_COREBOOT_CONFIG),$(build)/$(coreboot_dir)/.config) \
|
2020-10-21 15:04:27 +00:00
|
|
|
&& echo 'CONFIG_LOCALVERSION="Heads-$(HEADS_GIT_VERSION)"' >> $(build)/$(coreboot_dir)/.config \
|
|
|
|
&& echo 'CONFIG_MAINBOARD_SMBIOS_PRODUCT_NAME="$(BOARD)"' >> $(build)/$(coreboot_dir)/.config \
|
2018-08-13 14:26:08 +00:00
|
|
|
&& $(MAKE) olddefconfig \
|
|
|
|
-C "$(build)/$(coreboot_base_dir)" \
|
|
|
|
obj="$(build)/$(coreboot_dir)" \
|
2018-10-27 21:03:45 +00:00
|
|
|
DOTCONFIG="$(build)/$(coreboot_dir)/.config" \
|
2017-02-01 18:39:56 +00:00
|
|
|
BUILD_TIMELESS=1 \
|
2017-01-29 01:21:47 +00:00
|
|
|
CFLAGS_x86_32="$(EXTRA_FLAGS)" \
|
|
|
|
CFLAGS_x86_64="$(EXTRA_FLAGS)" \
|
2016-11-23 17:11:08 +00:00
|
|
|
|
2020-01-08 16:08:15 +00:00
|
|
|
COREBOOT_IASL="$(build)/$(coreboot_base_dir)/util/crossgcc/xgcc/bin/iasl"
|
|
|
|
|
2021-07-18 17:34:20 +00:00
|
|
|
# coreboot for x86 is built with the 32-bit compiler; ideally we could use the
|
|
|
|
# same x86_64-linux-musl -m32 to build it, but this causes some link errors that
|
|
|
|
# need to be tracked down.
|
2020-01-08 16:08:15 +00:00
|
|
|
# CROSS="$(CROSS)" \
|
|
|
|
|
2021-07-18 17:34:20 +00:00
|
|
|
ifeq "$(CONFIG_TARGET_ARCH)" "x86"
|
|
|
|
COREBOOT_CROSS := $(dir $(CROSS))i386-linux-musl-
|
|
|
|
else
|
|
|
|
COREBOOT_CROSS := $(CROSS)
|
|
|
|
endif
|
|
|
|
|
2016-11-23 17:11:08 +00:00
|
|
|
coreboot_target := \
|
2018-08-13 14:26:08 +00:00
|
|
|
-C "$(build)/$(coreboot_base_dir)" \
|
|
|
|
obj="$(build)/$(coreboot_dir)" \
|
2021-07-18 17:34:20 +00:00
|
|
|
CROSS="$(COREBOOT_CROSS)" \
|
2020-01-08 16:08:15 +00:00
|
|
|
IASL="$(COREBOOT_IASL)" \
|
2018-10-27 21:03:45 +00:00
|
|
|
DOTCONFIG="$(build)/$(coreboot_dir)/.config" \
|
2023-04-21 20:54:48 +00:00
|
|
|
xcompile="$(build)/$(coreboot_base_dir)/.xcompile" \
|
2017-02-01 18:39:56 +00:00
|
|
|
BUILD_TIMELESS=1 \
|
2017-01-29 01:21:47 +00:00
|
|
|
CFLAGS_x86_32="$(EXTRA_FLAGS)" \
|
|
|
|
CFLAGS_x86_64="$(EXTRA_FLAGS)" \
|
2017-03-21 18:29:07 +00:00
|
|
|
$(MAKE_JOBS)
|
2016-11-23 17:11:08 +00:00
|
|
|
|
2021-07-20 20:48:08 +00:00
|
|
|
coreboot_output := $(CONFIG_COREBOOT_ROM)
|
|
|
|
coreboot_output += $(CONFIG_COREBOOT_BOOTBLOCK)
|
2020-01-08 16:08:15 +00:00
|
|
|
coreboot_depend += linux initrd $(musl_dep)
|
2018-09-18 19:59:48 +00:00
|
|
|
|
modules/coreboot: Do not rebuild coreboot buildstack when built
.xcompile was not found because it was quoted and shouldn't in coreboot module's makefile
Prior:
stat("\"/home/user/heads/build/x86/coreboot-4.13/.xcompile\"", 0x7ffe56e6cfd0) = -1 ENOENT (No such file or directory)
pipe([3, 4]) = 0
fcntl(4, F_GETFD) = 0
fcntl(4, F_SETFD, FD_CLOEXEC) = 0
fcntl(3, F_GETFD) = 0
fcntl(3, F_SETFD, FD_CLOEXEC) = 0
prlimit64(0, RLIMIT_NOFILE, NULL, {rlim_cur=1024, rlim_max=1024*1024}) = 0
prlimit64(0, RLIMIT_NOFILE, NULL, {rlim_cur=1024, rlim_max=1024*1024}) = 0
stat("/usr/bin/env", {st_mode=S_IFREG|0755, st_size=48480, ...}) = 0
geteuid() = 1000
getegid() = 1000
getuid() = 1000
getgid() = 1000
access("/usr/bin/env", X_OK) = 0
mmap(NULL, 36864, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_STACK, -1, 0) = 0x7ce2be6fd000
rt_sigprocmask(SIG_BLOCK, ~[], [CHLD], 8) = 0
clone(child_stack=0x7ce2be705ff0, flags=CLONE_VM|CLONE_VFORK|SIGCHLD) = 305342
munmap(0x7ce2be6fd000, 36864) = 0
rt_sigprocmask(SIG_SETMASK, [CHLD], NULL, 8) = 0
close(4) = 0
read(3, "2\n", 200) = 2
read(3, "", 198) = 0
close(3) = 0
wait4(-1, [{WIFEXITED(s) && WEXITSTATUS(s) == 0}], 0, NULL) = 305342
fstat(1, {st_mode=S_IFCHR|0620, st_rdev=makedev(0x88, 0), ...}) = 0
write(1, "make -C \"/home/user/heads/build/"..., 74make -C "/home/user/heads/build/x86/coreboot-4.13" CPUS=2 "crossgcc-i386"
) = 74
rt_sigprocmask(SIG_BLOCK, [HUP INT QUIT TERM XCPU XFSZ], NULL, 8) = 0
stat("/usr/bin/env", {st_mode=S_IFREG|0755, st_size=48480, ...}) = 0
geteuid() = 1000
getegid() = 1000
getuid() = 1000
getgid() = 1000
access("/usr/bin/env", X_OK) = 0
mmap(NULL, 36864, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_STACK, -1, 0) = 0x7ce2be6fd000
rt_sigprocmask(SIG_BLOCK, ~[], [HUP INT QUIT TERM CHLD XCPU XFSZ], 8) = 0
clone(child_stack=0x7ce2be705ff0, flags=CLONE_VM|CLONE_VFORK|SIGCHLD) = 305343
munmap(0x7ce2be6fd000, 36864) = 0
rt_sigprocmask(SIG_SETMASK, [HUP INT QUIT TERM CHLD XCPU XFSZ], NULL, 8) = 0
rt_sigprocmask(SIG_UNBLOCK, [HUP INT QUIT TERM XCPU XFSZ], NULL, 8) = 0
wait4(-1, make[1]: Entering directory '/home/user/heads/build/x86/coreboot-4.13'
Welcome to the coreboot cross toolchain builder v ()
Building toolchain using 2 thread(s).
Target architecture is i386-elf
Found compatible Ada compiler, enabling Ada support by default.
Downloading and verifying tarballs ...
* gmp-6.2.0.tar.xz (cached)... hash verified (052a5411dc74054240eec58132d2cf41211d0ff6)
* mpfr-4.1.0.tar.xz (cached)... hash verified (159c3a58705662bfde4dc93f2617f3660855ead6)
* mpc-1.2.0.tar.gz (cached)... hash verified (0abdc94acab0c9bfdaa391347cdfd7bbdb1cf017)
* binutils-2.35.tar.xz (cached)... hash verified (6bdd090ce268b6d6c3442516021c4e4b5019e303)
* gcc-8.3.0.tar.xz (cached)... hash verified (c27f4499dd263fe4fb01bcc5565917f3698583b2)
Downloaded tarballs ... ok
Unpacking and patching ...
* gmp-6.2.0.tar.xz
o gmp-6.2.0_generic-build.patch
* mpfr-4.1.0.tar.xz
^C0x7ffe56e6ef40, 0, NULL) = ? ERESTARTSYS (To be restarted if SA_RESTART is set)
strace: Process 305153 detached
After:
stat("/home/user/heads/build/x86/coreboot-4.13/.xcompile", 0x7ffd0303c7f0) = -1 ENOENT (No such file or directory)
pipe([3, 4]) = 0
fcntl(4, F_GETFD) = 0
fcntl(4, F_SETFD, FD_CLOEXEC) = 0
fcntl(3, F_GETFD) = 0
fcntl(3, F_SETFD, FD_CLOEXEC) = 0
prlimit64(0, RLIMIT_NOFILE, NULL, {rlim_cur=1024, rlim_max=1024*1024}) = 0
prlimit64(0, RLIMIT_NOFILE, NULL, {rlim_cur=1024, rlim_max=1024*1024}) = 0
stat("/usr/bin/env", {st_mode=S_IFREG|0755, st_size=48480, ...}) = 0
geteuid() = 1000
getegid() = 1000
getuid() = 1000
getgid() = 1000
access("/usr/bin/env", X_OK) = 0
mmap(NULL, 36864, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_STACK, -1, 0) = 0x740f6e370000
rt_sigprocmask(SIG_BLOCK, ~[], [CHLD], 8) = 0
clone(child_stack=0x740f6e378ff0, flags=CLONE_VM|CLONE_VFORK|SIGCHLD) = 306024
munmap(0x740f6e370000, 36864) = 0
rt_sigprocmask(SIG_SETMASK, [CHLD], NULL, 8) = 0
close(4) = 0
read(3, "2\n", 200) = 2
read(3, "", 198) = 0
close(3) = 0
wait4(-1, [{WIFEXITED(s) && WEXITSTATUS(s) == 0}], 0, NULL) = 306024
fstat(1, {st_mode=S_IFCHR|0620, st_rdev=makedev(0x88, 0), ...}) = 0
write(1, "make -C \"/home/user/heads/build/"..., 74make -C "/home/user/heads/build/x86/coreboot-4.13" CPUS=2 "crossgcc-i386"
) = 74
rt_sigprocmask(SIG_BLOCK, [HUP INT QUIT TERM XCPU XFSZ], NULL, 8) = 0
stat("/usr/bin/env", {st_mode=S_IFREG|0755, st_size=48480, ...}) = 0
geteuid() = 1000
getegid() = 1000
getuid() = 1000
getgid() = 1000
access("/usr/bin/env", X_OK) = 0
mmap(NULL, 36864, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_STACK, -1, 0) = 0x740f6e370000
rt_sigprocmask(SIG_BLOCK, ~[], [HUP INT QUIT TERM CHLD XCPU XFSZ], 8) = 0
clone(child_stack=0x740f6e378ff0, flags=CLONE_VM|CLONE_VFORK|SIGCHLD) = 306025
munmap(0x740f6e370000, 36864) = 0
rt_sigprocmask(SIG_SETMASK, [HUP INT QUIT TERM CHLD XCPU XFSZ], NULL, 8) = 0
rt_sigprocmask(SIG_UNBLOCK, [HUP INT QUIT TERM XCPU XFSZ], NULL, 8) = 0
wait4(-1, make[1]: Entering directory '/home/user/heads/build/x86/coreboot-4.13'
Welcome to the coreboot cross toolchain builder v ()
Building toolchain using 2 thread(s).
Target architecture is i386-elf
Found compatible Ada compiler, enabling Ada support by default.
Downloading and verifying tarballs ...
* gmp-6.2.0.tar.xz (cached)... hash verified (052a5411dc74054240eec58132d2cf41211d0ff6)
* mpfr-4.1.0.tar.xz (cached)... hash verified (159c3a58705662bfde4dc93f2617f3660855ead6)
* mpc-1.2.0.tar.gz (cached)... hash verified (0abdc94acab0c9bfdaa391347cdfd7bbdb1cf017)
* binutils-2.35.tar.xz (cached)... hash verified (6bdd090ce268b6d6c3442516021c4e4b5019e303)
* gcc-8.3.0.tar.xz (cached)... hash verified (c27f4499dd263fe4fb01bcc5565917f3698583b2)
Downloaded tarballs ... ok
Unpacking and patching ...
* mpfr-4.1.0.tar.xz
* mpc-1.2.0.tar.gz
* binutils-2.35.tar.xz
^C0x7ffd0303e760, 0, NULL) = ? ERESTARTSYS (To be restarted if SA_RESTART is set)
strace: Process 305835 detached
So coreboot buildstack is built once per version and then reused on next board builds.
Saves precious CI and local builds when developing with qemu/kvm.
2023-03-07 20:38:44 +00:00
|
|
|
COREBOOT_TOOLCHAIN=$(build)/$(coreboot_base_dir)/.xcompile
|
2020-12-22 21:25:09 +00:00
|
|
|
$(COREBOOT_TOOLCHAIN): $(build)/$(coreboot_base_dir)/.canary
|
2021-07-18 17:34:20 +00:00
|
|
|
$(MAKE) -C "$(build)/$(coreboot_base_dir)" CPUS=$(CPUS) "crossgcc-$(COREBOOT_TARGET)"
|
2020-12-22 21:25:09 +00:00
|
|
|
|
2022-01-28 23:12:58 +00:00
|
|
|
$(build)/$(coreboot_dir)/.configured: $(COREBOOT_TOOLCHAIN)
|
2018-05-02 15:38:39 +00:00
|
|
|
|
|
|
|
# Force a rebuild if the inputs have changed
|
|
|
|
$(build)/$(coreboot_dir)/.build: \
|
2021-07-18 17:34:20 +00:00
|
|
|
$(build)/$(BOARD)/$(LINUX_IMAGE_FILE) \
|
2018-05-02 15:38:39 +00:00
|
|
|
$(build)/$(BOARD)/initrd.cpio.xz \
|
|
|
|
|
2018-05-02 18:53:54 +00:00
|
|
|
# This produces a ROM image that is written with the flashrom program
|
2020-10-21 15:04:27 +00:00
|
|
|
ifneq ($(CONFIG_COREBOOT),)
|
2021-07-20 20:48:08 +00:00
|
|
|
|
2020-10-21 15:04:27 +00:00
|
|
|
$(build)/$(BOARD)/$(CB_OUTPUT_FILE): $(build)/$(coreboot_dir)/.build
|
2021-07-20 20:48:08 +00:00
|
|
|
# Use coreboot.rom, because custom output files might not be processed by cbfstool
|
2018-05-02 18:53:54 +00:00
|
|
|
"$(build)/$(coreboot_dir)/cbfstool" "$(dir $<)coreboot.rom" print
|
2021-07-20 20:48:08 +00:00
|
|
|
$(call do-copy,$(dir $<)$(CONFIG_COREBOOT_ROM),$@)
|
|
|
|
@touch $@ # update the time stamp
|
|
|
|
|
|
|
|
ifneq ($(CONFIG_COREBOOT_BOOTBLOCK),)
|
|
|
|
$(build)/$(BOARD)/$(CB_BOOTBLOCK_FILE): $(build)/$(coreboot_dir)/.build
|
|
|
|
$(call do-copy,$(dir $<)$(CONFIG_COREBOOT_BOOTBLOCK),$@)
|
2018-05-02 18:53:54 +00:00
|
|
|
@touch $@ # update the time stamp
|
2020-10-21 15:04:27 +00:00
|
|
|
endif
|
2016-08-14 20:03:11 +00:00
|
|
|
|
2021-07-20 20:48:08 +00:00
|
|
|
endif
|
|
|
|
|
2018-02-13 18:20:04 +00:00
|
|
|
#
|
|
|
|
# Helpful target for reconfiguring the coreboot target
|
|
|
|
#
|
|
|
|
coreboot.menuconfig:
|
|
|
|
$(MAKE) \
|
2018-05-02 15:38:39 +00:00
|
|
|
-C "$(build)/$(coreboot_base_dir)" \
|
2018-08-13 14:26:08 +00:00
|
|
|
DOTCONFIG="$(build)/$(coreboot_dir)/.config" \
|
2018-02-13 18:20:04 +00:00
|
|
|
menuconfig
|
|
|
|
|
2018-08-13 14:26:08 +00:00
|
|
|
# The config file in the repo is stored as a "defconfig" format
|
|
|
|
# which only includes the options that have changed from the defaults.
|
|
|
|
coreboot.saveconfig:
|
|
|
|
$(MAKE) \
|
|
|
|
-C "$(build)/$(coreboot_base_dir)" \
|
|
|
|
DOTCONFIG="$(build)/$(coreboot_dir)/.config" \
|
|
|
|
DEFCONFIG="$(pwd)/$(CONFIG_COREBOOT_CONFIG)" \
|
|
|
|
savedefconfig
|
|
|
|
|
2023-04-19 14:04:53 +00:00
|
|
|
coreboot.save_defconfig_in_place:
|
|
|
|
$(MAKE) \
|
|
|
|
-C "$(build)/$(coreboot_base_dir)" \
|
|
|
|
DOTCONFIG="$(pwd)/$(CONFIG_COREBOOT_CONFIG)" \
|
|
|
|
DEFCONFIG="$(build)/$(coreboot_dir)/defconfig" \
|
|
|
|
savedefconfig \
|
|
|
|
&& mv "$(build)/$(coreboot_dir)/defconfig" "$(pwd)/$(CONFIG_COREBOOT_CONFIG)"
|
|
|
|
|
|
|
|
|
|
|
|
coreboot.modify_and_save_defconfig_in_place:
|
|
|
|
$(MAKE) \
|
|
|
|
-C "$(build)/$(coreboot_base_dir)" \
|
|
|
|
DOTCONFIG="$(pwd)/$(CONFIG_COREBOOT_CONFIG)" \
|
|
|
|
menuconfig \
|
|
|
|
&& $(MAKE) \
|
|
|
|
-C "$(build)/$(coreboot_base_dir)" \
|
|
|
|
DOTCONFIG="$(pwd)/$(CONFIG_COREBOOT_CONFIG)" \
|
|
|
|
DEFCONFIG="$(pwd)/$(CONFIG_COREBOOT_CONFIG)" \
|
|
|
|
savedefconfig \
|
|
|
|
|
|
|
|
coreboot.modify_and_save_oldconfig_in_place:
|
|
|
|
$(MAKE) menuconfig \
|
|
|
|
-C "$(build)/$(coreboot_base_dir)" \
|
|
|
|
obj="$(build)/$(coreboot_dir)" \
|
|
|
|
DOTCONFIG="$(pwd)/$(CONFIG_COREBOOT_CONFIG)"
|
2017-02-01 16:50:52 +00:00
|
|
|
|
|
|
|
# if we are not building from a git checkout,
|
|
|
|
# we must also download the coreboot-blobs tree
|
2018-02-05 16:56:15 +00:00
|
|
|
ifneq "$(coreboot_version)" "git"
|
|
|
|
|
2017-02-01 16:50:52 +00:00
|
|
|
coreboot_depends += coreboot-blobs
|
2017-03-31 15:18:46 +00:00
|
|
|
modules-y += coreboot-blobs
|
2017-02-01 16:50:52 +00:00
|
|
|
|
|
|
|
coreboot-blobs_version := $(coreboot_version)
|
|
|
|
coreboot-blobs_tar := coreboot-blobs-$(coreboot-blobs_version).tar.xz
|
2020-05-13 20:51:12 +00:00
|
|
|
coreboot-blobs_url := https://www.coreboot.org/releases/$(coreboot-blobs_tar)
|
|
|
|
|
|
|
|
ifeq "$(CONFIG_COREBOOT_VERSION)" "4.8.1"
|
2020-08-20 19:15:46 +00:00
|
|
|
coreboot-blobs_tar_opt := --strip 3
|
|
|
|
coreboot-blobs_dir := coreboot-$(coreboot-blobs_version)/3rdparty/blobs
|
2020-05-13 20:51:12 +00:00
|
|
|
else
|
2020-08-20 19:15:46 +00:00
|
|
|
coreboot-blobs_tar_opt := --strip 2
|
|
|
|
coreboot-blobs_dir := coreboot-$(coreboot-blobs_version)/3rdparty
|
2020-05-13 20:51:12 +00:00
|
|
|
endif
|
2017-02-01 16:50:52 +00:00
|
|
|
|
2016-08-14 20:03:11 +00:00
|
|
|
## there is nothing to build for the blobs, this should be
|
|
|
|
## made easier to make happen
|
2017-02-01 16:50:52 +00:00
|
|
|
coreboot-blobs_output := .built
|
|
|
|
coreboot-blobs_configure := echo -e 'all:\n\ttouch .built' > Makefile
|
2016-08-14 20:03:11 +00:00
|
|
|
|
2017-02-01 16:50:52 +00:00
|
|
|
endif
|
2020-11-25 13:43:07 +00:00
|
|
|
endif
|