mirror of https://github.com/xemu-project/xemu.git
build: Disable some unnecessary features
This commit is contained in:
parent
32ad2bc012
commit
3cbe585b59
11
build.sh
11
build.sh
|
@ -123,6 +123,17 @@ set -x # Print commands from now on
|
||||||
--disable-lzo \
|
--disable-lzo \
|
||||||
--disable-smartcard \
|
--disable-smartcard \
|
||||||
--disable-usb-redir \
|
--disable-usb-redir \
|
||||||
|
--disable-bochs \
|
||||||
|
--disable-cloop \
|
||||||
|
--disable-dmg \
|
||||||
|
--disable-vdi \
|
||||||
|
--disable-vvfat \
|
||||||
|
--disable-qcow1 \
|
||||||
|
--disable-qed \
|
||||||
|
--disable-parallels \
|
||||||
|
--disable-sheepdog \
|
||||||
|
--without-default-devices \
|
||||||
|
--disable-blobs \
|
||||||
${user_opts}
|
${user_opts}
|
||||||
|
|
||||||
time make -j"${job_count}" subdir-i386-softmmu 2>&1 | tee build.log
|
time make -j"${job_count}" subdir-i386-softmmu 2>&1 | tee build.log
|
||||||
|
|
|
@ -25,3 +25,4 @@
|
||||||
CONFIG_ISAPC=y
|
CONFIG_ISAPC=y
|
||||||
CONFIG_I440FX=y
|
CONFIG_I440FX=y
|
||||||
CONFIG_Q35=y
|
CONFIG_Q35=y
|
||||||
|
CONFIG_XBOX=y
|
||||||
|
|
|
@ -99,3 +99,9 @@ config VMPORT
|
||||||
config VMMOUSE
|
config VMMOUSE
|
||||||
bool
|
bool
|
||||||
depends on VMPORT
|
depends on VMPORT
|
||||||
|
|
||||||
|
config XBOX
|
||||||
|
select PC
|
||||||
|
select USB_OHCI
|
||||||
|
select USB_STORAGE_BOT
|
||||||
|
select AC97
|
||||||
|
|
Loading…
Reference in New Issue