1------------------------------------------------------------------------------- 2coreboot README 3------------------------------------------------------------------------------- 4 5coreboot is a Free Software project aimed at replacing the proprietary 6BIOS you can find in most of today's computers. 7 8It performs just a little bit of hardware initialization and then executes 9one of many possible payloads, e.g. a Linux kernel or a bootloader. 10 11 12Payloads 13-------- 14 15After the basic initialization of the hardware has been performed, any 16desired "payload" can be started by coreboot. 17 18See http://www.coreboot.org/Payloads for a list of supported payloads. 19 20 21Supported Hardware 22------------------ 23 24coreboot supports a wide range of chipsets, devices, and mainboards. 25 26For details please consult: 27 28 * http://www.coreboot.org/Supported_Motherboards 29 * http://www.coreboot.org/Supported_Chipsets_and_Devices 30 31 32Build Requirements 33------------------ 34 35 * gcc / g++ 36 * make 37 * python 38 * perl 39 40Optional: 41 42 * doxygen (for generating/viewing documentation) 43 * iasl (for targets with ACPI support) 44 * gdb (for better debugging facilities on some targets) 45 46 47Building coreboot 48----------------- 49 50Please consult http://www.coreboot.org/Documentation for details. 51 52 53Testing coreboot Without Modifying Your Hardware 54------------------------------------------------- 55 56If you want to test coreboot without any risks before you really decide 57to use it on your hardware, you can use the QEMU system emulator to run 58coreboot virtually in QEMU. 59 60Please see http://www.coreboot.org/QEMU for details. 61 62 63Website and Mailing List 64------------------------ 65 66Further details on the project, a FAQ, many HOWTOs, news, development 67guidelines and more can be found on the coreboot website: 68 69 http://www.coreboot.org 70 71You can contact us directly on the coreboot mailing list: 72 73 http://www.coreboot.org/Mailinglist 74 75 76Copyright and License 77--------------------- 78 79The copyright on coreboot is owned by quite a large number of individual 80developers and companies. Please check the individual source files for details. 81 82coreboot is licensed under the terms of the GNU General Public License (GPL). 83Some files are licensed under the "GPL (version 2, or any later version)", 84and some files (mostly those derived from the Linux kernel) are licensed under 85the "GPL, version 2". For some parts, which were derived from other projects, 86other (GPL-compatible) licenses may apply. Please check the individual 87source files for details. 88 89This makes the resulting coreboot images licensed under the GPL, version 2. 90 91

