Removed all extra resources and binaries. 69/281669/1 tizen_qemu_5.0.1
authorVarinder Pratap <varinder.p@samsung.com>
Tue, 20 Sep 2022 10:38:33 +0000 (16:08 +0530)
committerVarinder Pratap <varinder.p@samsung.com>
Tue, 20 Sep 2022 10:38:33 +0000 (16:08 +0530)
Change-Id: If0c43a11a3ce4a7efef0bb094ac058a7a38ad5ec
Signed-off-by: Varinder Pratap <varinder.p@samsung.com>
configure
tizen/Makefile
tizen/src/Makefile

index 1cfddefca55665922ddbc60915244837f3a98823..1d20ece5060037605631a1ffc461a48012374d09 100755 (executable)
--- a/configure
+++ b/configure
@@ -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"
index 3ce9418c9938483de5fed3e1def033f35c28e755..c48926366cf19050952af8da2fe7dece38f594b6 100644 (file)
@@ -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
index 3de6d045ee3fbc0d312d305ca9e2f86d788ab4b3..34b7ccd9777b9aa725ef2f661119f6334c2e945d 100755 (executable)
@@ -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!"