Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,13 @@ DISTRO ?= $(shell dirname $(RELEASE))
CODENAME ?= $(shell basename $(RELEASE))

FAB_ARCH := $(shell dpkg --print-architecture)
MIRROR ?= http://deb.debian.org/debian
ifeq ($(DISTRO), debian)
MIRROR ?= http://deb.debian.org/debian
else ifeq ($(DISTRO), ubuntu)
MIRROR ?= http://archive.ubuntu.com/ubuntu
else ifeq ($(MIRROR),)
$(error Distro '$(DISTRO)' not suported)
endif
VARIANT ?= minbase
EXTRA_PKGS ?= gpg,gpg-agent,ca-certificates
REMOVELIST ?= ./removelist
Expand Down
9 changes: 5 additions & 4 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,13 @@ About
=====

This project builds a Debian ``bootstrap`` for use as a base for
building TurnKey GNU/Linux appliances.
building TurnKey GNU/Linux appliances. It also supports building an
Ubuntu base. Please note that TurnKey is built on Debian, Ubuntu
support should be considered "second class".

A ``bootstrap`` is the minimal root filesystem in which packages can
be installed. As of v16.0 / Debian 10/Buster TurnKey uses a default
"minbase" variant Debian bootstrap, with the addition of a couple of
packages.
be installed. TurnKey uses a default "minbase" variant Debian bootstrap,
with the addition of a couple of packages.

For further info please run::

Expand Down