aboutsummaryrefslogtreecommitdiff
path: root/configs/baseline/packages.x86_64
Commit message (Collapse)AuthorAgeFilesLines
* add optional pv toolSimon Wilper2021-05-141-0/+1
| | | | | use pv to give feedback on copying the airootfs to RAM when copytoram kernel parameter is given
* configs/*: add VM guest packages and enable their servicesnl67202021-05-111-0/+2
| | | | | | | * virtualbox-guest-utils-nox package and vboxservice.service for VirtualBox. * qemu-guest-agent package and qemu-guest-agent.service for QEMU & libvirt. Implements #118.
* add cloud-init to baselineMichael Vorburger2021-01-271-0/+1
|
* add SSH server to baselineMichael Vorburger2021-01-271-0/+1
| | | | inspired by https://wiki.archlinux.org/index.php/Archiso#Prepare_an_ISO_for_an_installation_via_SSH
* Install mkinitcpio-archiso-hooks in airootfs instead of copying the hooks ↵nl67202020-07-301-0/+1
| | | | from host
* Add license and basic documentationDavid Runge2020-07-291-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | LICENSE: Add GPL-3.0 license. {{archiso,configs}/*,.editorconfig,.gitlab-ci.yml}: Add SPDX license identifier. Makefile: Add SPDX license identifier. Install the `run_archiso.sh` script as global executable `run_archiso`. Use -D and -t flags to install to install files more generically (without a previous call to install the directory). README.rst: Add README outlining the project's scope, how to build images from the profiles and how to test. AUTHORS.rst: Add list of all direct contributors to the repository. CONTRIBUTING.rst: Add basic contribution guidelines, explaining the linter and the license in use. Closes #7 Closes #3
* Install all packages in one go and don't copy pacman.conf to airootfsnl67202020-07-281-0/+2
| | | | | | | | | configs/{baseline,releng}/build.sh: Copy custom files to airootfs before installing packages. Instead of calling `mkarchiso init`, list all required packages in packages.x86_64 and install them all at once with `mkarchiso install`. The mkdir command which `mkarchiso init` performs is now done by make_custom_airootfs. configs/releng/build.sh: Don't copy configs/releng/pacman.conf to airootfs, it is only meant to provide a unmodified pacman.conf durring pacstrap. In airootfs, an unmodified /etc/pacman.conf will be installed with the pacman package.
* Fix baseline profilenl67202020-07-281-0/+2
Install linux and mkinitcpio packages. Remove root user's password. Fixes https://bugs.archlinux.org/task/64236 .