src: Replace common MSR addresses with macros
[coreboot.git] / README.md
blobb13ace5d78fbd416185461eb40bc466d0c00d26b
1 coreboot README
2 ===============
4 coreboot is a Free Software project aimed at replacing the proprietary BIOS
5 (firmware) found in most computers.  coreboot performs a little bit of
6 hardware initialization and then executes additional boot logic, called a
7 payload.
9 With the separation of hardware initialization and later boot logic,
10 coreboot can scale from specialized applications that run directly
11 firmware, run operating systems in flash, load custom
12 bootloaders, or implement firmware standards, like PC BIOS services or
13 UEFI. This allows for systems to only include the features necessary
14 in the target application, reducing the amount of code and flash space
15 required.
17 coreboot was formerly known as LinuxBIOS.
20 Payloads
21 --------
23 After the basic initialization of the hardware has been performed, any
24 desired "payload" can be started by coreboot.
26 See <https://www.coreboot.org/Payloads> for a list of supported payloads.
29 Supported Hardware
30 ------------------
32 coreboot supports a wide range of chipsets, devices, and mainboards.
34 For details please consult:
36  * <https://www.coreboot.org/Supported_Motherboards>
37  * <https://www.coreboot.org/Supported_Chipsets_and_Devices>
40 Build Requirements
41 ------------------
43  * make
44  * gcc / g++
45    Because Linux distribution compilers tend to use lots of patches. coreboot
46    does lots of "unusual" things in its build system, some of which break due
47    to those patches, sometimes by gcc aborting, sometimes - and that's worse -
48    by generating broken object code.
49    Two options: use our toolchain (eg. make crosstools-i386) or enable the
50    `ANY_TOOLCHAIN` Kconfig option if you're feeling lucky (no support in this
51    case).
52  * iasl (for targets with ACPI support)
53  * pkg-config
54  * libssl-dev (openssl)
56 Optional:
58  * doxygen (for generating/viewing documentation)
59  * gdb (for better debugging facilities on some targets)
60  * ncurses (for `make menuconfig` and `make nconfig`)
61  * flex and bison (for regenerating parsers)
64 Building coreboot
65 -----------------
67 Please consult <https://www.coreboot.org/Build_HOWTO> for details.
70 Testing coreboot Without Modifying Your Hardware
71 ------------------------------------------------
73 If you want to test coreboot without any risks before you really decide
74 to use it on your hardware, you can use the QEMU system emulator to run
75 coreboot virtually in QEMU.
77 Please see <https://www.coreboot.org/QEMU> for details.
80 Website and Mailing List
81 ------------------------
83 Further details on the project, a FAQ, many HOWTOs, news, development
84 guidelines and more can be found on the coreboot website:
86   <https://www.coreboot.org>
88 You can contact us directly on the coreboot mailing list:
90   <https://www.coreboot.org/Mailinglist>
93 Copyright and License
94 ---------------------
96 The copyright on coreboot is owned by quite a large number of individual
97 developers and companies. Please check the individual source files for details.
99 coreboot is licensed under the terms of the GNU General Public License (GPL).
100 Some files are licensed under the "GPL (version 2, or any later version)",
101 and some files are licensed under the "GPL, version 2". For some parts, which
102 were derived from other projects, other (GPL-compatible) licenses may apply.
103 Please check the individual source files for details.
105 This makes the resulting coreboot images licensed under the GPL, version 2.