2020-11-15 19:18:41 +01:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
|
|
|
|
#
|
|
|
|
# This file is meant to be included by in-tree payloads
|
|
|
|
# to provide default targets for incremental builds.
|
|
|
|
#
|
|
|
|
# Variables with file names and directory overrides have
|
|
|
|
# to be defined in advance for proper dependency tracking.
|
|
|
|
# Then, include this file. e.g
|
|
|
|
#
|
|
|
|
# obj := output
|
|
|
|
# OBJS := $(obj)/payload.o
|
|
|
|
# TARGET := $(obj)/payload.elf
|
|
|
|
# include ../path/to/libpayload/Makefile.payload
|
|
|
|
#
|
|
|
|
|
|
|
|
# Find relative path to libpayload (where this Makefile resides).
|
|
|
|
LIBPAYLOAD_SRC := $(dir $(lastword $(MAKEFILE_LIST)))
|
|
|
|
LIBPAYLOAD_SRC := $(patsubst %/,%,$(LIBPAYLOAD_SRC))
|
|
|
|
|
|
|
|
# Build dir and config for libpayload. Need absolute
|
|
|
|
# paths to pass to libpayload's sub-make.
|
|
|
|
LIBPAYLOAD_OBJ ?= $(CURDIR)/libpayload
|
|
|
|
LIBPAYLOAD := $(LIBPAYLOAD_OBJ)/libpayload.a
|
|
|
|
LIBPAYLOAD_CONFIG_H := $(LIBPAYLOAD_OBJ)/libpayload-config.h
|
|
|
|
LIBPAYLOAD_DOTCONFIG ?= $(CURDIR)/.lp.config
|
|
|
|
LIBPAYLOAD_DEFCONFIG ?= $(CURDIR)/$(LIBPAYLOAD_SRC)/configs/defconfig
|
|
|
|
|
|
|
|
# Some default dependencies for all targets:
|
|
|
|
DEFAULT_DEPS := Makefile $(lastword $(MAKEFILE_LIST))
|
|
|
|
DEFAULT_DEPS += $(PAYLOAD_DEPS)
|
|
|
|
|
|
|
|
obj ?= build
|
|
|
|
|
|
|
|
ARCH ?=
|
|
|
|
OBJS ?=
|
|
|
|
CCACHE ?=
|
|
|
|
|
|
|
|
CFLAGS = $(GCC_CFLAGS_$(ARCH))
|
|
|
|
CFLAGS += -Os -ffreestanding
|
|
|
|
CFLAGS += -Wall -Wextra -Wmissing-prototypes -Wvla -Werror
|
|
|
|
|
|
|
|
STRIP ?= debug
|
|
|
|
|
|
|
|
$(TARGET):
|
|
|
|
|
|
|
|
# Make is silent per default, but `make V=1` will show all calls.
|
|
|
|
Q:=@
|
|
|
|
ifneq ($(V),1)
|
|
|
|
ifneq ($(Q),)
|
|
|
|
.SILENT:
|
|
|
|
MAKEFLAGS += -s
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
export V
|
|
|
|
|
|
|
|
ifeq ($(filter %clean,$(MAKECMDGOALS)),)
|
|
|
|
|
|
|
|
xcompile := $(obj)/xcompile
|
|
|
|
xcompile_script := $(LIBPAYLOAD_SRC)/../../util/xcompile/xcompile
|
|
|
|
|
|
|
|
# In addition to the dependency below, create the file if it doesn't exist
|
|
|
|
# to silence warnings about a file that would be generated anyway.
|
|
|
|
$(if $(wildcard $(xcompile)),,$(shell \
|
|
|
|
mkdir -p $(dir $(xcompile)) && \
|
|
|
|
$(xcompile_script) $(XGCCPATH) > $(xcompile) || rm -f $(xcompile)))
|
|
|
|
|
|
|
|
$(xcompile): $(xcompile_script)
|
|
|
|
$< $(XGCCPATH) > $@
|
|
|
|
|
|
|
|
include $(xcompile)
|
|
|
|
|
|
|
|
ifneq ($(XCOMPILE_COMPLETE),1)
|
|
|
|
$(shell rm -f $(XCOMPILE_COMPLETE))
|
|
|
|
$(error $(xcompile) deleted because it's invalid. \
|
|
|
|
Restarting the build should fix that, or explain the problem.)
|
|
|
|
endif
|
|
|
|
|
|
|
|
# `lpgcc` in in-tree mode:
|
|
|
|
LPGCC = CC="$(CCACHE) $(GCC_CC_$(ARCH))"
|
|
|
|
LPGCC += _OBJ="$(LIBPAYLOAD_OBJ)"
|
|
|
|
LPGCC += $(LIBPAYLOAD_SRC)/bin/lpgcc
|
|
|
|
|
|
|
|
LPAS = AS="$(AS_$(ARCH))"
|
|
|
|
LPAS += $(LIBPAYLOAD_SRC)/bin/lpas
|
|
|
|
|
|
|
|
OBJCOPY = $(OBJCOPY_$(ARCH))
|
|
|
|
|
|
|
|
$(obj)/%.bin: $(OBJS) $(LIBPAYLOAD) $(DEFAULT_DEPS)
|
|
|
|
@printf " LPGCC $(subst $(obj)/,,$@)\n"
|
|
|
|
$(LPGCC) $(CFLAGS) -o $@ $(OBJS)
|
|
|
|
|
|
|
|
$(obj)/%.map: $(obj)/%.bin
|
|
|
|
@printf " SYMS $(subst $(obj)/,,$@)\n"
|
|
|
|
$(NM_$(ARCH)) -n $< > $@
|
|
|
|
|
|
|
|
$(obj)/%.debug: $(obj)/%.bin
|
|
|
|
@printf " DEBUG $(subst $(obj)/,,$@)\n"
|
|
|
|
$(OBJCOPY) --only-keep-debug $< $@
|
|
|
|
|
|
|
|
.PRECIOUS: $(obj)/%.debug
|
|
|
|
|
|
|
|
$(obj)/%.elf: $(obj)/%.bin $(obj)/%.debug
|
|
|
|
@printf " STRIP $(subst $(obj)/,,$@)\n"
|
|
|
|
$(OBJCOPY) --strip-$(STRIP) $< $@
|
|
|
|
$(OBJCOPY) --add-gnu-debuglink=$(obj)/$*.debug $@
|
|
|
|
|
|
|
|
$(obj)/%.o: %.c $(LIBPAYLOAD_CONFIG_H) $(DEFAULT_DEPS)
|
|
|
|
@printf " LPGCC $(subst $(obj)/,,$@)\n"
|
|
|
|
$(LPGCC) -MMD $(CFLAGS) -c $< -o $@
|
|
|
|
|
|
|
|
$(obj)/%.S.o: %.S $(LIBPAYLOAD_CONFIG_H) $(DEFAULT_DEPS)
|
|
|
|
@printf " LPAS $(subst $(obj)/,,$@)\n"
|
|
|
|
$(LPAS) $< -o $@
|
|
|
|
|
|
|
|
-include $(OBJS:.o=.d)
|
|
|
|
|
|
|
|
.PRECIOUS: $(OBJS)
|
|
|
|
|
|
|
|
LIBPAYLOAD_OPTS := obj="$(LIBPAYLOAD_OBJ)"
|
|
|
|
LIBPAYLOAD_OPTS += DOTCONFIG="$(LIBPAYLOAD_DOTCONFIG)"
|
2019-11-22 16:55:58 +01:00
|
|
|
LIBPAYLOAD_OPTS += CONFIG_=CONFIG_LP_
|
2020-11-15 19:18:41 +01:00
|
|
|
LIBPAYLOAD_OPTS += $(if $(CCACHE),CONFIG_LP_CCACHE=y)
|
|
|
|
|
libpayload/Makefile.payload: Revise config strategy
Payloads often just use one of the defconfigs for libpayload. When
the `Makefile.payload` was introduced, it also added dependencies
to pass a `make oldconfig` or `make defconfig` for the payload on
to libpayload. Turned out, this creates some dependency madness
when, for instance, `make oldconfig` gets called without a libpay-
load `.config` available, or when we try to include the `.config`
in the `Makefile`.
To make things worse, Kconfig's `Makefile` that is imported from
Linux contains some rarely used paths that are generally incompa-
tible to our environment. So let's get rid of the hard-to-control
automatism.
Payloads that don't want to use a libpayload defconfig need to
clear the `$(LIBPAYLOAD_DEFCONFIG)` variable and manually run
the respective config target to generate a `.config`. To fully
support this, the rule to create a `.config` via `defconfig` is
guarded by `$(LIBPAYLOAD_DEFCONFIG)`. Otherwise we'd have a
spurious, broken recipe when the variable is unset.
We keep the option to call libpayload targets with an `lp-` prefix
for convenience. The existing, explicit targets `lp-defconfig` and
`lp-oldconfig` are replaced with a pattern match, so all config
and other targets should work.
Change-Id: Ie3fcce58d98e248c7182cd47f2a797fe066dd18a
Signed-off-by: Nico Huber <nico.h@gmx.de>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/62273
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Thomas Heijligen <src@posteo.de>
2022-02-22 18:58:48 +01:00
|
|
|
ifneq ($(LIBPAYLOAD_DEFCONFIG),)
|
|
|
|
$(LIBPAYLOAD_DOTCONFIG): $(LIBPAYLOAD_DEFCONFIG)
|
2020-11-15 19:18:41 +01:00
|
|
|
$(MAKE) -C $(LIBPAYLOAD_SRC) $(LIBPAYLOAD_OPTS) \
|
|
|
|
KBUILD_DEFCONFIG=$(LIBPAYLOAD_DEFCONFIG) defconfig
|
libpayload/Makefile.payload: Revise config strategy
Payloads often just use one of the defconfigs for libpayload. When
the `Makefile.payload` was introduced, it also added dependencies
to pass a `make oldconfig` or `make defconfig` for the payload on
to libpayload. Turned out, this creates some dependency madness
when, for instance, `make oldconfig` gets called without a libpay-
load `.config` available, or when we try to include the `.config`
in the `Makefile`.
To make things worse, Kconfig's `Makefile` that is imported from
Linux contains some rarely used paths that are generally incompa-
tible to our environment. So let's get rid of the hard-to-control
automatism.
Payloads that don't want to use a libpayload defconfig need to
clear the `$(LIBPAYLOAD_DEFCONFIG)` variable and manually run
the respective config target to generate a `.config`. To fully
support this, the rule to create a `.config` via `defconfig` is
guarded by `$(LIBPAYLOAD_DEFCONFIG)`. Otherwise we'd have a
spurious, broken recipe when the variable is unset.
We keep the option to call libpayload targets with an `lp-` prefix
for convenience. The existing, explicit targets `lp-defconfig` and
`lp-oldconfig` are replaced with a pattern match, so all config
and other targets should work.
Change-Id: Ie3fcce58d98e248c7182cd47f2a797fe066dd18a
Signed-off-by: Nico Huber <nico.h@gmx.de>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/62273
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Thomas Heijligen <src@posteo.de>
2022-02-22 18:58:48 +01:00
|
|
|
endif
|
2020-11-15 19:18:41 +01:00
|
|
|
|
|
|
|
$(LIBPAYLOAD_CONFIG_H): $(LIBPAYLOAD_DOTCONFIG)
|
|
|
|
$(MAKE) -C $(LIBPAYLOAD_SRC) $(LIBPAYLOAD_OPTS) $(LIBPAYLOAD_CONFIG_H)
|
|
|
|
|
libpayload/Makefile.payload: Revise config strategy
Payloads often just use one of the defconfigs for libpayload. When
the `Makefile.payload` was introduced, it also added dependencies
to pass a `make oldconfig` or `make defconfig` for the payload on
to libpayload. Turned out, this creates some dependency madness
when, for instance, `make oldconfig` gets called without a libpay-
load `.config` available, or when we try to include the `.config`
in the `Makefile`.
To make things worse, Kconfig's `Makefile` that is imported from
Linux contains some rarely used paths that are generally incompa-
tible to our environment. So let's get rid of the hard-to-control
automatism.
Payloads that don't want to use a libpayload defconfig need to
clear the `$(LIBPAYLOAD_DEFCONFIG)` variable and manually run
the respective config target to generate a `.config`. To fully
support this, the rule to create a `.config` via `defconfig` is
guarded by `$(LIBPAYLOAD_DEFCONFIG)`. Otherwise we'd have a
spurious, broken recipe when the variable is unset.
We keep the option to call libpayload targets with an `lp-` prefix
for convenience. The existing, explicit targets `lp-defconfig` and
`lp-oldconfig` are replaced with a pattern match, so all config
and other targets should work.
Change-Id: Ie3fcce58d98e248c7182cd47f2a797fe066dd18a
Signed-off-by: Nico Huber <nico.h@gmx.de>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/62273
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Thomas Heijligen <src@posteo.de>
2022-02-22 18:58:48 +01:00
|
|
|
force-relay:
|
|
|
|
|
|
|
|
lp-%: force-relay
|
|
|
|
$(MAKE) -C $(LIBPAYLOAD_SRC) $(LIBPAYLOAD_OPTS) $*
|
2020-11-15 19:18:41 +01:00
|
|
|
|
libpayload/Makefile.payload: Revise config strategy
Payloads often just use one of the defconfigs for libpayload. When
the `Makefile.payload` was introduced, it also added dependencies
to pass a `make oldconfig` or `make defconfig` for the payload on
to libpayload. Turned out, this creates some dependency madness
when, for instance, `make oldconfig` gets called without a libpay-
load `.config` available, or when we try to include the `.config`
in the `Makefile`.
To make things worse, Kconfig's `Makefile` that is imported from
Linux contains some rarely used paths that are generally incompa-
tible to our environment. So let's get rid of the hard-to-control
automatism.
Payloads that don't want to use a libpayload defconfig need to
clear the `$(LIBPAYLOAD_DEFCONFIG)` variable and manually run
the respective config target to generate a `.config`. To fully
support this, the rule to create a `.config` via `defconfig` is
guarded by `$(LIBPAYLOAD_DEFCONFIG)`. Otherwise we'd have a
spurious, broken recipe when the variable is unset.
We keep the option to call libpayload targets with an `lp-` prefix
for convenience. The existing, explicit targets `lp-defconfig` and
`lp-oldconfig` are replaced with a pattern match, so all config
and other targets should work.
Change-Id: Ie3fcce58d98e248c7182cd47f2a797fe066dd18a
Signed-off-by: Nico Huber <nico.h@gmx.de>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/62273
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Thomas Heijligen <src@posteo.de>
2022-02-22 18:58:48 +01:00
|
|
|
$(LIBPAYLOAD): force-relay | $(LIBPAYLOAD_CONFIG_H)
|
2020-11-15 19:18:41 +01:00
|
|
|
$(MAKE) -C $(LIBPAYLOAD_SRC) $(LIBPAYLOAD_OPTS)
|
|
|
|
|
|
|
|
$(shell mkdir -p $(sort $(dir $(OBJS))))
|
|
|
|
|
libpayload/Makefile.payload: Revise config strategy
Payloads often just use one of the defconfigs for libpayload. When
the `Makefile.payload` was introduced, it also added dependencies
to pass a `make oldconfig` or `make defconfig` for the payload on
to libpayload. Turned out, this creates some dependency madness
when, for instance, `make oldconfig` gets called without a libpay-
load `.config` available, or when we try to include the `.config`
in the `Makefile`.
To make things worse, Kconfig's `Makefile` that is imported from
Linux contains some rarely used paths that are generally incompa-
tible to our environment. So let's get rid of the hard-to-control
automatism.
Payloads that don't want to use a libpayload defconfig need to
clear the `$(LIBPAYLOAD_DEFCONFIG)` variable and manually run
the respective config target to generate a `.config`. To fully
support this, the rule to create a `.config` via `defconfig` is
guarded by `$(LIBPAYLOAD_DEFCONFIG)`. Otherwise we'd have a
spurious, broken recipe when the variable is unset.
We keep the option to call libpayload targets with an `lp-` prefix
for convenience. The existing, explicit targets `lp-defconfig` and
`lp-oldconfig` are replaced with a pattern match, so all config
and other targets should work.
Change-Id: Ie3fcce58d98e248c7182cd47f2a797fe066dd18a
Signed-off-by: Nico Huber <nico.h@gmx.de>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/62273
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Thomas Heijligen <src@posteo.de>
2022-02-22 18:58:48 +01:00
|
|
|
.PHONY: force-relay
|
2020-11-15 19:18:41 +01:00
|
|
|
|
|
|
|
else # %clean,$(MAKECMDGOALS)
|
|
|
|
|
|
|
|
default-payload-clean:
|
|
|
|
rm -rf $(obj) $(LIBPAYLOAD_OBJ)
|
|
|
|
clean: default-payload-clean
|
|
|
|
|
|
|
|
default-payload-distclean: clean
|
|
|
|
rm -f $(LIBPAYLOAD_DOTCONFIG) $(LIBPAYLOAD_DOTCONFIG).old
|
|
|
|
distclean: default-payload-distclean
|
|
|
|
|
|
|
|
.PHONY: default-payload-clean clean default-payload-distclean distclean
|
|
|
|
|
|
|
|
endif
|