diff options
author | Youness Alaoui <youness.alaoui@puri.sm> | 2017-05-08 16:50:23 -0400 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2017-06-09 17:01:58 +0200 |
commit | 047475cbd7a438180d9b20041391e2cd0b4d2bc4 (patch) | |
tree | 21cf483c6935c76f2fe52446a80d9ed9c3179f91 /src/mainboard/purism/librem13v2/Makefile.inc | |
parent | ab5b4c19c31d34ebb1ab697089f3626c50d2d801 (diff) |
purism/librem13v2: Add initial directory for librem13 v2
Add the initial directory for the port of the Librem 13 v2.
The base implementation was copied from the google/chell directory
and the chell references were replaced. spd directory was removed
since the RAM is not soldered on the MB. The Kconfig, board_info.txt
and devicetree.cb files were modified to match the Librem 13 v2
hardware information. The romstage.c, mainboard.c, Makefile.in and
dsdt.asl were modified to remove chromeos specific code. The boardid.c,
chromeos.c, chromeos.fmd, cmos.layout, ec.c, ec.h and smihandler.c
files were removed from the tree, and the acpi directory was replaced
with the acpi directory from the purism/librem13 board.
These changes allow us to remove the references to chromeos specific
code and allow coreboot to compile when the librem13v2 board is selected.
Change-Id: I24263fde18fcea70163dbdc59df6ea1d98c97af8
Signed-off-by: Youness Alaoui <youness.alaoui@puri.sm>
Reviewed-on: https://review.coreboot.org/19932
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/mainboard/purism/librem13v2/Makefile.inc')
-rw-r--r-- | src/mainboard/purism/librem13v2/Makefile.inc | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/mainboard/purism/librem13v2/Makefile.inc b/src/mainboard/purism/librem13v2/Makefile.inc new file mode 100644 index 0000000000..4e2997e6ad --- /dev/null +++ b/src/mainboard/purism/librem13v2/Makefile.inc @@ -0,0 +1,23 @@ +## +## This file is part of the coreboot project. +## +## Copyright (C) 2015 Google 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; version 2 of the License. +## +## 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. +## + +bootblock-y += bootblock_mainboard.c + +romstage-y += pei_data.c + +ramstage-y += mainboard.c +ramstage-y += pei_data.c +ramstage-y += ramstage.c + |