base-nova: migrate to new ports mechanism

Issue #1082
This commit is contained in:
Norman Feske 2014-05-18 19:33:29 +02:00
parent 35cf48cdc8
commit 7d4f8fa746
5 changed files with 15 additions and 34 deletions

2
.gitignore vendored
View File

@ -9,8 +9,6 @@
/repos/base-fiasco/contrib /repos/base-fiasco/contrib
/repos/base-fiasco/download /repos/base-fiasco/download
/repos/base-foc/contrib /repos/base-foc/contrib
/repos/base-nova/contrib
/repos/base-nova/download
/repos/base-pistachio/contrib /repos/base-pistachio/contrib
/repos/dde_ipxe/contrib /repos/dde_ipxe/contrib
/repos/dde_linux/contrib /repos/dde_linux/contrib

View File

@ -5,28 +5,16 @@
# \date 2012-06-04 # \date 2012-06-04
# #
VERBOSE ?= @ VERBOSE ?= @
ECHO = @echo ECHO := @echo
GIT_URL = https://github.com/alex-ab/NOVA.git
GIT_REV = HEAD
GIT_BRANCH = r5
CONTRIB_DIR = contrib
PATCHES = $(shell find patches -name '*.patch')
#
# Utility to check if a tool is installed
#
check_tool = $(if $(shell which $(1)),,$(error Need to have '$(1)' installed.))
$(call check_tool,git)
$(call check_tool,patch)
# #
# Print help information by default # Print help information by default
# #
help:: help::
prepare: $(CONTRIB_DIR) prepare:
$(VERBOSE)../../tool/ports/prepare_port nova
help:: help::
$(ECHO) $(ECHO)
@ -37,18 +25,3 @@ help::
$(ECHO) "clean - remove upstream source codes" $(ECHO) "clean - remove upstream source codes"
$(ECHO) $(ECHO)
$(CONTRIB_DIR)/.git:
$(VERBOSE)git clone $(GIT_URL) $(CONTRIB_DIR)
.PHONY: $(CONTRIB_DIR)
$(CONTRIB_DIR): $(CONTRIB_DIR)/.git
$(VERBOSE)cd $(CONTRIB_DIR); git pull
$(VERBOSE)cd $(CONTRIB_DIR); git reset --hard $(GIT_REV); git checkout $(GIT_BRANCH)
$(ECHO) "applying patches to '$(CONTRIB_DIR)/'"
$(VERBOSE)for i in $(PATCHES); do patch -d $@ -p1 < $$i; done
.PHONY: $(CONTRIB_DIR)
clean::
$(VERBOSE)rm -rf $(CONTRIB_DIR)

View File

@ -0,0 +1 @@
dummy

View File

@ -0,0 +1,9 @@
LICENSE := GPLv2
VERSION := git
DOWNLOADS := nova.git
URL(nova) := https://github.com/alex-ab/NOVA.git
REV(nova) := r5
DIR(nova) := src/kernel/nova
PATCHES := $(wildcard $(REP_DIR)/patches/*.patch)

View File

@ -1,6 +1,6 @@
TARGET = hypervisor TARGET = hypervisor
REQUIRES = x86 nova REQUIRES = x86 nova
NOVA_SRC_DIR = $(REP_DIR)/contrib NOVA_SRC_DIR = $(call select_from_ports,nova)/src/kernel/nova
NOVA_BUILD_DIR = $(BUILD_BASE_DIR)/kernel NOVA_BUILD_DIR = $(BUILD_BASE_DIR)/kernel
STARTUP_LIB = STARTUP_LIB =
SRC_CC = $(sort $(notdir $(wildcard $(NOVA_SRC_DIR)/src/*.cpp))) SRC_CC = $(sort $(notdir $(wildcard $(NOVA_SRC_DIR)/src/*.cpp)))