[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Minios-devel] [UNIKRAFT PATCH 2/2] build: Prefix UK_PLAT_ to platform's BASE variables
In order to be inline with the naming of UK_PLAT_BASE and UK_PLAT_COMMON_BASE, populate platform's base variale with the same naming scheme (e.g., UK_PLAT_XEN_BASE instead of XEN_BASE) Signed-off-by: Simon Kuenzer <simon.kuenzer@xxxxxxxxx> --- plat/Linker.uk | 6 +++--- support/build/Makefile.rules | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/plat/Linker.uk b/plat/Linker.uk index 689c0dd..3e33bcc 100644 --- a/plat/Linker.uk +++ b/plat/Linker.uk @@ -1,3 +1,3 @@ -include $(XEN_BASE)/Linker.uk -include $(KVM_BASE)/Linker.uk -include $(LINUXU_BASE)/Linker.uk +include $(UK_PLAT_XEN_BASE)/Linker.uk +include $(UK_PLAT_KVM_BASE)/Linker.uk +include $(UK_PLAT_LINUXU_BASE)/Linker.uk diff --git a/support/build/Makefile.rules b/support/build/Makefile.rules index 76865c8..e4ac264 100644 --- a/support/build/Makefile.rules +++ b/support/build/Makefile.rules @@ -105,7 +105,7 @@ endef # Register a platform to the build system define addplat = UK_PLATS += $(1) -$(eval $(call uc,$(1))_BASE := $(_IMPORT_BASE)) +$(eval UK_PLAT_$(call uc,$(1))_BASE := $(_IMPORT_BASE)) endef # addplat_s $platname,$switch -- 2.7.4 _______________________________________________ Minios-devel mailing list Minios-devel@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/mailman/listinfo/minios-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |