My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nomicon/infra/corenix/configs/common.nix

12 lines
312 B

4 years ago
{ lib, ... }:
4 years ago
{
4 years ago
corenix.corebootConfig = {
4 years ago
CONFIG_PAYLOAD_NONE = "y"; # payload is added later
CONFIG_CBFS_SIZE = lib.mkDefault "0x300000";
CONFIG_USE_OPTION_TABLE = lib.mkDefault "y";
CONFIG_PCIEXP_CLK_PM = lib.mkDefault "y";
CONFIG_GENERIC_LINEAR_FRAMEBUFFER = lib.mkDefault "y";
};
}