Trying to get serial in qemu integratorcp. Still without succeed.

svn path=/nixpkgs/trunk/; revision=20118
This commit is contained in:
Lluís Batlle i Rossell 2010-02-18 21:10:49 +00:00
parent 0be3d18896
commit 85a35352bb

View file

@ -64,11 +64,37 @@ with pkgs;
};
integratorCP = {
name = "integratorCP";
kernelBaseConfig = "integrator_defconfig";
kernelArch = "arm";
kernelAutoModules = false;
kernelTarget = "zImage";
kernelExtraConfig =
''
# needed for qemu integrator/cp
SERIAL_AMBA_PL011 y
SERIAL_AMBA_PL011_CONSOLE y
SERIAL_AMBA_PL010 n
SERIAL_AMBA_PL010_CONSOLE n
'';
uboot = null;
ubootConfig = "integratorcp_config";
};
integratorCPuboot = {
name = "integratorCP";
kernelBaseConfig = "integrator_defconfig";
kernelArch = "arm";
kernelAutoModules = false;
kernelTarget = "uImage";
kernelExtraConfig =
''
# needed for qemu integrator/cp
SERIAL_AMBA_PL011 y
SERIAL_AMBA_PL011_CONSOLE y
SERIAL_AMBA_PL010 n
SERIAL_AMBA_PL010_CONSOLE n
'';
uboot = uboot;
ubootConfig = "integratorcp_config";
};