Skip to content

2022-04-23-Release-Stable

Compare
Choose a tag to compare
@mgrouch mgrouch released this 24 Apr 14:07
· 147 commits to buster since this release

BBN Marine Linux OS for Raspberry Pi
2022-04-23-Release-Stable

NOTE: grafana is broken on this image. It is fixed in next release

Long Term Support Release 14.

Based on Buster. Upgrade of OpenCPN

Changes:

  • OpenCPN 5.6.2 and plugins
  • AvNav updates
  • RPI firmware updates
  • SignalK and few plugins updates
  • Added restic
  • Doc updates

Download at https://cloudsmith.io/~bbn-projects/repos/bbn-repo/packages/?q=lysmarine

Getting Started Guide: https://bareboat-necessities.github.io/my-bareboat/bareboat-os.html

Or you can use this script below to download it (faster) from github:



cpuArch="armhf"
zipName="lysmarine-bbn_2022-04-23-raspios-${cpuArch}.img.xz"
imageSource="https://github.com/bareboat-necessities/lysmarine_gen/releases/download/v2022-04-23/${zipName}"

# Download the official image
log "Downloading official image from internet."
myCache=.

prefix=$myCache/$zipName
{
  echo curl -k -L -o $prefix.part0 $imageSource.part0
  echo curl -k -L -o $prefix.part1 $imageSource.part1
  echo curl -k -L -o $prefix.part2 $imageSource.part2
  echo curl -k -L -o $prefix.part3 $imageSource.part3
  echo curl -k -L -o $prefix.part4 $imageSource.part4
  echo curl -k -L -o $prefix.part5 $imageSource.part5
} | xargs -L 1 -I CMD -P 6 bash -c CMD

cat $prefix.part? > $myCache/$zipName