commit | 8577c21ef91af8aaa9d60e7b4ac1deed322ec80b | [log] [tgz] |
---|---|---|
author | Bob Badour <[email protected]> | Mon Mar 15 09:40:36 2021 -0700 |
committer | Bob Badour <[email protected]> | Tue Mar 16 00:35:40 2021 +0000 |
tree | 204e6b403f54d4e77e5332c180e40ec2f4abf011 | |
parent | 1dd7c87cc5aac93dcfa1a2477a5b3300087e5d41 [diff] |
[LSC] Add LOCAL_LICENSE_KINDS to device/google/cuttlefish Added SPDX-license-identifier-Apache-2.0 to: build/Android.bp common/frontend/socket_vsock_proxy/Android.bp common/libs/device_config/Android.bp common/libs/fs/Android.bp common/libs/net/Android.bp common/libs/security/Android.bp common/libs/utils/Android.bp guest/commands/bt_vhci_forwarder/Android.bp guest/commands/rename_netiface/Android.bp guest/commands/rotate/Android.bp guest/commands/setup_wifi/Android.bp guest/commands/vsoc_input_service/Android.bp guest/hals/audio/Android.bp guest/hals/bt/remote/Android.bp guest/hals/gatekeeper/remote/Android.bp guest/hals/health/Android.bp guest/hals/health/storage/Android.bp guest/hals/hwcomposer/Android.bp guest/hals/keymaster/remote/Android.bp guest/hals/ril/reference-libril/Android.bp guest/hals/ril/reference-ril/Android.bp guest/hals/rild/Android.bp guest/monitoring/cuttlefish_service/Android.bp guest/monitoring/tombstone_transmit/Android.bp guest/services/suspend_blocker/Android.bp host/commands/adbshell/Android.bp host/commands/assemble_cvd/Android.bp host/commands/bt_connector/Android.bp host/commands/config_server/Android.bp host/commands/console_forwarder/Android.bp host/commands/cvd_host_bugreport/Android.bp host/commands/cvd_status/Android.bp host/commands/fetcher/Android.bp host/commands/gnss_grpc_proxy/Android.bp host/commands/kernel_log_monitor/Android.bp host/commands/launch/Android.bp host/commands/log_tee/Android.bp host/commands/logcat_receiver/Android.bp host/commands/metrics/Android.bp host/commands/metrics/proto/Android.bp host/commands/modem_simulator/Android.bp host/commands/powerwash_cvd/Android.bp host/commands/restart_cvd/Android.bp host/commands/run_cvd/Android.bp host/commands/secure_env/Android.bp host/commands/stop_cvd/Android.bp host/commands/tapsetiff/Android.bp host/commands/tombstone_receiver/Android.bp host/example_custom_actions/Android.bp host/frontend/adb_connector/Android.bp host/frontend/vnc_server/Android.bp host/frontend/webrtc/Android.bp host/frontend/webrtc_operator/Android.bp host/libs/allocd/Android.bp host/libs/audio_connector/Android.bp host/libs/config/Android.bp host/libs/msg_queue/Android.bp host/libs/screen_connector/Android.bp host/libs/vm_manager/Android.bp host/libs/wayland/Android.bp host/libs/websocket/Android.bp recovery/Android.bp shared/config/Android.bp shared/config/Android.mk tests/graphics/Android.bp tests/hal/Android.bp tests/powerwash/Android.bp tests/recovery/Android.bp tests/ril/Android.bp tests/wifi/Android.bp Added SPDX-license-identifier-Apache-2.0 SPDX-license-identifier-MIT to: Android.bp host/libs/graphics_detector/Android.bp Bug: 68860345 Bug: 151177513 Bug: 151953481 Test: m all Exempt-From-Owner-Approval: janitorial work Change-Id: I38c72c83c6002501bb57f31f5466189bb6ad2e9e Merged-in: Id3dfae826f85235dbec3908e54bba176592e718c
Make sure virtualization with KVM is available.
grep -c -w "vmx\|svm" /proc/cpuinfo
This should return a non-zero value. If running on a cloud machine, this may take cloud-vendor-specific steps to enable. For Google Compute Engine specifically, see the GCE guide.
Download, build, and install the host debian package:
git clone https://github.com/google/android-cuttlefish cd android-cuttlefish debuild -i -us -uc -b sudo dpkg -i ../cuttlefish-common_*_amd64.deb || sudo apt-get install -f sudo reboot
The reboot will trigger installing additional kernel modules and applying udev rules.
Go to http://ci.android.com/
Enter a branch name. Start with aosp-master
if you don‘t know what you’re looking for
Navigate to aosp_cf_x86_phone
and click on userdebug
for the latest build
Click on Artifacts
Scroll down to the OTA images. These packages look like aosp_cf_x86_phone-img-xxxxxx.zip
-- it will always have img
in the name. Download this file
Scroll down to cvd-host_package.tar.gz
. You should always download a host package from the same build as your images.
On your local system, combine the packages:
mkdir cf cd cf tar xvf /path/to/cvd-host_package.tar.gz unzip /path/to/aosp_cf_x86_phone-img-xxxxxx.zip
Launch cuttlefish with:
$ HOME=$PWD ./bin/launch_cvd
$ HOME=$PWD ./bin/stop_cvd
You can use adb
to debug it, just like a physical device:
$ ./bin/adb -e shell
You can use the TightVNC JViewer. Once you have downloaded the TightVNC Java Viewer JAR in a ZIP archive, run it with
$ java -jar tightvnc-jviewer.jar -ScalingFactor=50 -Tunneling=no -host=localhost -port=6444
Click “Connect” and you should see a lock screen!