diff options
author | Dan Crowell <dcrowell@us.ibm.com> | 2014-05-13 16:45:45 -0500 |
---|---|---|
committer | A. Patrick Williams III <iawillia@us.ibm.com> | 2014-09-22 13:31:04 -0500 |
commit | d001febf0b5594120dd422bcbe5736221471e0ca (patch) | |
tree | 227678a8341e96ef6bf9fe385e1215cffe613b97 /src/usr/lpc/makefile | |
parent | e7d14e42caf28c421dfaa4b3b15bda7cf5a77e43 (diff) | |
download | talos-hostboot-d001febf0b5594120dd422bcbe5736221471e0ca.tar.gz talos-hostboot-d001febf0b5594120dd422bcbe5736221471e0ca.zip |
Create LPC Device Driver
Split LPC function out from PNOR DD and incorporate Stradale
changes
Change-Id: I4162db1a9f52ba3c0c973438b7b70baeae00aee2
Origin: Google Shared Technology
RTC: 97494
Reviewed-on: http://gfw160.aus.stglabs.ibm.com:8080/gerrit/11198
Tested-by: Jenkins Server
Reviewed-by: Michael Baiocchi <baiocchi@us.ibm.com>
Reviewed-by: Douglas R. Gilbert <dgilbert@us.ibm.com>
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/usr/lpc/makefile')
-rw-r--r-- | src/usr/lpc/makefile | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/src/usr/lpc/makefile b/src/usr/lpc/makefile new file mode 100644 index 000000000..4fbad8436 --- /dev/null +++ b/src/usr/lpc/makefile @@ -0,0 +1,34 @@ +# IBM_PROLOG_BEGIN_TAG +# This is an automatically generated prolog. +# +# $Source: src/usr/lpc/makefile $ +# +# OpenPOWER HostBoot Project +# +# Contributors Listed Below - COPYRIGHT 2014 +# [+] Google Inc. +# [+] International Business Machines Corp. +# +# +# 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 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or +# implied. See the License for the specific language governing +# permissions and limitations under the License. +# +# IBM_PROLOG_END_TAG +ROOTPATH = ../../.. +MODULE = lpc + +OBJS = lpcdd.o + +#@fixme - RTC:107788 Add tests after 37744 is merged +#SUBDIRS = test.d + +include ${ROOTPATH}/config.mk |