From 0db6aac6b5faac55d3ee0a8d16adf0a6e7afd64d Mon Sep 17 00:00:00 2001 From: Chih-Wei Huang Date: Fri, 17 Jul 2015 02:47:54 +0800 Subject: [PATCH] Create symbolic links on $(TARGET_OUT)/lib/firmware --- Android.mk | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 Android.mk diff --git a/Android.mk b/Android.mk new file mode 100644 index 0000000..d35389d --- /dev/null +++ b/Android.mk @@ -0,0 +1,23 @@ +# +# Copyright (C) 2014-2015 The Android-x86 Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# + +LOCAL_PATH := $(my-dir) + +SYMLINKS := $(addprefix $(TARGET_OUT)/lib,$(subst $(LOCAL_PATH),,$(shell find $(LOCAL_PATH)/firmware -type l))) + +$(SYMLINKS): FW_PATH := $(LOCAL_PATH) +$(SYMLINKS): + @link_to=`readlink $(subst $(TARGET_OUT)/lib,$(FW_PATH),$@)`; \ + echo "Symlink: $@ -> $$link_to"; \ + mkdir -p $(@D); ln -sf $$link_to $@ + +ALL_DEFAULT_INSTALLED_MODULES += $(SYMLINKS) + +include $(call all-makefiles-under,$(LOCAL_PATH)) -- 2.11.0