diff options
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. + |