Pixel 3 install guide - commaai/openpilot GitHub Wiki

Instructions to install openpilot on a pixel 3 (very experimental)

# enter fastboot with power + volume down
# make sure bootloader is unlocked
# make sure modern version of android platform tools is installed
mkdir pixel
wget https://dl.google.com/dl/android/aosp/blueline-pq3a.190801.002-factory-f3d66c49.zip
unzip blueline-pq3a.190801.002-factory-f3d66c49.zip
cd blueline-pq3a.190801.002/
./flash-all.sh

# wait for boot, click through setup, enable adb as usual for android
cd ../
wget https://github.com/termux/termux-app/releases/download/v0.118.0/termux-app_v0.118.0+github-debug_arm64-v8a.apk
wget https://github.com/topjohnwu/Magisk/releases/download/v24.2/Magisk-v24.2.apk
adb install termux-app_v0.118.0+github-debug_arm64-v8a.apk
adb install Magisk-v24.2.apk
unzip -p blueline-pq3a.190801.002/image-blueline-pq3a.190801.002.zip boot.img > boot.img
adb push boot.img /sdcard/Download/
# use magisk app to patch boot.img
adb pull /sdcard/Download/magisk_patched-24200_V7Jgg.img
adb reboot bootloader
fastboot flash boot magisk_patched-24200_V7Jgg.img
fastboot reboot

# your phone is now rooted, this builds and installs the userspace on ubuntu pc
# TODO: factor build_usr out of this repo
git clone https://github.com/commaai/eon-neos-builder
cd eon-neos-builder/devices/eon/build_usr/
./install.py
./finish.sh
cp -pRv ../home out/data/data/com.termux/files/
cd out/data/data/com.termux/files/
tar zcvf userspace.tar.gz home usr
adb push userspace.tar.gz /sdcard/Download/
adb shell

# now we are on the phone
su
cd /data/data/com.termux/ 
mkdir files && cd files
tar xvf /sdcard/Download/userspace.tar.gz
mount -o remount,rw /dev/root /
ln -s /data/data/com.termux/files/usr /usr
exit

# enter the new userspace (reuse later)
su -c 'HOME=/data/data/com.termux/files/home PATH="/data/data/com.termux/files/usr/bin:/bin" LD_LIBRARY_PATH="/data/data/com.termux/files/usr/lib" bash'
mkdir -p tmp && mount -t tmpfs -o size=2048M tmpfs /tmp
cd ~
tmux

# additional setup
apt-get update
apt-get install gawk findutils
chmod 644 /data/data/com.termux/files/home/.ssh/config
chown root:root /data/data/com.termux/files/home/.ssh/config

# build and install extra packages
# ! comment out line 9 from install.sh with the mount
# this takes about 45 minutes
# TODO: the binutils this builds is broken
# ! add 'export MATHLIB="m"' before line 143 in install.sh
./install.sh

# enable ssh (optional)
sshd
mkdir -p /data/params/d && cat > /data/params/d/GithubSshKeys
# put your authorized key here, then on host
adb forward tcp:8022 tcp:8022
ssh -p 8022 localhost

# install openpilot
touch /EON
cd /data
git clone https://github.com/commaai/openpilot.git --recurse-submodules -b pixel3
cd openpilot
pip uninstall scons
pip install scons==4.4.0
scons -j4
# two things currently don't build, the model and panda (binutils issue)
# phone will reboot after this

# enter the new userspace again
adb shell
su -c 'HOME=/data/data/com.termux/files/home PATH="/data/data/com.termux/files/usr/bin:/bin" LD_LIBRARY_PATH="/data/data/com.termux/files/usr/lib" bash'
mkdir -p tmp && mount -t tmpfs -o size=2048M tmpfs /tmp
cd ~
tmux

# HACK: for qt to talk to android 9 surfaceflinger and for locked rotation landscape
cp /data/openpilot/third_party/qt-plugins/aarch64/libqeglfs-surfaceflinger-integration.so /usr/libexec/qt/egldeviceintegrations/

# launch!
cd /data/openpilot
./launch_openpilot.sh

Source: https://gist.github.com/geohot/569e9e4b20fd41203d8da71c6022be15