diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2014-03-17 14:25:05 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2014-03-17 14:25:05 +0100 |
commit | 718043e164f93e243dad589af63ab68dbc0c7050 (patch) | |
tree | 4c5e73c43ba0c52da6ea21bedeb9436ab9d91403 /target/config | |
parent | 5ce18f2b0bc345445726aa6af6162ca3d978dfdb (diff) |
fix boot from disk for qemu targets
Diffstat (limited to 'target/config')
-rw-r--r-- | target/config/Config.in | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/target/config/Config.in b/target/config/Config.in index e108e048b..79f067bf3 100644 --- a/target/config/Config.in +++ b/target/config/Config.in @@ -258,6 +258,7 @@ endchoice choice prompt "Qemu Emulation with permanent storage device (disk/flash)" depends on ADK_HARDWARE_QEMU +default ADK_TARGET_QEMU_WITH_BLOCK if ADK_TARGET_ROOTFS_ARCHIVE config ADK_TARGET_QEMU_WITHOUT_BLOCK boolean "disabled" @@ -759,6 +760,7 @@ config ADK_TARGET_SUFFIX choice prompt "Target firmware type" depends on !ADK_CHOOSE_TARGET_SYSTEM && !ADK_CHOOSE_TARGET_ARCH && !ADK_TOOLCHAIN +default ADK_TARGET_ROOTFS_INITRAMFSARCHIVE if ADK_PKG_TEST default ADK_TARGET_ROOTFS_ARCHIVE config ADK_TARGET_ROOTFS_INITRAMFS @@ -899,10 +901,17 @@ config ADK_TARGET_ROOTFS_ISO help Use this option to create a bootable ISO image. +config ADK_TARGET_ROOTFS_INITRAMFSARCHIVE + bool "Archive usable for initramfs creation" + help + Use this option if your palnning to create a initramfs, + useful for adk-test-framework. + config ADK_TARGET_ROOTFS_ARCHIVE bool "Archive usable for different filesystems" select ADK_HOST_NEED_GENEXT2FS if ADK_HARDWARE_QEMU select ADK_KERNEL_EXT2_FS if ADK_HARDWARE_QEMU + select ADK_TARGET_QEMU_WITH_BLOCK if ADK_HARDWARE_QEMU help Use this option if your root filesystem is ext2/ext3/ext4/xfs. |