From: Chih-Wei Huang Date: Thu, 16 Jul 2015 18:47:54 +0000 (+0800) Subject: Create symbolic links on $(TARGET_OUT)/lib/firmware X-Git-Tag: android-x86-4.4-r3 X-Git-Url: http://git.osdn.net/view?p=android-x86%2Fdevice-generic-common.git;a=commitdiff_plain;h=0db6aac6b5faac55d3ee0a8d16adf0a6e7afd64d Create symbolic links on $(TARGET_OUT)/lib/firmware --- 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))