[Zrouter-src] ZRouter.org: push to ZRouter vendor/vendor.mk
zrouter-src at zrouter.org
zrouter-src at zrouter.org
Thu Sep 20 09:14:56 UTC 2012
details: http://zrouter.org/hg/zrouter//rev/fe0165f0cbe8
changeset: 436:fe0165f0cbe8
user: Aleksandr Rybalko <ray at ddteam.net>
date: Thu Sep 20 12:16:31 2012 +0300
description:
Rename to vendor.mk, since it is not standalone Makfile.
diffstat:
vendor/vendor.mk | 39 +++++++++++++++++++++++++++++++++++++++
1 files changed, 39 insertions(+), 0 deletions(-)
diffs (44 lines):
diff -r 779a60491198 -r fe0165f0cbe8 vendor/vendor.mk
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/vendor/vendor.mk Thu Sep 20 12:16:31 2012 +0300
@@ -0,0 +1,39 @@
+TARGET_DEVICE?="NONE"
+TARGET_VENDOR?="NONE"
+
+.if !empty(TARGET_PAIR)
+TARGET_VENDOR=${TARGET_PAIR:C/\/.*//}
+TARGET_DEVICE=${TARGET_PAIR:C/.*\///}
+.endif
+
+#### Per vendor
+.if exists(${ZROUTER_ROOT}/vendor/${TARGET_VENDOR}/)
+
+.if exists(${ZROUTER_ROOT}/vendor/${TARGET_VENDOR}/files)
+# Vendor wide files
+ROOTFS_COPY_DIRS+=${ZROUTER_ROOT}/vendor/${TARGET_VENDOR}/files
+.endif # exists(vendor/TARGET_VENDOR/files)
+
+# Vendor wide tunables
+.if exists(${ZROUTER_ROOT}/vendor/${TARGET_VENDOR}/vendor.mk)
+.include "${ZROUTER_ROOT}/vendor/${TARGET_VENDOR}/vendor.mk"
+.endif # exists(vendor/TARGET_VENDOR/vendor.mk)
+
+#### Per device
+.if exists(${ZROUTER_ROOT}/vendor/${TARGET_VENDOR}/${TARGET_DEVICE}/)
+TARGET_VENDOR_BOARDDIR= ${ZROUTER_ROOT}/vendor/${TARGET_VENDOR}/${TARGET_DEVICE}
+
+# Vendor files for exact device.
+.if exists(${TARGET_VENDOR_BOARDDIR}/files)
+# Will be processed after soc/boards/profiles defined
+ROOTFS_COPY_DIRS+=${TARGET_VENDOR_BOARDDIR}/files
+.endif # exists(TARGET_VENDOR_BOARDDIR/files)
+
+# Vendor device tunables
+.if exists(${ZROUTER_ROOT}/vendor/${TARGET_VENDOR}/vendor.mk)
+.include "${ZROUTER_ROOT}/vendor/${TARGET_VENDOR}/vendor.mk"
+.endif # exists(vendor/TARGET_VENDOR/vendor.mk)
+
+.endif # exists DEVICE directory.
+
+.endif # exists VENDOR directory.
\ No newline at end of file
More information about the Zrouter-src
mailing list