mirror of
https://github.com/KDE/kde-linux.git
synced 2026-02-15 10:22:09 -05:00
17 lines
684 B
Bash
Executable File
17 lines
684 B
Bash
Executable File
#!/bin/sh
|
|
# SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
|
# SPDX-FileCopyrightText: 2024 Harald Sitter <sitter@kde.org>
|
|
|
|
# For bootstrapping of a basic arch system so it can build stuff.
|
|
|
|
set -ex
|
|
|
|
echo 'https://mirror.23m.com/archlinux/' > /etc/pacman.d/mirrorlist.new
|
|
cat /etc/pacman.d/mirrorlist >> /etc/pacman.d/mirrorlist.new
|
|
mv /etc/pacman.d/mirrorlist.new /etc/pacman.d/mirrorlist
|
|
|
|
pacman --sync --refresh --noconfirm archlinux-keyring
|
|
pacman --sync --refresh --noconfirm --sysupgrade
|
|
pacman --sync --refresh --noconfirm mkosi git base-devel ukify vim cpio tree \
|
|
rsync btrfs-progs s3cmd dosfstools qemu-img erofs-utils squashfs-tools
|