From: SeokYeon Hwang Date: Wed, 21 May 2014 08:45:13 +0000 (+0900) Subject: maru_board: do not initialize unnecessary devices. X-Git-Tag: Tizen_Studio_1.3_Release_p2.3.1~359^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f613a61146e6752b8886cc9abe3cced3453c8423;p=sdk%2Femulator%2Fqemu.git maru_board: do not initialize unnecessary devices. Change-Id: I2832f8c73dbb406aff28a1d7dda6b77b9d4ef34b Signed-off-by: SeokYeon Hwang --- diff --git a/tizen/src/hw/maru_board.c b/tizen/src/hw/maru_board.c index 1595cc4cb5..7a33d80356 100644 --- a/tizen/src/hw/maru_board.c +++ b/tizen/src/hw/maru_board.c @@ -162,7 +162,12 @@ static QEMUMachine maru_x86_machine = { .desc = "Maru Board (x86)", .init = maru_x86_board_init, .hot_add_cpu = pc_hot_add_cpu, - .default_machine_opts = "firmware=bios-256k.bin" + .no_parallel = 1, + .no_floppy = 1, + .no_cdrom = 1, + .no_sdcard = 1, + .default_machine_opts = "firmware=bios-256k.bin", + .default_boot_order = "c", }; static void maru_machine_init(void)