forked from keystone-enclave/keystone
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from keystone-enclave/dev-cva6-support
CI support for CVA6
- Loading branch information
Showing
13 changed files
with
34 additions
and
325 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,23 @@ | ||
# We include the default objects.mk | ||
ifeq ($(PLATFORM),) | ||
$(error PLATFORM not defined for SM) | ||
endif | ||
|
||
include $(src_dir)/platform/$(PLATFORM)/objects.mk | ||
|
||
# And then also define custom keystone SM functionality | ||
ifeq ($(PLATFORM),) | ||
$(error PLATFORM not defined for SM) | ||
endif | ||
|
||
platform-genflags-y += "-DTARGET_PLATFORM_HEADER=\"platform/$(PLATFORM)/platform.h\"" | ||
|
||
include $(KEYSTONE_SM)/src/objects.mk | ||
platform-objs-y += $(addprefix ../../src/,$(subst .c,.o,$(keystone-sm-sources))) | ||
|
||
ifeq ($(KEYSTONE_PLATFORM),generic) | ||
|
||
carray-platform_override_modules-y += generic | ||
platform-objs-y += generic.o | ||
|
||
else ifeq ($(KEYSTONE_PLATFORM),hifive_unmatched) | ||
|
||
include $(KEYSTONE_SM)/plat/hifive/unmatched/objects.mk | ||
|
||
endif |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,4 @@ | ||
# We include the default objects.mk | ||
|
||
include $(src_dir)/platform/$(PLATFORM)/objects.mk | ||
|
||
# And then also define custom keystone SM functionality | ||
ifeq ($(PLATFORM),) | ||
$(error PLATFORM not defined for SM) | ||
endif | ||
|
||
platform-genflags-y += "-DTARGET_PLATFORM_HEADER=\"platform/$(PLATFORM)/platform.h\"" | ||
|
||
include $(KEYSTONE_SM)/src/objects.mk | ||
platform-objs-y += $(addprefix ../../src/,$(subst .c,.o,$(keystone-sm-sources))) | ||
|
||
carray-platform_override_modules-y += generic | ||
platform-objs-y += generic.o | ||
|
||
carray-platform_override_modules-y += hifive_unmatched | ||
platform-objs-y += ../hifive/unmatched/unmatched.o | ||
platform-cflags-y += -I$(src_dir)/platform/generic/sifive |
Oops, something went wrong.