diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2015-11-08 21:50:09 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2015-11-08 21:50:27 +0100 |
commit | 2cdf620f2df9b10acdaaacc8bf40c10a61f1df55 (patch) | |
tree | aa3ce0c90c55c3c0f009a5b794b36c4ca52ed663 /target/x86_64 | |
parent | 7eff6fdf6d2875eb5b2d270653fdcad3937808bd (diff) |
rework generic pc configs, add x86_64 config
Diffstat (limited to 'target/x86_64')
-rw-r--r-- | target/x86_64/kernel/generic-x86_64 | 7 | ||||
-rw-r--r-- | target/x86_64/systems/generic-x86_64 | 18 |
2 files changed, 25 insertions, 0 deletions
diff --git a/target/x86_64/kernel/generic-x86_64 b/target/x86_64/kernel/generic-x86_64 new file mode 100644 index 000000000..b17b6e256 --- /dev/null +++ b/target/x86_64/kernel/generic-x86_64 @@ -0,0 +1,7 @@ +CONFIG_X86=y +CONFIG_X86_64=y +CONFIG_X86_X32=y +CONFIG_GENERIC_CPU=y +CONFIG_PROCESSOR_SELECT=y +CONFIG_CPU_SUP_INTEL=y +CONFIG_CPU_SUP_AMD=y diff --git a/target/x86_64/systems/generic-x86_64 b/target/x86_64/systems/generic-x86_64 new file mode 100644 index 000000000..b3fbff63c --- /dev/null +++ b/target/x86_64/systems/generic-x86_64 @@ -0,0 +1,18 @@ +config ADK_TARGET_SYSTEM_GENERIC_X86_64 + bool "Generic x86_64 PC" + select ADK_CPU_X86_64 + select ADK_TARGET_KERNEL_BZIMAGE + select ADK_TARGET_WITH_PCI + select ADK_TARGET_WITH_SERIAL + select ADK_TARGET_WITH_USB + select ADK_TARGET_WITH_VGA + select ADK_TARGET_WITH_NET + select ADK_TARGET_WITH_NETDEVICE + select ADK_TARGET_WITH_BLOCK + select ADK_TARGET_WITH_PATA + select ADK_TARGET_WITH_SATA + select ADK_PACKAGE_GRUB + help + Example config for generic x86_64 based PC. + You need to enable all required drivers manually. + |