diff options
author | Steven Sherk <steven.sherk@se-eng.com> | 2013-04-11 08:40:57 -0600 |
---|---|---|
committer | Ronald G. Minnich <rminnich@gmail.com> | 2013-04-12 00:37:34 +0200 |
commit | d9de6c4f0eb1c863f8fd81ede326973ad1aab0f2 (patch) | |
tree | cd4fdf68fd796f4aa4111a5165cc5593657814fd /src/superio/nuvoton/nct5104d/Makefile.inc | |
parent | 6a1210901dff47a65dac157445f0a76219be0d55 (diff) | |
download | coreboot-d9de6c4f0eb1c863f8fd81ede326973ad1aab0f2.tar.xz |
Add new superio device
- Added in new support for Nuvoton NCT5104D LPC device.
Change-Id: I0af8c5e3e46fdd0a549475b30917897ae9e144a7
Signed-off-by: Steven Sherk <steven.sherk@se-eng.com>
Reviewed-on: http://review.coreboot.org/3072
Tested-by: build bot (Jenkins)
Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Diffstat (limited to 'src/superio/nuvoton/nct5104d/Makefile.inc')
-rwxr-xr-x | src/superio/nuvoton/nct5104d/Makefile.inc | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/superio/nuvoton/nct5104d/Makefile.inc b/src/superio/nuvoton/nct5104d/Makefile.inc new file mode 100755 index 0000000000..b9345aa18d --- /dev/null +++ b/src/superio/nuvoton/nct5104d/Makefile.inc @@ -0,0 +1,23 @@ +## +## This file is part of the coreboot project. +## +## Copyright (C) 2011 - 2012 Advanced Micro Devices, Inc. +## +## This program is free software; you can redistribute it and/or modify +## it under the terms of the GNU General Public License as published by +## the Free Software Foundation; either version 2 of the License, or +## (at your option) any later version. +## +## This program is distributed in the hope that it will be useful, +## but WITHOUT ANY WARRANTY; without even the implied warranty of +## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +## GNU General Public License for more details. +## +## You should have received a copy of the GNU General Public License +## along with this program; if not, write to the Free Software +## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +## + +romstage-$(CONFIG_SUPERIO_NUVOTON_NCT5104D) += early_init.c +ramstage-$(CONFIG_SUPERIO_NUVOTON_NCT5104D) += superio.c + |