Package- and image building tool for Kupfer Linux. Documentation: https://kupfer.gitlab.io/kupferbootstrap
Find a file
2023-04-16 05:23:31 +02:00
.vscode Add formatting 2021-08-08 18:24:56 +02:00
bin Make main.py the main entrypoint again and call docker wrapper enforcement from cli() callback 2021-09-26 17:19:30 +02:00
cache cache: move cache.py to new module cache/cli.py for uniformity 2022-11-09 20:19:04 +01:00
chroot packages/build: redirect output from stderr to stdout 2023-03-17 16:34:20 +01:00
config config/cli: use wrapper.execute_without_exit() for prompt_profile_{flavour,device}() to avoid prompting in docker 2023-04-16 03:37:22 +02:00
devices TEMP: WIP: add repo_config 2023-03-27 09:18:57 +02:00
distro distro: use repo_config properly 2023-04-16 03:31:35 +02:00
docs docs/versions: fix version selector being hidden behind TOC sidebar 2023-01-04 01:21:03 +01:00
exec exec/cmd: flatten_shell_script(): specifically quote empty strings even when shell_quote is disabled 2023-04-16 04:03:49 +02:00
flavours {devices,flavours}/cli: add --output-file for json dumping 2023-03-17 16:34:20 +01:00
image image/cli: improve help for cmd_inspect() 2023-04-16 05:23:31 +02:00
local/bin Dockerfile: clean up pkgconfig-aarch64 leftover 2022-11-09 19:39:59 +01:00
net implement explicit Optional type hints for =None parameters 2022-11-09 20:19:04 +01:00
packages packages/build: build_package(): source /etc/profile before building so PATH is complete 2023-04-16 04:03:49 +02:00
wrapper wrapper/docker: don't suppress docker build stdout when verbose enabled 2023-04-16 05:23:31 +02:00
.gitignore gitignore: add kate swap files 2023-04-16 04:03:49 +02:00
.gitlab-ci.yml gitlab-ci: override docker dind mtu 2023-04-16 05:23:31 +02:00
binfmt.py binfmt: refactor to support optionally working in Chroot 2022-12-07 15:04:14 +01:00
constants.py constants: add kupfer-config --user 2023-04-16 03:42:12 +02:00
dataclass.py dataclass: replace print spam with decent logging 2023-04-16 03:28:49 +02:00
Dockerfile CI: fix for docker buildx 2023-03-17 16:26:53 +01:00
format.sh add shellscript for running pytest, shellcheck *.sh 2022-08-17 00:50:20 +02:00
generator.py implement explicit Optional type hints for =None parameters 2022-11-09 20:19:04 +01:00
integration_tests.py packages/cli: add --switch-branch to cmd_init 2022-12-11 03:01:55 +01:00
LICENSE LICENSE: Add GPLv3 as was decided ages ago on Matrix. 2022-02-28 04:26:08 +01:00
logger.py logger: add --quiet flag to disable non-error logging 2023-03-17 16:34:20 +01:00
main.py main.py: announce force-enabling wrapper 2023-04-16 04:03:49 +02:00
progressbar.py progressbar: add ellipsize() 2023-03-17 16:34:20 +01:00
pytest.sh pytest: move coverage flags from .gitlab-ci.yml to pytest.sh, add test_requirements.txt for pip 2022-11-09 20:19:04 +01:00
README.md readme: point to online kupfer docs, use full config init instead of non-interactive 2022-11-09 20:19:04 +01:00
requirements.txt fixup! requirements.txt: add yaml 2023-03-27 19:49:14 +02:00
setup.cfg Add formatting 2021-08-08 18:24:56 +02:00
test_requirements.txt pytest: move coverage flags from .gitlab-ci.yml to pytest.sh, add test_requirements.txt for pip 2022-11-09 20:19:04 +01:00
tox.ini tox.ini: specify maximum line length 2022-08-08 02:49:16 +02:00
typecheck.sh typecheck: add --check-untyped-defs and fix some associated type errors 2022-11-09 20:19:04 +01:00
utils.py utils: add colors_supported() and color_str() for terminal colors 2023-03-17 16:34:20 +01:00
version.txt Initial commit 2021-08-04 18:36:37 +02:00
wrapper_su_helper.py wrapper_su_helper.py: tolerate non-unique uid 2023-04-16 04:03:49 +02:00

kupferbootstrap

Kupfer Linux bootstrapping tool - drives pacstrap, makepkg, chroot, mkfs and fastboot, just to name a few.

Documentation

Detailed docs for the main branch are available online at https://kupfer.gitlab.io/kupferbootstrap/

You can also build and view the docs locally:

cd docs/ && \
make && \
make serve

This will run a webserver on localhost:9999. Access it like firefox http://localhost:9999/

Installation

Install Docker, Python 3 with the libraries from requirements.txt and put bin/ into your PATH. Then use kupferbootstrap.

Quickstart

  1. Initialize config with defaults, configure your device and flavour: kupferbootstrap config init
  2. Build an image and packages along the way: kupferbootstrap image build

Development

Put dev into version.txt to always rebuild kupferboostrap from this directory and use kupferbootstrap as normal.