Home
last modified time | relevance | path

Searched refs:install (Results 1 – 23 of 23) sorted by relevance

/misc/
A DMakefile56 .PHONY: install
58 install: acrn-manager-install acrnbridge-install acrn-crashlog-install \ target
59 acrnlog-install acrntrace-install
61 install: acrn-manager-install acrnbridge-install target
64 acrn-manager-install:
67 acrnbridge-install:
70 acrn-life-mngr-install:
73 acrn-crashlog-install:
76 acrnlog-install:
77 $(MAKE) -C $(T)/debug_tools/acrn_log OUT_DIR=$(DEBUG_OUT) install
[all …]
/misc/services/acrn_bridge/
A DMakefile11 install: target
12 install -d $(DESTDIR)$(systemd_unitdir)/network
13 install -p -D -m 0644 $(OUT_DIR)/acrn.netdev $(DESTDIR)$(systemd_unitdir)/network/50-acrn.netdev
14 install -p -D -m 0644 $(OUT_DIR)/acrn.network $(DESTDIR)$(systemd_unitdir)/network/50-acrn.network
15 install -p -D -m 0644 $(OUT_DIR)/tap0.netdev $(DESTDIR)$(systemd_unitdir)/network/50-tap0.netdev
16 install -p -D -m 0644 $(OUT_DIR)/eth.network $(DESTDIR)$(systemd_unitdir)/network/50-eth.network
/misc/debug_tools/acrn_crashlog/
A DMakefile105 .PHONY:install
106 install: target
107 @install -d $(DESTDIR)$(bindir)/
108 @install -p -D -m 0755 $(BUILDDIR)/acrnprobe/bin/acrnprobe $(DESTDIR)$(bindir)/
109 @install -p -D -m 0755 $(BUILDDIR)/usercrash/bin/debugger $(DESTDIR)$(bindir)/
112 @install -p -D -m 0755 data/crashlogctl $(DESTDIR)$(bindir)/
113 @install -p -D -m 0755 data/usercrash-wrapper $(DESTDIR)$(bindir)/
114 @install -d $(DESTDIR)$(datadir)/acrn/crashlog
115 @install -p -D -m 0644 data/40-watchdog.conf $(DESTDIR)$(datadir)/acrn/crashlog
116 @install -p -D -m 0644 data/80-coredump.conf $(DESTDIR)$(datadir)/acrn/crashlog
[all …]
A DREADME.rst56 To install the build:
61 sudo make install
/misc/config_tools/configurator/
A DREADME.md17 to install system dependencies.
18 2. Download and install [Nodejs](https://nodejs.org/en/download/).
19 3. Please follow [this guide](https://yarnpkg.com/lang/en/docs/install/) to install yarn.
23 In Linux, make sure your already install `git`, `python3`(version>=3.6) and `python3-venv` library,
26 $ sudo apt install git python3 python3-venv
35 you can use `choco install xsltproc` to install `xsltproc` package,
46 If your system doesn't have git and python, you can install it by
47 `choco install git python3`.
56 python3 -m pip install -r requirements.txt
89 python packages\configurator\thirdLib\manager.py install
[all …]
/misc/services/acrn_manager/
A DMakefile112 .PHONY: install
113 install: target
114 install -d $(DESTDIR)$(bindir)
115 install -d $(DESTDIR)$(systemd_unitdir)/system
116 install -d $(DESTDIR)$(libdir)
117 install -d $(DESTDIR)$(includedir)/acrn
118 install -t $(DESTDIR)$(bindir) $(OUT_DIR)/acrnctl
119 install -t $(DESTDIR)$(bindir) $(OUT_DIR)/acrnd
120 install -m 0644 -t $(DESTDIR)$(libdir) $(OUT_DIR)/libacrn-mngr.a
121 install -m 0644 -t $(DESTDIR)$(includedir)/acrn $(OUT_DIR)/acrn_mngr.h
[all …]
A DREADME.rst188 $ sudo make install
/misc/debug_tools/acrn_log/
A DMakefile52 install: $(OUT_DIR)/acrnlog target
53 install -d $(DESTDIR)$(bindir)
54 install -t $(DESTDIR)$(bindir) $(OUT_DIR)/acrnlog
55 install -d $(DESTDIR)$(systemd_unitdir)/system
56 install -p -D -m 0644 $(OUT_DIR)/acrnlog.service $(DESTDIR)$(systemd_unitdir)/system
A DREADME.rst100 directory. To build and install the tool from source, run these commands:
105 sudo make install
107 and if you changed the ``acrnlog.service`` file, install it:
/misc/services/life_mngr/
A DMakefile89 .PHONY: install
90 install: target
91 install -d $(DESTDIR)$(CONF_DIR)
92 install -d $(DESTDIR)$(bindir)
93 install -t $(DESTDIR)$(bindir) $(OUT_DIR)/life_mngr
94 install -m 0644 -t $(DESTDIR)$(CONF_DIR) $(OUT_DIR)/life_mngr.conf
95 install -p -D -m 0644 $(OUT_DIR)/life_mngr.service $(DESTDIR)$(systemd_unitdir)/system/
/misc/config_tools/
A Dbuild.cmd6 rem pip install .\dist\acrn_config_tools-3.0-py3-none-any.whl --force-reinstall
9 python .\packages\configurator\thirdLib\manager.py install || exit 1
11 echo build and install success
/misc/sample_application/image_builder/
A Dsetup_hmi_vm.sh18 apt install -y python3 python3-pip net-tools python3-matplotlib openssh-server \
20 pip3 install flask 'numpy>=1.18.5' pandas posix_ipc
24 apt install ubuntu-gnome-desktop -y
A Dsetup_rt_vm.sh24 apt install rt-tests -y
39 sudo apt install /tmp/${file##*/} -y
A DREADME.rst13 computer. Then execute the following command to install the prerequisites.
17 sudo apt install -y kpartx \
/misc/debug_tools/acrn_trace/
A DMakefile51 install: $(OUT_DIR)/acrntrace target
52 install -d $(DESTDIR)$(bindir)
53 install -t $(DESTDIR)$(bindir) $(OUT_DIR)/acrntrace
A DREADME.rst151 directory. To build and install ``acrntrace``, run these commands:
156 sudo make install
/misc/packaging/
A DREADME.rst8 install the packages, and reboot the system with ACRN and an Ubuntu Service VM
19 does all the work to build the Debian packages so you can copy and install them
A Dacrn-board-inspector.postinst5 pip3 install xmlschema
/misc/config_tools/configurator/packages/configurator/thirdLib/
A Dmanager.py32 install(library_name, library_install)
37 def install(library_name, library_install): function
/misc/config_tools/configurator/pyodide/
A DREADME.md21 // after pyodide install all dependices
/misc/config_tools/configurator/packages/vue-json-schema-form/vue3/vue3-form-naive/
A DREADME.md11 npm install --save @lljj/vue3-form-naive
/misc/config_tools/configurator/packages/vue-json-schema-form/vue3/vue3-core/
A DREADME.md25 npm install --save @lljj/vue3-form-core
/misc/config_tools/configurator/packages/vue-json-schema-form/vue3/vue3-core/src/
A Dindex.js204 Form.install = (vueApp, options = {}) => {

Completed in 23 milliseconds