2014-10-14 13:18:31 +00:00
|
|
|
LICENSE := GPLv2
|
|
|
|
VERSION := git
|
|
|
|
DOWNLOADS := sel4.git
|
|
|
|
|
|
|
|
URL(sel4) := https://github.com/seL4/seL4.git
|
2017-08-01 12:02:35 +00:00
|
|
|
# master branch, version 6.0
|
|
|
|
REV(sel4) := 8564ace4dfb622ec69e0f7d762ebfbc8552ec918
|
2014-10-14 13:18:31 +00:00
|
|
|
DIR(sel4) := src/kernel/sel4
|
2016-06-17 13:15:48 +00:00
|
|
|
|
2017-06-12 10:41:38 +00:00
|
|
|
$(call check_tool,python)
|
2017-08-17 13:05:58 +00:00
|
|
|
$(call check_python_module,future)
|
|
|
|
$(call check_python_module,tempita)
|
|
|
|
$(call check_python_module,ply)
|
2017-06-12 10:41:38 +00:00
|
|
|
|
2017-08-29 19:56:29 +00:00
|
|
|
PATCHES := $(sort $(wildcard $(REP_DIR)/patches/*.patch))
|
2017-06-22 16:47:02 +00:00
|
|
|
|
|
|
|
# adjust kernel config usable on qemu and on native hw, and add a 32bit version
|
|
|
|
default: $(DOWNLOADS)
|
|
|
|
$(VERBOSE)mkdir -p src/kernel/sel4/configs/pc99/x86_64
|
|
|
|
$(VERBOSE)mkdir -p src/kernel/sel4/configs/pc99/ia32
|
|
|
|
$(VERBOSE)cp src/kernel/sel4/configs/pc99/autoconf.h src/kernel/sel4/configs/pc99/x86_64/autoconf.h
|
|
|
|
$(VERBOSE)mv src/kernel/sel4/configs/pc99/autoconf.h src/kernel/sel4/configs/pc99/ia32/autoconf.h
|
|
|
|
$(VERBOSE)patch -p0 <$(REP_DIR)/patches/autoconf_32.config
|
|
|
|
$(VERBOSE)patch -p0 <$(REP_DIR)/patches/autoconf_64.config
|
2017-07-04 12:17:38 +00:00
|
|
|
$(VERBOSE)mkdir -p src/kernel/sel4/configs/imx6/wand_quad
|
|
|
|
$(VERBOSE)mv src/kernel/sel4/configs/imx6/autoconf.h src/kernel/sel4/configs/imx6/wand_quad/autoconf.h
|
|
|
|
$(VERBOSE)patch -p0 <$(REP_DIR)/patches/wand_quad.config
|