Skip to content

Releases: iglunix/iglunix

Installations

06 Apr 19:50
Compare
Choose a tag to compare
Installations Pre-release
Pre-release

First release with a working installer.

A broken installer

06 Apr 15:28
Compare
Choose a tag to compare
A broken installer Pre-release
Pre-release

A beta release for testing booting for disk images

WiFi on the Pi

20 Sep 20:00
Compare
Choose a tag to compare
WiFi on the Pi Pre-release
Pre-release

In order to boot you may need to add a /dev directory.

issues

  • rootfs is mounted as ro by default. no init script remounts the rootfs as rw, either
  • init scripts are missing and have to be copied from the git repo
  • /etc/group is missing
  • the sshd init scripts errors out, this is because it was made for dropbear and we have switched to OpenSSH

An ARM and a Leg

17 Jul 07:02
Compare
Choose a tag to compare
An ARM and a Leg Pre-release
Pre-release

This release provides Aarch64 support and a tarball for the raspberry pi.

To install partition an sdcard with a 512MiB boot partition, and the rest for root and format them with vfat and ext4 (or anything else) respectively then mount the sdcard in the following way.

# mount root partition to /mnt
mount /dev/mmcblk0p2 /mnt
mkdir /mnt/boot

# mount boot partition to /mnt/boot
mount /dev/mmcblk0p1 /mnt/boot

# extract the tarball
tar -xf path/to/iglunix/pi.tar -C /mnt

# beacuse this release is slightly broken
# the following must be done
mv /mnt/boot/broadcom/* /mnt/boot/
rmdir /mnt/boot/broadcom

mkdir /mnt/proc
mkdir /mnt/sys
mkdir /mnt/tmp
rm -r /mnt/dev/*

# set up the repo
mkdir /mnt/usr/src
git clone --depth=1 https://github.com/iglunix/iglunix /mnt/usr/src/iglunix

# if booting off a USB edit /mnt/boot/cmdline.txt to use the correct boot device

# then umount
umount /mnt/boot
umount /mnt

sync

Legal Instructions

07 May 19:39
47ec406
Compare
Choose a tag to compare
Legal Instructions Pre-release
Pre-release

Fixed some serious issues because I built some packages with -march=native. don't forget to run update-ca-certificates. Also includes a tarball making it easier to setup a chroot for those that want that.

Images

02 May 17:01
Compare
Choose a tag to compare
Images Pre-release
Pre-release

This is a pre-release and isn't meant for use in production. This is meant for people to experiment with Iglunix and try out the system for fun. Installing is a pain and we haven't got any documentation on that yet so have fun :^). We have the latest rust beta and the latest LLVM and the only GNU package is GNU Make.

In order to use curl you need to run update-ca-certficates on first boot.