diff options
author | Achin Gupta <achin.gupta@arm.com> | 2014-02-09 17:48:12 +0000 |
---|---|---|
committer | Dan Handley <dan.handley@arm.com> | 2014-02-20 19:06:34 +0000 |
commit | 0a9f747379d81aef77e2ee8523dbb7eca22487c6 (patch) | |
tree | 7127521645437a8d8fdb5f1636c8642f12bce3b8 /bl31/bl31.mk | |
parent | 8aa0cd43a8c4c59012eb26fad11abbd7359ea114 (diff) | |
download | arm-trusted-firmware-0a9f747379d81aef77e2ee8523dbb7eca22487c6.tar.gz |
Move PSCI to runtime services directory
This patch creates a 'services' directory and moves the PSCI under
it. Other runtime services e.g. the Secure Payload Dispatcher service
will be placed under the same directory in the future.
Also fixes issue ARM-software/tf-issues#12
Change-Id: I187f83dcb660b728f82155d91882e961d2255068
Diffstat (limited to 'bl31/bl31.mk')
-rw-r--r-- | bl31/bl31.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bl31/bl31.mk b/bl31/bl31.mk index fec8ebe..1522b83 100644 --- a/bl31/bl31.mk +++ b/bl31/bl31.mk @@ -33,13 +33,13 @@ vpath %.c common \ arch/system/gic \ plat/${PLAT} \ arch/${ARCH} \ - common/psci \ + services/psci \ lib/sync/locks/bakery \ plat/${PLAT}/${ARCH} \ ${PLAT_BL31_C_VPATH} vpath %.S lib/arch/${ARCH} \ - common/psci \ + services/psci \ include \ plat/${PLAT}/${ARCH} \ lib/sync/locks/exclusive \ |