diff options
author | Varinder Pratap <varinder.p@samsung.com> | 2022-09-20 16:08:33 +0530 |
---|---|---|
committer | Varinder Pratap <varinder.p@samsung.com> | 2022-09-20 16:08:33 +0530 |
commit | 4aed80b7ef6d150dbf7956dedb69b8b27c2a505d (patch) | |
tree | ea3c24e0036d8645330e2c4d4fb3cd95db82abc3 | |
parent | 767e87a866f68472ccb15d772af4d2b9f5a15a38 (diff) | |
download | qemu-tizen_qemu_5.0.1.tar.gz qemu-tizen_qemu_5.0.1.tar.bz2 qemu-tizen_qemu_5.0.1.zip |
Removed all extra resources and binaries.tizen_qemu_5.0.1
Change-Id: If0c43a11a3ce4a7efef0bb094ac058a7a38ad5ec
Signed-off-by: Varinder Pratap <varinder.p@samsung.com>
-rwxr-xr-x | configure | 4 | ||||
-rw-r--r-- | tizen/Makefile | 4 | ||||
-rwxr-xr-x | tizen/src/Makefile | 45 |
3 files changed, 2 insertions, 51 deletions
@@ -8603,8 +8603,8 @@ DIRS="$DIRS roms/seabios roms/vgabios" LINKS="Makefile" # for TIZEN-maru if test "$maru" = "yes" ; then -DIRS="$DIRS tizen/src tizen/standalone-src" -LINKS="$LINKS tizen/Makefile tizen/src/Makefile tizen/src/scripts tizen/src/ui/resource tizen/src/VERSION tizen/standalone-src/Makefile tizen/supplements" +DIRS="$DIRS tizen/src" +LINKS="$LINKS tizen/Makefile tizen/src/Makefile tizen/src/scripts tizen/src/ui/resource tizen/src/VERSION tizen/supplements" fi LINKS="$LINKS tests/tcg/lm32/Makefile po/Makefile" LINKS="$LINKS tests/tcg/Makefile.target tests/fp/Makefile" diff --git a/tizen/Makefile b/tizen/Makefile index 3ce9418c99..c48926366c 100644 --- a/tizen/Makefile +++ b/tizen/Makefile @@ -1,12 +1,8 @@ all: cd src && $(MAKE) all - cd standalone-src && $(MAKE) all clean: cd src && $(MAKE) clean - cd standalone-src && $(MAKE) clean distclean: - cd standalone-src && $(MAKE) clean cd src && $(MAKE) distclean install: cd src && $(MAKE) install - cd standalone-src && $(MAKE) install diff --git a/tizen/src/Makefile b/tizen/src/Makefile index 3de6d045ee..34b7ccd977 100755 --- a/tizen/src/Makefile +++ b/tizen/src/Makefile @@ -43,60 +43,15 @@ install: all @echo "Present working directory :" $(PWD) @echo "EMULATOR directory :" $(EMUL_DIR) mkdir -p $(EMUL_DIR)/bin - mkdir -p $(EMUL_DIR)/etc - mkdir -p $(EMUL_DIR)/data - mkdir -p $(EMUL_DIR)/icons - mkdir -p $(EMUL_DIR)/images @echo "Copying emulator binary" cp -pP $(BUILD_PATH)/x86_64-softmmu/qemu-system-x86_64$(EXESUF) $(EMUL_DIR)/bin/emulator-x86_64-whpx$(EXESUF) - @echo "Copying bioses to $(EMUL_DIR)/data/bios" - mkdir -p $(EMUL_DIR)/data/bios - cp -pP ../../../pc-bios/bios-256k.bin $(EMUL_DIR)/data/bios - cp -pP ../../../pc-bios/linuxboot.bin $(EMUL_DIR)/data/bios - cp -pP ../../../pc-bios/linuxboot_dma.bin $(EMUL_DIR)/data/bios - cp -pP ../../../pc-bios/efi-virtio.rom $(EMUL_DIR)/data/bios - cp -pP scripts/emulator.sh $(EMUL_DIR)/bin/emulator-whpx.sh ifdef CONFIG_WIN32 cp -pP scripts/emulator.cmd $(EMUL_DIR)/bin/emulator-whpx.cmd endif -ifdef CONFIG_QT - cp -pP ui/resource/images/display_off_guide.png $(EMUL_DIR)/images - cp -pP ui/resource/images/about_bg.png $(EMUL_DIR)/images -ifdef CONFIG_DARWIN - cp -pP ui/resource/icons/emulator_icon.ico $(EMUL_DIR)/icons -endif -endif - -# Enable vhost-net on Linux -ifdef CONFIG_LINUX - cp -pP ../supplements/SDK/tizen-vhost-net $(EMUL_DIR)/etc - cp -pP ../supplements/SDK/45-tizen-vhost-net.rules $(EMUL_DIR)/etc -endif - -# Enable USB pass-through on Linux -ifeq ($(CONFIG_LINUX)$(CONFIG_TIZENUSB),yy) - cp -pP ../supplements/SDK/tizen-usb $(EMUL_DIR)/etc - cp -pP ../supplements/SDK/45-tizen-usb.rules $(EMUL_DIR)/etc -endif - -# give a title name for sdb terminal. -ifdef CONFIG_DARWIN - cp -pP scripts/sdbscript $(EMUL_DIR)/bin -endif - -# for bridged network -ifdef CONFIG_LINUX - cp -pP scripts/emulator-ifup-linux.sh $(EMUL_DIR)/etc/emulator-ifup.sh - cp -pP ../supplements/SDK/tizen-sudoers.rules $(EMUL_DIR)/etc -endif -ifdef CONFIG_DARWIN - cp -pP scripts/emulator-ifup-darwin.sh $(EMUL_DIR)/etc/emulator-ifup.sh -endif - else all: @echo "Please call configure before running make!" |