summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPraneeth Bajjuri2018-07-20 17:11:07 -0500
committerPraneeth Bajjuri2018-09-10 17:13:23 -0500
commitb68d16448b294a12c60c1618622a116b3164cd5a (patch)
tree0ab0905382b1af1f7a0dc9eb7dd54c53e7fd68e2 /Android.mk
parent158acbd0254481305b3020b93c785ff9c687d5ea (diff)
downloaddevice-ti-beagle-x15-b68d16448b294a12c60c1618622a116b3164cd5a.tar.gz
device-ti-beagle-x15-b68d16448b294a12c60c1618622a116b3164cd5a.tar.xz
device-ti-beagle-x15-b68d16448b294a12c60c1618622a116b3164cd5a.zip
beagle-x15: Initial device support
Based of http://git.ti.com/cgit/cgit.cgi/android/device-ti-am57xevm.git/ Branch: d-oreo-mr1-core-release Initial Android device support for beagle X15 platform. Processor: http://www.ti.com/product/am5728 Hardware Platform: https://beagleboard.org/x15 Schematics and Platform Info: https://elinux.org/Beagleboard:BeagleBoard-X15 Change-Id: I84936c1cc695832889b07f94f16ecdca9d2b00d2 Signed-off-by: Praneeth Bajjuri <praneeth@ti.com> Signed-off-by: Mykhailo Sopiha <mykhailo.sopiha@linaro.org> Signed-off-by: Sam Protsenko <semen.protsenko@linaro.org> Signed-off-by: Ruslan Trofymenko <ruslan.trofymenko@linaro.org>
Diffstat (limited to 'Android.mk')
-rw-r--r--Android.mk31
1 files changed, 31 insertions, 0 deletions
diff --git a/Android.mk b/Android.mk
new file mode 100644
index 0000000..6768aca
--- /dev/null
+++ b/Android.mk
@@ -0,0 +1,31 @@
1#
2# Copyright (C) 2018 Texas Instruments Incorporated - http://www.ti.com/
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
16
17# WARNING: Everything listed here will be built on ALL platforms,
18# including x86, the emulator, and the SDK. Modules must be uniquely
19# named (liblights.panda), and must build everywhere, or limit themselves
20# to only building on ARM if they include assembly. Individual makefiles
21# are responsible for having their own logic, for fine-grained control.
22
23ifneq ($(filter beagle_x15%, $(TARGET_DEVICE)),)
24
25LOCAL_PATH := $(call my-dir)
26
27# if some modules are built directly from this directory (not subdirectories),
28# their rules should be written here.
29
30include $(call all-makefiles-under,$(LOCAL_PATH))
31endif