2015-01-26 20:13:31 +00:00
|
|
|
{ stdenv, fetchurl, iasl, python }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
|
|
|
|
name = "seabios-${version}";
|
2018-02-27 23:47:59 +00:00
|
|
|
version = "1.11.0";
|
2015-01-26 20:13:31 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://code.coreboot.org/p/seabios/downloads/get/${name}.tar.gz";
|
2018-02-27 23:47:59 +00:00
|
|
|
sha256 = "1xwvp77djxbxbxg82hzj26pv6zka3556vkdcp09hnfwapcp46av2";
|
2015-01-26 20:13:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ iasl python ];
|
|
|
|
|
2016-08-02 16:38:25 +01:00
|
|
|
hardeningDisable = [ "pic" "stackprotector" "fortify" ];
|
2016-02-10 22:28:44 +00:00
|
|
|
|
2015-01-26 20:13:31 +00:00
|
|
|
configurePhase = ''
|
|
|
|
# build SeaBIOS for CSM
|
|
|
|
cat > .config << EOF
|
|
|
|
CONFIG_CSM=y
|
|
|
|
CONFIG_QEMU_HARDWARE=y
|
|
|
|
CONFIG_PERMIT_UNALIGNED_PCIROM=y
|
|
|
|
EOF
|
|
|
|
|
|
|
|
make olddefconfig
|
2016-02-10 22:28:44 +00:00
|
|
|
'';
|
2015-01-26 20:13:31 +00:00
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir $out
|
|
|
|
cp out/Csm16.bin $out/Csm16.bin
|
2016-02-10 22:28:44 +00:00
|
|
|
'';
|
2015-01-26 20:13:31 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Open source implementation of a 16bit X86 BIOS";
|
|
|
|
longDescription = ''
|
|
|
|
SeaBIOS is an open source implementation of a 16bit X86 BIOS.
|
|
|
|
It can run in an emulator or it can run natively on X86 hardware with the use of coreboot.
|
|
|
|
SeaBIOS is the default BIOS for QEMU and KVM.
|
|
|
|
'';
|
|
|
|
homepage = http://www.seabios.org;
|
|
|
|
license = licenses.lgpl3;
|
|
|
|
maintainers = [ maintainers.tstrobel ];
|
2017-09-13 13:18:15 +01:00
|
|
|
platforms = [ "i686-linux" "x86_64-linux" ];
|
2015-01-26 20:13:31 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|