RetiredWizard / ljinux

A "linux" in python, for CircuitPython microcontrollers!

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Ljinux

A "linux" written in python, for CircuitPython powered microcontrollers. Code style: black
neofetch
Important notes:
This project is still in it's early developement!
This project is NOT a linux distribution.
This project is NOT compatible with any linux code / binaries.

We also now have a discord server!
If you need support or want to hang out, feel free to join in!

We also work with Github Discussions.

Table of Contents

Prerequisites and hardware support

Runs on circuitpython 8.1.X or later, including up to 9.0.0-beta-0.
Most of the os, will function just fine on earlier versions, even 6.x, but many functions will be broken.
Currently the supported boards are:

Espressif:

  • Adafruit Feather ESP32-S2
  • Adafruit Feather ESP32-S3 TFT
  • DFRobot Beetle ESP32-C3
  • Firebeetle 2 ESP32-S3
  • M5Stack Timer Camera X
  • Wemos Lolin S2 Mini
  • WeAct ESP32-C6
  • Waveshare ESP32-S2-Pico

Raspberry Pi:

  • Adafruit KB2040
  • Pimoroni Pico Lipo (16mb)
  • Pimoroni Pico Lipo (4mb)
  • Raspberry Pi Pico
  • Raspberry Pi Pico W
  • Waveshare RP2040-Zero

Nordic:

  • Seeed XIAO nRF52840 (Sense)

But it can probably run on many more.

The currently stable supported MCUs are: ESP32, ESP32-S2, ESP32-S3, ESP32-C3, ESP32-C6, RP2040, nRF52840.
The currently unsupported CircuitPython-compatible MCU families / CircuitPython platforms are: SAMD21, SAMD51, litex, mimxrt10xx, efr32, stm.
The MCU's that are currently unsupported are so because I either can't get my hands on a decent board with them or they don't have enough ram for ljinux.

The only real limiting factor should be ram, as about 70k (usable under circuitpython) are needed.
(If you have gotten it running on an unsupported board, feel free to pr)

Installation / Updating

Do note, installation using scripts, from windows is unsupported. Use a release .zip instead.
Though, if you are windows user, this project really isn't for you.
Don't even try from wsl. The scripts rely on mount points. They will just not detect any boards.

  1. Install a supported CircuitPython version onto the board.
    Detailed instructions regarding CircuitPython can be found here.
  2. Download the latest ljinux release for your board and extract it onto it.
    Or even better, if you wish to use the latest and greatest, clone this repository and from within the "source" folder, run make install with your board mounted.
    DO NOT run with -j!!!
    This command will automatically update the system files if they already exist.
    To only update the core files, run make kernel instead.
    If you only want to update the board extras, like drivers, run make extras instead.
    If you plan on loading the files remotely (via web/ble workflow), run make *your board.board_id* install instead.
    The files for you to copy will be created inside source/build_*your board.board_id*.
  3. (Optional) Copy over the packages you wish to install with jpkg, or install drivers with make.
    More info regarding packages in Packages
  4. Eject & powercycle the board
    When it's plugged back in, you can connect to it via serial.
    (You can use putty to connect to the board on Windows, Tio or GNU/Screen on Linux or MacOS)
    IMPORTANT NOTE: To make the board appear again as a usb drive on the host, run the ljinux command devmode

Packages

Some of ljinux's features are not bundled with this install.
You will have to install them seperately through the jpkg package manager.

You can find ljinux packages in the jpkg github topic.

Recommended packages:

Farland, the ljinux display manager: https://github.com/bill88t/ljinux-farland
SSD1306 display support: https://github.com/bill88t/ljinux-ssd1306
RubberDucky script support: https://github.com/bill88t/ljinux-ducky
Hashutils, md5 / sha commands: https://github.com/bill88t/ljinux-hashutils

Connection

To connect to the board it's recommended to use Putty for Windows and Tio for Linux/MacOS.

For Putty, select connection type to be Serial, select the port to be COMX where X is the number of the serial port allocated by the board and set the speed/baudrate to 115200.
(You can find which com port is allocated from within the Device Manager, it usually is COM3 or COM4)
(The baudrate may differ for your board, do not explicitly stick to 115200)

For Tio, if you are on linux, you need to be in the dialout or uucp user group and to connect, run: tio /dev/ttyACM0
If you are on a Mac instead, run: ls /dev/tty.usb* to find the device name, and connect to it by running: tio /dev/tty.usb<Device name here>
To disconnect, press Ctrl + t, q.
To be added to the dialout group, run sudo usermod -a -G dialout <your username here> and restart.

Directory structure

  • LjinuxRoot, the root filesystem for ljinux. It should be copied as is to the board.
  • rootfilesystem, the files needed in the root of the board. These should also be copied as is.
  • scripts, the files needed for compilation, and installation to a board. They should not be copied over,
  • source, the source files for ljinux and co. They should be compiled into .mpy files and put in /lib of the board.
  • packages, ljinux featured packages and preinstalled software, coming soon.
  • other, miscellaneous files

A complete Ljinux manual is available

https://github.com/bill88t/ljinux/blob/main/Manual.txt

Additional screenshots

less iwctl

Useful resources that helped with the development of this project

https://gist.github.com/fnky/458719343aabd01cfb17a3a4f7296797
https://en.wikipedia.org/wiki/ANSI_escape_code
https://github.com/todbot/circuitpython-tricks

About

A "linux" in python, for CircuitPython microcontrollers!

License:GNU General Public License v3.0


Languages

Language:Python 95.8%Language:Roff 2.2%Language:Makefile 0.9%Language:Shell 0.7%Language:HTML 0.4%