from geohot's gist (edited to remove steps that were added to install.sh):
TODO: script the rest of the process too. better yet, make it all autorun on the phone like NEOS.
# 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
# TODO: factor build_usr out of this repo
git clone git@github.com:commaai/eon-neos-builder.git
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
# 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
./install.sh
# 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
scons -j4
# two things currently don't build, the model and panda (binutils issue)
# 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!
./launch_openpilot.sh/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
This is the tool to build the operating system for your EON Gold and comma two dashcam development kit.
- A kernel built outside the Android build system
- A minified version of Android
- Userspace from termux
- Compute
- GPU
- OpenCL
- DSP
- Sensors
- GPS
- IMU
- Camera with visiond
- Audio
- Touchscreen
- Connectivity
- Ethernet
- Radio
- Wi-FI
- Bluetooth
- Tethering
- An Ubuntu 20.04 build environment with at least 80GB of free disk space
- Install git and git-lfs to fetch build tools during
git clone
See the device-specific instructions in devices/eon/README.md