From 81c2e053c0c94849860692ea48e89e09828c5231 Mon Sep 17 00:00:00 2001 From: "R. Andrew Ohana" Date: Wed, 3 Oct 2012 19:52:52 -0700 Subject: Move macloader to hardware/samsung There are quite a few different Samsung devices which require macloader (many of which are just using binary blobs), so we should move it out of the device trees. Change-Id: I9e23fca0ba4c17da328cace801a92fa57df9a862 --- Android.mk | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) (limited to 'Android.mk') diff --git a/Android.mk b/Android.mk index fe7addf..8719549 100644 --- a/Android.mk +++ b/Android.mk @@ -12,17 +12,23 @@ # See the License for the specific language governing permissions and # limitations under the License. +SAM_ROOT := $(call my-dir) + ifeq ($(TARGET_BOARD_PLATFORM),exynos4) ifeq ($(TARGET_SOC),exynos4210) -include hardware/samsung/exynos4210.mk +include $(SAM_ROOT)/exynos4210.mk endif ifeq ($(TARGET_SOC),exynos4x12) -include hardware/samsung/exynos4x12.mk +include $(SAM_ROOT)/exynos4x12.mk endif endif ifeq ($(TARGET_BOARD_PLATFORM),s5pc110) ifneq ($(TARGET_BOOTLOADER_BOARD_NAME),herring) -include hardware/samsung/s5pc110.mk +include $(SAM_ROOT)/s5pc110.mk +endif endif + +ifeq ($(BOARD_HAVE_SAMSUNG_WIFI),true) +include $(SAM_ROOT)/macloader/Android.mk endif -- cgit v1.1