mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 22:23:16 +00:00
66c0c7b6f1
Issue #2451
22 lines
830 B
Plaintext
22 lines
830 B
Plaintext
LICENSE := GPLv2
|
|
VERSION := git
|
|
DOWNLOADS := sel4.git
|
|
|
|
URL(sel4) := https://github.com/seL4/seL4.git
|
|
# master branch, version 5.2
|
|
REV(sel4) := 3695232f9603af60d56f97072082d90f30e98b0e
|
|
DIR(sel4) := src/kernel/sel4
|
|
|
|
$(call check_tool,python)
|
|
|
|
PATCHES := $(wildcard $(REP_DIR)/patches/*.patch)
|
|
|
|
# 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
|