Training courses

Kernel and Embedded Linux

Bootlin training courses

Embedded Linux, kernel,
Yocto Project, Buildroot, real-time,
graphics, boot time, debugging...

Bootlin logo

Elixir Cross Referencer

#!/bin/sh
#
# Here is a generic script that makes a Sun3 boot tape using
# the files in ../binary
#
# $NetBSD: MakeInstTape,v 1.2.116.1 2019/11/17 07:04:34 martin Exp $

T=${1:-/dev/nrst0}

# Remember, skip "etc" for an upgrade.
sets="etc base comp games man misc rescue text"

# Entertain...
set -x

# Make sure we start at the beginning.
mt -f $T rewind

# Write each *.tgz file into a tape segment.
for f in $sets
do
  dd if=../../binary/sets/${f}.tgz of=$T obs=8k conv=sync
done

# Done!
mt -f $T rewind