1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
# vim: filetype=sh
usage_and_exit()
{
echo "Usage: debootstick [options] <fs_tree_dir> <out_image_path>" >&2
exit $1
}
describe_os_support()
{
cat << EOF
This version of debootstick was tested successfully with the following kinds of
chroot-environments:
* 32-bit arm Raspberry Pi:
- Raspberry Pi OS (formerly "rasbian") bullseye
* 64-bit amd64 systems:
- Debian 13 (trixie) as of September 2nd, 2025
- Debian 12 (bookworm)
- Debian 11 (bullseye)
- Ubuntu 22.10 (kinetic)
- Ubuntu 22.04 LTS (jammy)
EOF
}
|