summaryrefslogtreecommitdiffstats
path: root/configs/platform-v7a/rules/barebox-rpi2.make
blob: 47ad43b49001205299d45549e798e61a560a1652 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
# -*-makefile-*-
#
# Copyright (C) 2016 by Alexander Aring <aar@pengutronix.de>
#
# See CREDITS for details about who has contributed to this project.
#
# For further information about the PTXdist project and license conditions
# see the README file.
#

#
# We provide this package
#
PACKAGES-$(PTXCONF_BAREBOX_RPI2) += barebox-rpi2

#
# Paths and names
#
BAREBOX_RPI2_VERSION	:= 2018.12.0
BAREBOX_RPI2_MD5	:= f84d7d3562055c80c3eedce0b14d4a0d
BAREBOX_RPI2		:= barebox-$(BAREBOX_RPI2_VERSION)
BAREBOX_RPI2_SUFFIX	:= tar.bz2
BAREBOX_RPI2_DIR	:= $(BUILDDIR)/barebox-rpi2-$(BAREBOX_RPI2_VERSION)
BAREBOX_RPI2_CONFIG	:= $(call ptx/in-platformconfigdir, barebox-rpi2.config)
BAREBOX_RPI2_LICENSE	:= GPL-2.0
BAREBOX_RPI2_URL	:= $(call barebox-url, BAREBOX_RPI2)
BAREBOX_RPI2_SOURCE	:= $(SRCDIR)/$(BAREBOX_RPI2).$(BAREBOX_RPI2_SUFFIX)

# ----------------------------------------------------------------------------
# Prepare
# ----------------------------------------------------------------------------

BAREBOX_RPI2_WRAPPER_BLACKLIST := \
	TARGET_HARDEN_RELRO \
	TARGET_HARDEN_BINDNOW \
	TARGET_HARDEN_PIE \
	TARGET_DEBUG \
	TARGET_BUILD_ID

BAREBOX_RPI2_CONF_ENV := KCONFIG_NOTIMESTAMP=1
BAREBOX_RPI2_CONF_OPT := $(call barebox-opts, BAREBOX_RPI2)

BAREBOX_RPI2_MAKE_ENV := $(BAREBOX_RPI2_CONF_ENV)
BAREBOX_RPI2_MAKE_OPT := $(BAREBOX_RPI2_CONF_OPT)

BAREBOX_RPI2_IMAGES := images/barebox-raspberry-pi-2.img images/barebox-raspberry-pi-3.img
BAREBOX_RPI2_IMAGES := $(addprefix $(BAREBOX_RPI2_DIR)/,$(BAREBOX_RPI2_IMAGES))

ifdef PTXCONF_BAREBOX_RPI2
$(BAREBOX_RPI2_CONFIG):
	@echo
	@echo "****************************************************************************"
	@echo " Please generate a bareboxconfig with 'ptxdist menuconfig barebox-rpi2'"
	@echo "****************************************************************************"
	@echo
	@echo
	@exit 1
endif

$(STATEDIR)/barebox-rpi2.prepare: $(BAREBOX_RPI2_CONFIG)
	@$(call targetinfo)
	@rm -f "$(BAREBOX_RPI2_DIR)/.ptxdist-defaultenv"
	@ln -s "$(call ptx/in-platformconfigdir, barebox-rpi2-defaultenv)" \
		"$(BAREBOX_RPI2_DIR)/.ptxdist-defaultenv"
	@$(call world/prepare, BAREBOX_RPI2)
	@$(call touch)

# ----------------------------------------------------------------------------
# Install
# ----------------------------------------------------------------------------

$(STATEDIR)/barebox-rpi2.install:
	@$(call targetinfo)
	@$(call touch)

# ----------------------------------------------------------------------------
# Targetinstall
# ----------------------------------------------------------------------------

$(STATEDIR)/barebox-rpi2.targetinstall:
	@$(call targetinfo)
	@$(foreach image, $(BAREBOX_RPI2_IMAGES), \
		install -m 644 \
			$(image) $(IMAGEDIR)/$(notdir $(image))-rpi2;)
	@$(call touch)

# ----------------------------------------------------------------------------
# Clean
# ----------------------------------------------------------------------------

$(STATEDIR)/barebox-rpi2.clean:
	@$(call targetinfo)
	@$(call clean_pkg, BAREBOX_RPI2)
	@$(foreach image, $(BAREBOX_RPI2_IMAGES), \
		rm -fv $(IMAGEDIR)/$(notdir $(image));)

# ----------------------------------------------------------------------------
# oldconfig / menuconfig
# ----------------------------------------------------------------------------

barebox-rpi2_oldconfig barebox-rpi2_menuconfig barebox-rpi2_nconfig: $(STATEDIR)/barebox-rpi2.extract
	@$(call world/kconfig, BAREBOX_RPI2, $(subst barebox-rpi2_,,$@))

# vim: syntax=make