summaryrefslogtreecommitdiff
path: root/target/x86_64
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2015-11-12 04:45:03 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2015-11-12 04:48:05 +0100
commit2841218b0aaba29930f742b4eb613f523ee3710b (patch)
treee9063dcb734b1db781322e0dc3672dd5c378e0dc /target/x86_64
parent50d137f8dd4ef7069cf9d160541794db224ffca4 (diff)
do not allow to build broken kernel images with compression
Some targets do not support compressed kernels or initramfs. OpenADK combines both, there is no support for mixed setups. For example Kernel with gzip, initramfs with xz. Qemu-Metag f.e. can only use uncompressed initramfs. The kernel could be compressed, but mixed setup isn't available for now.
Diffstat (limited to 'target/x86_64')
-rw-r--r--target/x86_64/systems/generic-x86_641
-rw-r--r--target/x86_64/systems/pcengines-apu1
-rw-r--r--target/x86_64/systems/qemu-x86_641
3 files changed, 3 insertions, 0 deletions
diff --git a/target/x86_64/systems/generic-x86_64 b/target/x86_64/systems/generic-x86_64
index 1610952a7..181a17dba 100644
--- a/target/x86_64/systems/generic-x86_64
+++ b/target/x86_64/systems/generic-x86_64
@@ -2,6 +2,7 @@ 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_KERNEL_WITH_COMPRESSION
select ADK_TARGET_WITH_ACPI
select ADK_TARGET_WITH_PCI
select ADK_TARGET_WITH_SERIAL
diff --git a/target/x86_64/systems/pcengines-apu b/target/x86_64/systems/pcengines-apu
index 83c1048e8..3d381b609 100644
--- a/target/x86_64/systems/pcengines-apu
+++ b/target/x86_64/systems/pcengines-apu
@@ -2,6 +2,7 @@ config ADK_TARGET_SYSTEM_PCENGINES_APU
bool "PC Engines APU"
select ADK_CPU_AMD_BOBCAT
select ADK_TARGET_KERNEL_BZIMAGE
+ select ADK_TARGET_KERNEL_WITH_COMPRESSION
select ADK_TARGET_WITH_MINIPCI
select ADK_TARGET_WITH_SERIAL
select ADK_TARGET_WITH_PCI
diff --git a/target/x86_64/systems/qemu-x86_64 b/target/x86_64/systems/qemu-x86_64
index 3af8a6f96..7fb201931 100644
--- a/target/x86_64/systems/qemu-x86_64
+++ b/target/x86_64/systems/qemu-x86_64
@@ -3,6 +3,7 @@ config ADK_TARGET_SYSTEM_QEMU_X86_64
select ADK_CPU_NOCONA
select ADK_TARGET_QEMU
select ADK_TARGET_KERNEL_BZIMAGE
+ select ADK_TARGET_KERNEL_WITH_COMPRESSION
help
Support for Qemu Emulator X86_64 architecture.