Git Product home page Git Product logo

superbird-android-auto's Introduction

Wall Thing: Debian Chromium Kiosk on Spotify Car Thing (superbird)

This is a prebuilt image of Debian 13 (Trixie) for the Spotify Car Thing, aka superbird. It combines the stock kernel with a debian rootfs, and launches a fullscreen Chromium kiosk. I like to use it with Home Assistant.

Home Assistant on Car Thing

Home Assistant on Car Thing

This image will remove the default Spotify functionality. You should definitely make a full backup before proceeding!

Default user and password are both superbird

Latest Release

Features

Working:

  • Debian 13 (Trixie) aarch64
  • Framebuffer display working with X11, in portrait or landscape, with touch input
  • Networking via USB RNDIS (requires a host device)
  • Automatic blacklight on/off with display wake/sleep
  • VNC and SSH (forwarded through host device)
  • Chromium browser, fullscreen kiosk mode
  • Buttons and dial used to control a light and recall scenes/automations/scripts on Home Assistant
  • 256MB settings partition used for Chromium user profile

Available, but not used in this image:

  • Bluetooth
  • Backlight brightness control (currently fixed at 100)
  • Audio (mic array, DSP)

Not working:

  • Wifi
  • GPU acceleration

WiFi is technically possible on this hardware, but the stock bootloaders and kernel disable it. It might be possible to cherry-pick the wifi information from the Radxa Zero device tree (practically the same SoC), but I think you would need to rebuild one or more of the bootloader stages to make it work.

GPU: the hardware has a Mali GPU, but the stock OS uses it via DirectFB QT library, and does not include necessary libraries to make it work with X11. It may be possible to grab the needed files from Radxa Zero.

Boot Modes

After installation, you will have 3 different boot options, depending on what buttons are held:

  • Debian Mode - default, no buttons held

    • bootlogo says Debian Trixie
    • kernel is boot_a root is data
  • Utility Mode - hold button 1

    • bootlogo says Utility Mode
    • kernel is boot_a root is system_a
    • adb and already configured
    • scripts to install debian
  • USB Burn Mode - hold button 4

    • bootlogo says USB Burn Mode

Installation

Requirements:

  • Spotify Car Thing
  • another device to act as host, such as Radxa Zero, Rockpi S, Raspberry Pi 4, etc
  • a USB cable to connect the two
  • power supply for the host device
  • a desktop/laptop for flashing the image to the Car Thing

Setup:

  1. Download and extract the latest image from Releases
  2. Put your device in burn mode by holding buttons 1 & 4 while plugging into usb port
    1. avoid using a USB hub, you will have issues flashing the image
  3. Use the latest version of superbird-tool to flash the extracted image folder:
# root may be needed, check superbird-tool readme for platform-specific usage
# make sure your device is found
python3 superbird_tool.py --find_device
# restore the entire folder to your device
python3 superbird_tool.py --restore_device ~/Downloads/debian_v1.2_2023-12-19
  1. Configure a host system
    1. Select a host device. I have tested:
      1. Radxa Zero with Armbian Jammy Minimal CLI
        1. The Armbian Bookworm release did not work with USB burn mode, but works fine as a host just for networking
      2. Radxa Rockpi S (with a PoE hat!), also with Armbian Jammy
      3. Raspberry Pi 4B, with Raspi OS Bookworm Lite
    2. Copy and run setup_host.sh on the host device (as root), and reboot
    3. Connect the Car Thing into the host device and power it up
  2. ssh to the host device, and then you should be able to ssh to the Car Thing (user and password are both superbird) :
# script added entry in /etc/hosts, use hostname "superbird" from host device
ssh superbird@superbird
# or by ip (host device is 192.168.7.1, superbird is 192.168.7.2)
ssh [email protected]
  1. From another device on the same network, you should be able to ssh directly to the Car Thing using port 2022:
# where "host-device" is the hostname or ip of your host device
ssh -p 2022 superbird@host-device
  1. Once you have ssh access to the Car Thing, edit some things:
    1. Probably change password
    2. Edit /scripts/chromium_settings.sh to change what URL to launch in the kiosk
      1. Restart X11 and Chromium with: sudo systemctl restart chromium.service
    3. Edit /scripts/buttons_settings.py to change Home Assistant URL and add long-lived token for access
      1. assign scenes/automations/scripts to buttons, assign a light entity to the knob
      2. Restart buttons script with: sudo systemctl restart buttons.service
    4. Edit /etc/X11/xorg.conf to adjust screen timeout (default 10 mins), orientation (default portrait)
      1. for landscape, un-comment lines 38 and 71
    5. Edit /scripts/setup_display.sh and /scripts/setup_backlight.sh to adjust backlight brightness (default 100)
      1. Restart backlight script with: sudo systemctl restart backlight.service
    6. Change vnc password: sudo vncpasswd /scripts/vnc_passwd
      1. Restart vnc server with: sudo systemctl restart vnc.service
  2. Using your favorite VNC client, connect by VNC to the host device's address, port 5900, if you need to interact with a page (sign in)
  3. ?
  4. Profit

How to build the image

  1. using superbird-tool, use --dump_device to dump a stock device into ./dumps/debian_current/
  2. run ./build_image.sh, which will:
    1. replace env.txt with switchable version (see files/env/env_switchable.txt)
    2. modify system_a partition for Utility Mode:
      1. install usb gadget for ADB (see files/system_a/etc/init.d/S49usbgadget)
      2. modify /etc/fstab and /etc/inittab to not mount data or settings partitions (see files/system_a/etc/)
    3. format settings partition
    4. format data partition, and:
      1. use debootstrap to create a minimal debian root filesystem, plus a few extra packages
        1. systemd systemd-sysv dbus kmod usbutils htop nano tree file less locales sudo dialog apt wget curl iputils-ping iputils-tracepath iputils-arping iproute2 net-tools openssh-server ntp xserver-xorg-core xserver-xorg-video-fbdev xterm xinit x11-xserver-utils shared-mime-info xserver-xorg-input-evdev libinput-bin xserver-xorg-input-libinput xinput fbset x11vnc chromium python3-minimal python3-pip
        2. python packages from requirements.txt
      2. copy /lib/modules/4.9.113 from system_a
      3. configure X11 via /etc/X11/xorg.conf
      4. set hostname to superbird (configure in image_config.sh)
      5. add entry to /etc/hosts to resolve host as 192.168.7.1 (host device)
      6. create regular user superbird, password: superbird, with passwordless sudo (configure in image_config.sh)
      7. install scripts to /scripts/ (see files/data/scripts/)
      8. install services to /lib/systemd/system/ (see files/data/lib/systemd/system/)
      9. set locale to en_US.UTF-8
      10. set timezone to America/Los_Angeles
      11. add entry to /etc/fstab to mount settings partition at /config (for chromium profile) (see files/data/etc/fstab)
      12. add entry to /etc/inittab to enable serial console at 115200 baud (see files/data/etc/inittab)
      13. generate new image for logo partition using files/logo/*.bmp
  3. You now have an image at ./dumps/debian_current/ ready to flash to device using superbird-tool

Hint: Install apt-cacher-ng and then run ./build_image.sh --local_proxy to use locally cached packages (avoid re-downloading packages every time, much faster)

Warranty and Liability

None. You definitely can mess up your device in ways that are difficult to recover. I cannot promise a bug in this script will not brick your device. By using this tool, you accept responsibility for the outcome.

I highly recommend connecting to the UART console, frederic's repo has some good pictures showing where the pads are.

Make backups.

superbird-android-auto's People

Contributors

bishopdynamics avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.