We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 989acab commit c4dfd8eCopy full SHA for c4dfd8e
ports/broadcom/Makefile
@@ -1,12 +1,12 @@
1
# Select the board to build for.
2
-BOARD=raspberrypi_pi4
+BOARD?=raspberrypi_pi4b
3
4
ifeq ($(BOARD),)
5
- $(error You must provide a BOARD parameter)
+ $(error You must provide a BOARD parameter)
6
else
7
- ifeq ($(wildcard boards/$(BOARD)/.),)
8
- $(error Invalid BOARD specified)
9
- endif
+ ifeq ($(wildcard boards/$(BOARD)/.),)
+ $(error Invalid BOARD "$(BOARD)" specified)
+ endif
10
endif
11
12
# If the build directory is not given, make it reflect the board name.
0 commit comments