forked from ayufan-rock64/linux-build
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
28 lines (20 loc) · 633 Bytes
/
Makefile
File metadata and controls
28 lines (20 loc) · 633 Bytes
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
include Makefile.versions.mk
export RELEASE_NAME ?= $(VERSION)~dev
export RELEASE ?= 1
BUILD_SYSTEMS := bionic disco stretch buster
BUILD_VARIANTS := minimal mate lxde i3 openmediavault containers
BUILD_ARCHS := armhf arm64
BUILD_MODELS := rock64 rockpro64 pinebookpro rockpi4b
BOARD_TARGET ?= rock64
ifeq (,$(filter $(BUILD_MODELS), $(BOARD_TARGET)))
$(error Unsupported BOARD_TARGET)
endif
IMAGE_SUFFIX := $(RELEASE_NAME)-$(RELEASE)
all: linux-variants linux-virtual
ifneq (,$(CI))
include Makefile.latest.mk
endif
include Makefile.package.mk
include Makefile.system.mk
include Makefile.variants.mk
include Makefile.dev.mk