Compare commits
47 Commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
16fd97e2d3 | ||
![]() |
25808c8034 | ||
![]() |
d87aade54b | ||
![]() |
37aa3c1c65 | ||
![]() |
c870472267 | ||
![]() |
563e2bbc4a | ||
![]() |
6463779536 | ||
![]() |
8b98c6cac9 | ||
![]() |
a47c8e1a44 | ||
![]() |
c7cf6c05a0 | ||
![]() |
5c4406a19a | ||
![]() |
5a1105302a | ||
![]() |
6a376c8b65 | ||
![]() |
bfbbd12316 | ||
![]() |
c51d75acf0 | ||
![]() |
11ea38fe32 | ||
![]() |
55b9b69859 | ||
![]() |
d2ae040e45 | ||
![]() |
691c401251 | ||
![]() |
8861b9c8f8 | ||
![]() |
c74dda6e53 | ||
![]() |
da54be8ea2 | ||
![]() |
6551d66a99 | ||
![]() |
8ed2464c5f | ||
![]() |
f2006adfaa | ||
![]() |
fe3bd6296f | ||
![]() |
4ac466a83e | ||
![]() |
c76a29eaf7 | ||
![]() |
4b7ff99b98 | ||
![]() |
e034e965d3 | ||
![]() |
e4bb309841 | ||
![]() |
7d207257f7 | ||
![]() |
ec10df53b8 | ||
![]() |
d32d254632 | ||
![]() |
793721249a | ||
![]() |
acd9ee7e28 | ||
![]() |
c9337155e1 | ||
![]() |
8f1da6d4fb | ||
![]() |
1ab0e41426 | ||
![]() |
6f01896066 | ||
![]() |
cba60d97c6 | ||
![]() |
4ba2a309c0 | ||
![]() |
6193ad59b2 | ||
![]() |
b2c1c3288b | ||
![]() |
84242b79d0 | ||
![]() |
6039f88715 | ||
![]() |
54cb15f3a2 |
7
Makefile
7
Makefile
@@ -22,7 +22,7 @@ LIBS_BASE = \
|
|||||||
lib/util-fstab.sh
|
lib/util-fstab.sh
|
||||||
|
|
||||||
SHARED_BASE = \
|
SHARED_BASE = \
|
||||||
$(wildcard data/pacman-*.conf)
|
$(wildcard data/pacman*.conf)
|
||||||
|
|
||||||
LIST_IMPORT = \
|
LIST_IMPORT = \
|
||||||
$(wildcard data/import.list.d/*.list)
|
$(wildcard data/import.list.d/*.list)
|
||||||
@@ -42,7 +42,7 @@ LIBS_PKG = \
|
|||||||
$(wildcard lib/util-pkg*.sh)
|
$(wildcard lib/util-pkg*.sh)
|
||||||
|
|
||||||
SHARED_PKG = \
|
SHARED_PKG = \
|
||||||
$(wildcard data/makepkg-*.conf)
|
data/makepkg.conf
|
||||||
|
|
||||||
PATCHES = \
|
PATCHES = \
|
||||||
$(wildcard data/patches/*.patch)
|
$(wildcard data/patches/*.patch)
|
||||||
@@ -55,8 +55,7 @@ LIBS_ISO = \
|
|||||||
$(wildcard lib/util-iso*.sh)
|
$(wildcard lib/util-iso*.sh)
|
||||||
|
|
||||||
SHARED_ISO = \
|
SHARED_ISO = \
|
||||||
data/mkinitcpio.conf \
|
data/mkinitcpio.conf
|
||||||
data/linux.preset
|
|
||||||
|
|
||||||
CPIOHOOKS = \
|
CPIOHOOKS = \
|
||||||
$(wildcard initcpio/hooks/*)
|
$(wildcard initcpio/hooks/*)
|
||||||
|
@@ -26,24 +26,21 @@ prepare_build(){
|
|||||||
|
|
||||||
netgroups=${netgroups_url}/netgroups-${initsys}.yaml
|
netgroups=${netgroups_url}/netgroups-${initsys}.yaml
|
||||||
|
|
||||||
local pac_arch='default' pacman_conf pac_conf
|
local pacman_conf pac_file="pacman.conf"
|
||||||
[[ "${target_arch}" == 'x86_64' ]] && pac_arch='lib32'
|
|
||||||
|
|
||||||
if [[ ${stablility} == 'buildiso' ]];then
|
case "${stablility}" in
|
||||||
pac_conf=$pac_arch
|
'testing') pac_file="pacman-${stablility}.conf" ;;
|
||||||
else
|
esac
|
||||||
pac_conf=$pac_arch-${stablility}
|
|
||||||
fi
|
|
||||||
|
|
||||||
pacman_conf="${DATADIR}/pacman-$pac_conf.conf"
|
pacman_conf="${DATADIR}/$pac_file"
|
||||||
[[ -f $AT_USERCONFDIR/pacman-$pac_conf.conf ]] && pacman_conf="$AT_USERCONFDIR/pacman-$pac_conf.conf"
|
[[ -f $AT_USERCONFDIR/$pac_file ]] && pacman_conf="$AT_USERCONFDIR/$pac_file"
|
||||||
|
|
||||||
iso_file=$(gen_iso_fn).iso
|
iso_file=$(gen_iso_fn).iso
|
||||||
|
|
||||||
mkchroot_args+=(-C ${pacman_conf})
|
mkchroot_args+=(-C ${pacman_conf})
|
||||||
work_dir=${chroots_iso}/${profile}/${target_arch}
|
work_dir=${chroots_iso}/${profile}/${target_arch}
|
||||||
|
|
||||||
iso_dir="${cache_dir_iso}/${profile}"
|
iso_dir="${iso_pool}/${profile}"
|
||||||
|
|
||||||
iso_root=${chroots_iso}/${profile}/iso
|
iso_root=${chroots_iso}/${profile}/iso
|
||||||
mnt_dir=${chroots_iso}/${profile}/mnt
|
mnt_dir=${chroots_iso}/${profile}/mnt
|
||||||
@@ -75,10 +72,10 @@ display_settings(){
|
|||||||
|
|
||||||
msg "OPTIONS:"
|
msg "OPTIONS:"
|
||||||
msg2 "profile: %s" "${profile}"
|
msg2 "profile: %s" "${profile}"
|
||||||
msg2 "arch: %s" "${target_arch}"
|
|
||||||
msg2 "initsys: %s" "${initsys}"
|
msg2 "initsys: %s" "${initsys}"
|
||||||
msg2 "kernel: %s" "${kernel}"
|
msg2 "kernel: %s" "${kernel}"
|
||||||
[[ -n ${gpgkey} ]] && msg2 "gpgkey: %s" "${gpgkey}"
|
[[ -n ${gpgkey} ]] && msg2 "gpgkey: %s" "${gpgkey}"
|
||||||
|
msg2 "stablility: %s" "${stablility}"
|
||||||
|
|
||||||
msg "ARGS:"
|
msg "ARGS:"
|
||||||
msg2 "clean_first: %s" "${clean_first}"
|
msg2 "clean_first: %s" "${clean_first}"
|
||||||
@@ -146,11 +143,10 @@ stablility=${cmd##*-}
|
|||||||
usage() {
|
usage() {
|
||||||
echo "Usage: ${0##*/} [options]"
|
echo "Usage: ${0##*/} [options]"
|
||||||
echo " -p <profile> Profile [default: ${profile}]"
|
echo " -p <profile> Profile [default: ${profile}]"
|
||||||
echo " -a <arch> Arch [default: ${target_arch}]"
|
|
||||||
echo ' -r <dir> Chroots directory'
|
echo ' -r <dir> Chroots directory'
|
||||||
echo " [default: ${chroots_iso}]"
|
echo " [default: ${chroots_iso}]"
|
||||||
echo ' -t <dir> Target directory'
|
echo ' -t <dir> Target directory'
|
||||||
echo " [default: ${cache_dir_iso}]"
|
echo " [default: ${iso_pool}]"
|
||||||
echo ' -k <name> Kernel to use'
|
echo ' -k <name> Kernel to use'
|
||||||
echo " [default: ${kernel}]"
|
echo " [default: ${kernel}]"
|
||||||
echo ' -i <name> Init system to use'
|
echo ' -i <name> Init system to use'
|
||||||
@@ -172,14 +168,13 @@ usage() {
|
|||||||
|
|
||||||
orig_argv=("$0" "$@")
|
orig_argv=("$0" "$@")
|
||||||
|
|
||||||
opts='p:a:r:t:k:i:g:czxmvqh'
|
opts='p:r:t:k:i:g:czxmvqh'
|
||||||
|
|
||||||
while getopts "${opts}" arg; do
|
while getopts "${opts}" arg; do
|
||||||
case "${arg}" in
|
case "${arg}" in
|
||||||
p) profile="$OPTARG" ;;
|
p) profile="$OPTARG" ;;
|
||||||
a) target_arch="$OPTARG" ;;
|
|
||||||
r) chroots_iso="$OPTARG" ;;
|
r) chroots_iso="$OPTARG" ;;
|
||||||
t) cache_dir_iso="$OPTARG" ;;
|
t) iso_pool="$OPTARG" ;;
|
||||||
k) kernel="$OPTARG" ;;
|
k) kernel="$OPTARG" ;;
|
||||||
i) initsys="$OPTARG" ;;
|
i) initsys="$OPTARG" ;;
|
||||||
g) gpgkey="$OPTARG" ;;
|
g) gpgkey="$OPTARG" ;;
|
||||||
|
@@ -23,7 +23,6 @@ import ${LIBDIR}/util-chroot.sh
|
|||||||
import ${LIBDIR}/util-pkg.sh
|
import ${LIBDIR}/util-pkg.sh
|
||||||
|
|
||||||
show_pkg(){
|
show_pkg(){
|
||||||
check_build "$1"
|
|
||||||
cd $1
|
cd $1
|
||||||
source PKGBUILD
|
source PKGBUILD
|
||||||
for n in ${pkgname[@]}; do
|
for n in ${pkgname[@]}; do
|
||||||
@@ -37,7 +36,6 @@ display_settings(){
|
|||||||
show_config
|
show_config
|
||||||
|
|
||||||
msg "OPTIONS:"
|
msg "OPTIONS:"
|
||||||
msg2 "arch: %s" "${target_arch}"
|
|
||||||
msg2 "chroots_pkg: %s" "${chroots_pkg}"
|
msg2 "chroots_pkg: %s" "${chroots_pkg}"
|
||||||
msg2 "repository: %s" "${repository}"
|
msg2 "repository: %s" "${repository}"
|
||||||
msg2 "stablility: %s" "${stablility}"
|
msg2 "stablility: %s" "${stablility}"
|
||||||
@@ -57,6 +55,7 @@ load_config "${AT_USERCONFDIR}/artools.conf" || load_config "${SYSCONFDIR}/artoo
|
|||||||
|
|
||||||
create_first=false
|
create_first=false
|
||||||
pretend=false
|
pretend=false
|
||||||
|
lib32=false
|
||||||
|
|
||||||
mkchroot_args=()
|
mkchroot_args=()
|
||||||
mkchrootpkg_args=(-c -n)
|
mkchrootpkg_args=(-c -n)
|
||||||
@@ -70,27 +69,21 @@ repository=${PWD##*/}
|
|||||||
base_devel=('base-devel')
|
base_devel=('base-devel')
|
||||||
|
|
||||||
prepare_build(){
|
prepare_build(){
|
||||||
local pac_arch='default' pac_conf=
|
local pac_file='pacman.conf' mp_file='makepkg.conf'
|
||||||
|
|
||||||
if [[ "${target_arch}" == 'lib32' ]];then
|
case "${stablility}" in
|
||||||
pac_arch='lib32'
|
'testing') pac_file="pacman-${stablility}.conf" ;;
|
||||||
base_devel+=('multilib-devel')
|
esac
|
||||||
fi
|
|
||||||
|
|
||||||
if [[ ${stablility} == 'buildpkg' ]];then
|
${lib32} && base_devel+=('multilib-devel')
|
||||||
pac_conf=$pac_arch
|
|
||||||
else
|
|
||||||
pac_conf=$pac_arch-${stablility}
|
|
||||||
fi
|
|
||||||
|
|
||||||
[[ "$pac_arch" == 'lib32' ]] && target_arch='x86_64'
|
local pacman_conf="${DATADIR}/$pac_file"
|
||||||
|
[[ -f $AT_USERCONFDIR/$pac_file ]] && pacman_conf="$AT_USERCONFDIR/$pac_file"
|
||||||
|
|
||||||
local pacman_conf="${DATADIR}/pacman-$pac_conf.conf"
|
|
||||||
[[ -f $AT_USERCONFDIR/pacman-$pac_conf.conf ]] && pacman_conf="$AT_USERCONFDIR/pacman-$pac_conf.conf"
|
|
||||||
work_dir="${chroots_pkg}/${repository}-${target_arch}"
|
work_dir="${chroots_pkg}/${repository}-${target_arch}"
|
||||||
|
|
||||||
local makepkg_conf="${DATADIR}/makepkg-${target_arch}.conf"
|
local makepkg_conf="${DATADIR}/$mp_file"
|
||||||
[[ -f $AT_USERCONFDIR/makepkg-${target_arch}.conf ]] && makepkg_conf="$AT_USERCONFDIR/makepkg-${target_arch}.conf"
|
[[ -f $AT_USERCONFDIR/$mp_file ]] && makepkg_conf="$AT_USERCONFDIR/$mp_file"
|
||||||
|
|
||||||
mkchroot_args+=(-C "${pacman_conf}" -M "${makepkg_conf}" "${work_dir}/root")
|
mkchroot_args+=(-C "${pacman_conf}" -M "${makepkg_conf}" "${work_dir}/root")
|
||||||
|
|
||||||
@@ -114,10 +107,10 @@ build(){
|
|||||||
usage() {
|
usage() {
|
||||||
echo "Usage: ${0##*/} [options] -- [makepkg_args]"
|
echo "Usage: ${0##*/} [options] -- [makepkg_args]"
|
||||||
echo " -p <pkg> Package to build [default: ${package}]"
|
echo " -p <pkg> Package to build [default: ${package}]"
|
||||||
echo " -a <arch> Arch [default: ${target_arch}]"
|
|
||||||
echo " -r <dir> Chroots directory [default: ${chroots_pkg}]"
|
echo " -r <dir> Chroots directory [default: ${chroots_pkg}]"
|
||||||
echo ' -z <repo> Repo name'
|
echo ' -z <repo> Repo name'
|
||||||
echo ' -c Create root chroot'
|
echo ' -c Create root chroot'
|
||||||
|
echo ' -m Multilib chroot'
|
||||||
echo ' -q Query settings and pretend build'
|
echo ' -q Query settings and pretend build'
|
||||||
echo ' -h This help'
|
echo ' -h This help'
|
||||||
echo ''
|
echo ''
|
||||||
@@ -128,15 +121,15 @@ usage() {
|
|||||||
|
|
||||||
orig_argv=("$0" "$@")
|
orig_argv=("$0" "$@")
|
||||||
|
|
||||||
opts='p:a:r:z:cqh'
|
opts='p:r:z:cmqh'
|
||||||
|
|
||||||
while getopts "${opts}" arg; do
|
while getopts "${opts}" arg; do
|
||||||
case "${arg}" in
|
case "${arg}" in
|
||||||
p) package="$OPTARG" ;;
|
p) package="$OPTARG" ;;
|
||||||
a) target_arch="$OPTARG" ;;
|
|
||||||
r) chroots_pkg="$OPTARG" ;;
|
r) chroots_pkg="$OPTARG" ;;
|
||||||
z) repository="$OPTARG" ;;
|
z) repository="$OPTARG" ;;
|
||||||
c) create_first=true ;;
|
c) create_first=true ;;
|
||||||
|
m) lib32=true ;;
|
||||||
q) pretend=true ;;
|
q) pretend=true ;;
|
||||||
h|?) usage 0 ;;
|
h|?) usage 0 ;;
|
||||||
*) echo "invalid argument '%s'" "${arg}"; usage 1 ;;
|
*) echo "invalid argument '%s'" "${arg}"; usage 1 ;;
|
||||||
|
@@ -36,7 +36,7 @@ display_settings(){
|
|||||||
msg2 "arch: %s" "${arch}"
|
msg2 "arch: %s" "${arch}"
|
||||||
msg2 "compare: %s" "${compare}"
|
msg2 "compare: %s" "${compare}"
|
||||||
msg2 "import_arch: %s" "${import_arch}"
|
msg2 "import_arch: %s" "${import_arch}"
|
||||||
msg2 "gitpush: %s" "${gitpush}"
|
# msg2 "gitpush: %s" "${gitpush}"
|
||||||
|
|
||||||
msg "PATHS:"
|
msg "PATHS:"
|
||||||
msg2 "tree_dir_artix: %s" "${tree_dir_artix}"
|
msg2 "tree_dir_artix: %s" "${tree_dir_artix}"
|
||||||
@@ -53,7 +53,7 @@ arch=false
|
|||||||
artix=false
|
artix=false
|
||||||
compare=false
|
compare=false
|
||||||
import_arch=false
|
import_arch=false
|
||||||
gitpush=false
|
# gitpush=false
|
||||||
repository='system' #${PWD##*/}
|
repository='system' #${PWD##*/}
|
||||||
|
|
||||||
rsync_args=(-aWxvci --progress --delete-before --no-R --no-implied-dirs)
|
rsync_args=(-aWxvci --progress --delete-before --no-R --no-implied-dirs)
|
||||||
@@ -65,7 +65,7 @@ usage() {
|
|||||||
echo " -s Sync artix tree"
|
echo " -s Sync artix tree"
|
||||||
echo " -c Compare artix and arch versions"
|
echo " -c Compare artix and arch versions"
|
||||||
echo ' -i Import arch packages'
|
echo ' -i Import arch packages'
|
||||||
echo ' -p Push import packages'
|
# echo ' -p Push import packages'
|
||||||
echo ' -q Query settings'
|
echo ' -q Query settings'
|
||||||
echo ' -h This help'
|
echo ' -h This help'
|
||||||
echo ''
|
echo ''
|
||||||
@@ -75,7 +75,8 @@ usage() {
|
|||||||
|
|
||||||
orig_argv=("$0" "$@")
|
orig_argv=("$0" "$@")
|
||||||
|
|
||||||
opts='r:aipscqh'
|
# opts='r:aipscqh'
|
||||||
|
opts='r:aiscqh'
|
||||||
|
|
||||||
while getopts "${opts}" arg; do
|
while getopts "${opts}" arg; do
|
||||||
case "${arg}" in
|
case "${arg}" in
|
||||||
@@ -84,7 +85,7 @@ while getopts "${opts}" arg; do
|
|||||||
s) artix=true ;;
|
s) artix=true ;;
|
||||||
c) compare=true ;;
|
c) compare=true ;;
|
||||||
i) import_arch=true ;;
|
i) import_arch=true ;;
|
||||||
p) gitpush=true ;;
|
# p) gitpush=true ;;
|
||||||
q) pretend=true ;;
|
q) pretend=true ;;
|
||||||
h|?) usage 0 ;;
|
h|?) usage 0 ;;
|
||||||
*) echo "invalid argument '${arg}'"; usage 1 ;;
|
*) echo "invalid argument '${arg}'"; usage 1 ;;
|
||||||
@@ -105,4 +106,4 @@ ${arch} && sync_tree_arch
|
|||||||
|
|
||||||
${compare} && show_version_table "${repository}"
|
${compare} && show_version_table "${repository}"
|
||||||
|
|
||||||
${import_arch} && import_from_arch "${repository}" "${gitpush}"
|
${import_arch} && import_from_arch "${repository}" #"${gitpush}"
|
||||||
|
@@ -31,7 +31,7 @@ for repo in ${repo_tree_artix[@]}; do
|
|||||||
source $pkg/PKGBUILD 2>/dev/null
|
source $pkg/PKGBUILD 2>/dev/null
|
||||||
package=${pkg##*/}
|
package=${pkg##*/}
|
||||||
artixver=$(get_full_version $package)
|
artixver=$(get_full_version $package)
|
||||||
set_import_path "$repo" "$package"
|
src=$(get_import_path "$repo" "$package")
|
||||||
if [[ -f $src/PKGBUILD ]];then
|
if [[ -f $src/PKGBUILD ]];then
|
||||||
source $src/PKGBUILD 2>/dev/null
|
source $src/PKGBUILD 2>/dev/null
|
||||||
archver=$(get_full_version $package)
|
archver=$(get_full_version $package)
|
||||||
|
@@ -64,6 +64,13 @@ optstring_apply_quirks() {
|
|||||||
# one might install Arch from a Fedora environment), so let's remove it.
|
# one might install Arch from a Fedora environment), so let's remove it.
|
||||||
optstring_remove_option "$varname" seclabel
|
optstring_remove_option "$varname" seclabel
|
||||||
|
|
||||||
|
# Prune 'relatime' option for any pseudofs. This seems to be a rampant
|
||||||
|
# default which the kernel often exports even if the underlying filesystem
|
||||||
|
# doesn't support it. Example: https://bugs.archlinux.org/task/54554.
|
||||||
|
if awk -v fstype="$fstype" '$1 == fstype { exit 1 }' /proc/filesystems; then
|
||||||
|
optstring_remove_option "$varname" relatime
|
||||||
|
fi
|
||||||
|
|
||||||
case $fstype in
|
case $fstype in
|
||||||
f2fs)
|
f2fs)
|
||||||
# These are Kconfig options for f2fs. Kernels supporting the options will
|
# These are Kconfig options for f2fs. Kernels supporting the options will
|
||||||
|
@@ -2,9 +2,6 @@
|
|||||||
################ artools-base ###############
|
################ artools-base ###############
|
||||||
#############################################
|
#############################################
|
||||||
|
|
||||||
# default taget arch: auto detect
|
|
||||||
# target_arch=$(uname -m)
|
|
||||||
|
|
||||||
# build dir where buildpkg or buildiso chroots are created
|
# build dir where buildpkg or buildiso chroots are created
|
||||||
# chroots_dir=/var/lib/artools
|
# chroots_dir=/var/lib/artools
|
||||||
|
|
||||||
@@ -32,6 +29,9 @@
|
|||||||
################ artools-iso ################
|
################ artools-iso ################
|
||||||
#############################################
|
#############################################
|
||||||
|
|
||||||
|
# the iso storage directory
|
||||||
|
# iso_pool="${workspace_dir}/iso"
|
||||||
|
|
||||||
# the dist release; default: auto
|
# the dist release; default: auto
|
||||||
# iso_version=$(date +%Y%m%d)
|
# iso_version=$(date +%Y%m%d)
|
||||||
|
|
||||||
@@ -41,11 +41,14 @@
|
|||||||
# unset defaults to given value
|
# unset defaults to given value
|
||||||
# kernel="linux-lts"
|
# kernel="linux-lts"
|
||||||
|
|
||||||
|
# custom additional kernel args
|
||||||
|
# kernel_args=""
|
||||||
|
|
||||||
# gpg key; leave empty or commented to skip sfs signing
|
# gpg key; leave empty or commented to skip sfs signing
|
||||||
# gpgkey=""
|
# gpgkey=""
|
||||||
|
|
||||||
# set upload bandwidth limit in kB/s
|
# set upload bandwidth limit in kB/s
|
||||||
# limit=100
|
# uplimit=100
|
||||||
|
|
||||||
# the torrent tracker urls, comma separated
|
# the torrent tracker urls, comma separated
|
||||||
# tracker_url='udp://mirror.strits.dk:6969'
|
# tracker_url='udp://mirror.strits.dk:6969'
|
||||||
|
@@ -6,4 +6,3 @@ artix-live-portable-efi
|
|||||||
virtualbox-guest-modules-artix
|
virtualbox-guest-modules-artix
|
||||||
virtualbox-guest-utils
|
virtualbox-guest-utils
|
||||||
linux-lts-headers
|
linux-lts-headers
|
||||||
|
|
||||||
|
@@ -59,6 +59,7 @@ ntfs-3g
|
|||||||
>openrc nfs-utils-openrc
|
>openrc nfs-utils-openrc
|
||||||
>openrc rsync-openrc
|
>openrc rsync-openrc
|
||||||
>openrc wpa_supplicant-openrc
|
>openrc wpa_supplicant-openrc
|
||||||
|
>openrc opentmpfiles
|
||||||
os-prober
|
os-prober
|
||||||
pacman
|
pacman
|
||||||
pciutils
|
pciutils
|
||||||
@@ -77,7 +78,7 @@ texinfo
|
|||||||
usbutils
|
usbutils
|
||||||
util-linux
|
util-linux
|
||||||
which
|
which
|
||||||
>x86_64 efibootmgr
|
efibootmgr
|
||||||
xfsprogs
|
xfsprogs
|
||||||
zd1211-firmware
|
zd1211-firmware
|
||||||
zsh
|
zsh
|
||||||
|
@@ -1,20 +1,34 @@
|
|||||||
autoconf-archive
|
autoconf-archive
|
||||||
|
cmocka
|
||||||
confuse
|
confuse
|
||||||
|
dovecot
|
||||||
|
hub
|
||||||
|
hwinfo
|
||||||
|
jansson
|
||||||
libappindicator
|
libappindicator
|
||||||
|
libbson
|
||||||
|
libdbi
|
||||||
libdbusmenu
|
libdbusmenu
|
||||||
libftdi
|
libftdi
|
||||||
libindicator
|
libindicator
|
||||||
libdbi
|
|
||||||
libpgm
|
|
||||||
libsodium
|
|
||||||
zeromq
|
|
||||||
jansson
|
|
||||||
libnewt
|
|
||||||
libsass
|
|
||||||
sassc
|
|
||||||
libx86emu
|
|
||||||
hwinfo
|
|
||||||
yaml-cpp
|
|
||||||
libbson
|
|
||||||
libmongoc
|
libmongoc
|
||||||
cmocka
|
libnewt
|
||||||
|
libpgm
|
||||||
|
libreplaygain
|
||||||
|
libsass
|
||||||
|
libsodium
|
||||||
|
libx86emu
|
||||||
|
ninja
|
||||||
|
pigeonhole
|
||||||
|
portaudio
|
||||||
|
sassc
|
||||||
|
yaml-cpp
|
||||||
|
zeromq
|
||||||
|
acpi_call
|
||||||
|
r8168
|
||||||
|
tp_smapi
|
||||||
|
acpi_call-lts
|
||||||
|
r8168-lts
|
||||||
|
tp_smapi-lts
|
||||||
|
virtualbox
|
||||||
|
virtualbox-guest-iso
|
||||||
|
@@ -1,3 +1,2 @@
|
|||||||
lib32-glibc
|
lib32-fakeroot
|
||||||
gcc-multilib
|
lib32-libltdl
|
||||||
llvm
|
|
||||||
|
@@ -23,6 +23,7 @@ gdbm
|
|||||||
xz
|
xz
|
||||||
zlib
|
zlib
|
||||||
file
|
file
|
||||||
|
zstd
|
||||||
icu
|
icu
|
||||||
perl
|
perl
|
||||||
openssl
|
openssl
|
||||||
@@ -44,6 +45,7 @@ libgcrypt
|
|||||||
libgpg-error
|
libgpg-error
|
||||||
libgssglue
|
libgssglue
|
||||||
libidn
|
libidn
|
||||||
|
libidn2
|
||||||
libksba
|
libksba
|
||||||
libmnl
|
libmnl
|
||||||
libmpc
|
libmpc
|
||||||
@@ -53,6 +55,7 @@ libnl
|
|||||||
libpcap
|
libpcap
|
||||||
libpipeline
|
libpipeline
|
||||||
libpsl
|
libpsl
|
||||||
|
libidn2
|
||||||
librpcsecgss
|
librpcsecgss
|
||||||
libseccomp
|
libseccomp
|
||||||
libsecret
|
libsecret
|
||||||
@@ -96,7 +99,7 @@ iw
|
|||||||
jfsutils
|
jfsutils
|
||||||
kbd
|
kbd
|
||||||
keyutils
|
keyutils
|
||||||
licenses
|
#licenses
|
||||||
links
|
links
|
||||||
linux-atm
|
linux-atm
|
||||||
linux-firmware
|
linux-firmware
|
||||||
@@ -126,7 +129,7 @@ pth
|
|||||||
reiserfsprogs
|
reiserfsprogs
|
||||||
run-parts
|
run-parts
|
||||||
sdparm
|
sdparm
|
||||||
s-nail
|
# s-nail
|
||||||
sqlite
|
sqlite
|
||||||
sysfsutils
|
sysfsutils
|
||||||
syslinux
|
syslinux
|
||||||
@@ -149,3 +152,4 @@ ipw2200-fw
|
|||||||
isdn4k-utils
|
isdn4k-utils
|
||||||
curl
|
curl
|
||||||
sudo
|
sudo
|
||||||
|
argon2
|
||||||
|
@@ -1,48 +1,242 @@
|
|||||||
|
a52dec
|
||||||
|
aalib
|
||||||
|
adwaita-icon-theme
|
||||||
|
alsa-firmware
|
||||||
|
alsa-lib
|
||||||
|
#alsa-utils
|
||||||
|
apr
|
||||||
|
apr-util
|
||||||
|
aspell
|
||||||
|
assimp
|
||||||
|
atk
|
||||||
|
at-spi2-atk
|
||||||
|
at-spi2-core
|
||||||
|
babl
|
||||||
|
bc
|
||||||
|
boost
|
||||||
|
brltty
|
||||||
|
cairo
|
||||||
|
cantarell-fonts
|
||||||
|
cdparanoia
|
||||||
|
check
|
||||||
|
cifs-utils
|
||||||
|
cln
|
||||||
|
cmake
|
||||||
|
extra-cmake-modules
|
||||||
|
compositeproto
|
||||||
|
convertlit
|
||||||
|
cpio
|
||||||
|
damageproto
|
||||||
|
dbus-glib
|
||||||
|
dbus-python
|
||||||
|
dcadec
|
||||||
|
dconf
|
||||||
|
desktop-file-utils
|
||||||
|
dkms
|
||||||
|
docbook-dsssl
|
||||||
|
docbook-sgml31
|
||||||
|
docbook-utils
|
||||||
|
docbook-xml
|
||||||
|
docbook-xsl
|
||||||
|
dotconf
|
||||||
|
double-conversion
|
||||||
|
doxygen
|
||||||
|
ebook-tools
|
||||||
|
editorconfig-core-c
|
||||||
|
exiv2
|
||||||
|
faad2
|
||||||
|
ffmpeg
|
||||||
|
ffmpeg2.8
|
||||||
|
fftw
|
||||||
|
fixesproto
|
||||||
|
flac
|
||||||
|
fontconfig
|
||||||
|
fontsproto
|
||||||
|
freetype2
|
||||||
|
fribidi
|
||||||
|
fuse2
|
||||||
|
fuse3
|
||||||
|
gamin
|
||||||
|
gc
|
||||||
|
gcab
|
||||||
|
gconf
|
||||||
|
gcr
|
||||||
|
gd
|
||||||
|
gdb
|
||||||
|
gdk-pixbuf2
|
||||||
|
gegl02
|
||||||
|
ghostscript
|
||||||
|
giblib
|
||||||
|
giflib
|
||||||
|
glade
|
||||||
|
glib-networking
|
||||||
|
glu
|
||||||
|
gnome-common
|
||||||
|
gobject-introspection
|
||||||
|
gperf
|
||||||
|
gperftools
|
||||||
|
gptfdisk
|
||||||
|
grantlee
|
||||||
|
graphite
|
||||||
|
graphviz
|
||||||
|
gsettings-desktop-schemas
|
||||||
|
gsfonts
|
||||||
|
gsm
|
||||||
|
gst-plugins-base
|
||||||
|
gst-plugins-good
|
||||||
|
gstreamer
|
||||||
|
gtk2
|
||||||
|
gtk3
|
||||||
|
gtk-doc
|
||||||
|
gtksourceview3
|
||||||
|
gts
|
||||||
|
guile
|
||||||
|
guile2.0
|
||||||
|
harfbuzz
|
||||||
|
hicolor-icon-theme
|
||||||
|
hunspell
|
||||||
|
hyphen
|
||||||
|
ijs
|
||||||
|
ilmbase
|
||||||
|
imagemagick
|
||||||
|
imlib2
|
||||||
|
iniparser
|
||||||
|
inputproto
|
||||||
|
intltool
|
||||||
|
iso-codes
|
||||||
|
itstool
|
||||||
|
jack
|
||||||
|
jasper
|
||||||
|
java8-openjdk
|
||||||
|
java-common
|
||||||
|
jbig2dec
|
||||||
|
jemalloc
|
||||||
|
js
|
||||||
|
# json-c
|
||||||
|
jsoncpp
|
||||||
|
json-glib
|
||||||
|
kbproto
|
||||||
|
lame
|
||||||
|
lapack
|
||||||
|
lcms
|
||||||
|
lcms2
|
||||||
|
ldb
|
||||||
|
libaccounts-glib
|
||||||
|
libaccounts-qt
|
||||||
|
libao
|
||||||
|
libass
|
||||||
libasyncns
|
libasyncns
|
||||||
libblockdev
|
libatomic_ops
|
||||||
|
libavc1394
|
||||||
|
libbluray
|
||||||
|
libbsd
|
||||||
|
libburn
|
||||||
libbytesize
|
libbytesize
|
||||||
|
libcaca
|
||||||
|
libcanberra
|
||||||
libcap-ng
|
libcap-ng
|
||||||
|
libcddb
|
||||||
|
libcdio
|
||||||
|
libcdio-paranoia
|
||||||
|
# libconfig
|
||||||
libcroco
|
libcroco
|
||||||
|
libcue
|
||||||
libdaemon
|
libdaemon
|
||||||
libdatrie
|
libdatrie
|
||||||
|
libdbusmenu-qt
|
||||||
|
libdca
|
||||||
|
libdmtx
|
||||||
libdrm
|
libdrm
|
||||||
|
libdv
|
||||||
|
libdvbpsi
|
||||||
|
libdvdcss
|
||||||
|
libdvdnav
|
||||||
|
libdvdread
|
||||||
|
libebml
|
||||||
libepoxy
|
libepoxy
|
||||||
|
libevdev
|
||||||
libexif
|
libexif
|
||||||
libfontenc
|
libfontenc
|
||||||
|
libgee
|
||||||
|
libgit2
|
||||||
|
libglade
|
||||||
libglvnd
|
libglvnd
|
||||||
libgphoto2
|
libgphoto2
|
||||||
|
libgusb
|
||||||
libical
|
libical
|
||||||
libice
|
libice
|
||||||
|
libid3tag
|
||||||
|
libiec61883
|
||||||
libieee1284
|
libieee1284
|
||||||
libimobiledevice
|
libimobiledevice
|
||||||
libiscsi
|
libiscsi
|
||||||
|
libisoburn
|
||||||
|
libisofs
|
||||||
libjpeg-turbo
|
libjpeg-turbo
|
||||||
|
liblouis
|
||||||
|
liblqr
|
||||||
|
libmad
|
||||||
|
libmatroska
|
||||||
|
libmng
|
||||||
|
libmodplug
|
||||||
|
libmpeg2
|
||||||
|
libmspack
|
||||||
|
libmtp
|
||||||
|
libndp
|
||||||
|
libnotify
|
||||||
|
# libogg
|
||||||
libomxil-bellagio
|
libomxil-bellagio
|
||||||
libpaper
|
libpaper
|
||||||
libpciaccess
|
libpciaccess
|
||||||
libplist
|
libplist
|
||||||
libpng
|
libpng
|
||||||
libproxy
|
libproxy
|
||||||
|
libpwquality
|
||||||
|
libqalculate
|
||||||
|
libqmi
|
||||||
|
libraqm
|
||||||
|
# libraw1394
|
||||||
librsvg
|
librsvg
|
||||||
|
libsamplerate
|
||||||
|
libshout
|
||||||
|
libsigc++
|
||||||
|
libsigsegv
|
||||||
libsm
|
libsm
|
||||||
libthai
|
# libsndfile
|
||||||
|
libsoup
|
||||||
|
libsoxr
|
||||||
|
libspiro
|
||||||
|
libsrtp
|
||||||
|
libssh
|
||||||
|
libtar
|
||||||
|
# libthai
|
||||||
|
libtheora
|
||||||
libtiff
|
libtiff
|
||||||
|
libtommath
|
||||||
libtxc_dxtn
|
libtxc_dxtn
|
||||||
libunwind
|
libunwind
|
||||||
|
libupnp
|
||||||
libusb-compat
|
libusb-compat
|
||||||
libusbmuxd
|
libusbmuxd
|
||||||
|
libutempter
|
||||||
|
libuv
|
||||||
|
libva
|
||||||
|
libvdpau
|
||||||
|
libvisual
|
||||||
|
libvorbis
|
||||||
|
libvpx
|
||||||
libwebp
|
libwebp
|
||||||
|
libwmf
|
||||||
libx11
|
libx11
|
||||||
libxau
|
# libxau
|
||||||
libxaw
|
libxaw
|
||||||
libxcb
|
# libxcb
|
||||||
libxcomposite
|
libxcomposite
|
||||||
libxcursor
|
libxcursor
|
||||||
libxdamage
|
libxdamage
|
||||||
libxdmcp
|
# libxdmcp
|
||||||
libxext
|
libxext
|
||||||
libxfixes
|
libxfixes
|
||||||
libxfont
|
|
||||||
libxfont2
|
libxfont2
|
||||||
libxft
|
libxft
|
||||||
libxi
|
libxi
|
||||||
@@ -54,22 +248,132 @@ libxmu
|
|||||||
libxpm
|
libxpm
|
||||||
libxrandr
|
libxrandr
|
||||||
libxrender
|
libxrender
|
||||||
|
libxres
|
||||||
libxshmfence
|
libxshmfence
|
||||||
libxslt
|
libxslt
|
||||||
|
libxss
|
||||||
libxt
|
libxt
|
||||||
libxtst
|
libxtst
|
||||||
|
libxv
|
||||||
|
libxvmc
|
||||||
libxxf86vm
|
libxxf86vm
|
||||||
libgusb
|
libyaml
|
||||||
liblouis
|
libzip
|
||||||
libraqm
|
|
||||||
liblqr
|
|
||||||
libuv
|
|
||||||
libqmi
|
|
||||||
glib-networking
|
|
||||||
gsettings-desktop-schemas
|
|
||||||
slang
|
|
||||||
dbus-python
|
|
||||||
lirc
|
lirc
|
||||||
|
llvm
|
||||||
|
lmdb
|
||||||
|
lua
|
||||||
|
mesa
|
||||||
|
# meson
|
||||||
|
mailcap
|
||||||
|
mobile-broadband-provider-info
|
||||||
|
mtdev
|
||||||
|
muparser
|
||||||
|
musepack
|
||||||
|
namcap
|
||||||
|
nasm
|
||||||
|
network-manager-applet
|
||||||
|
noto-fonts
|
||||||
|
nss-mdns
|
||||||
|
ntfs-3g
|
||||||
|
# nvidia
|
||||||
|
# nvidia-settings
|
||||||
|
# nvidia-utils
|
||||||
|
ocl-icd
|
||||||
|
openal
|
||||||
|
opencore-amr
|
||||||
|
openexr
|
||||||
|
openjade
|
||||||
|
openjpeg
|
||||||
|
openjpeg2
|
||||||
|
opensp
|
||||||
|
opus
|
||||||
|
orc
|
||||||
|
orca
|
||||||
|
pango
|
||||||
|
parted
|
||||||
|
pcre2
|
||||||
|
perl-error
|
||||||
|
perl-file-which
|
||||||
|
perl-xml-parser
|
||||||
|
perl-yaml
|
||||||
|
phonon
|
||||||
|
phonon-gstreamer
|
||||||
|
pixman
|
||||||
|
polkit-qt
|
||||||
|
poppler
|
||||||
|
potrace
|
||||||
|
protobuf
|
||||||
|
pyalpm
|
||||||
|
pygobject
|
||||||
|
pygtk
|
||||||
|
# pylint
|
||||||
|
pyqt5
|
||||||
|
python
|
||||||
|
python2
|
||||||
|
# python2-backports
|
||||||
|
# python2-backports.functools_lru_cache
|
||||||
|
# python2-configparser
|
||||||
|
# python2-ipaddress
|
||||||
|
python-appdirs
|
||||||
|
python-asn1crypto
|
||||||
|
# python-astroid
|
||||||
|
python-attrs
|
||||||
|
# python-automat
|
||||||
|
python-beaker
|
||||||
|
python-cairo
|
||||||
|
# python-cffi
|
||||||
|
python-chardet
|
||||||
|
# python-constantly
|
||||||
|
# python-cryptography
|
||||||
|
python-cssselect
|
||||||
|
python-defusedxml
|
||||||
|
# python-editdistance
|
||||||
|
# python-egenix-mx-base
|
||||||
|
python-evdev
|
||||||
|
# python-feedparser
|
||||||
|
# python-fpconst
|
||||||
|
# python-gdata
|
||||||
|
# python-geoip
|
||||||
|
python-hyperlink
|
||||||
|
python-idna
|
||||||
|
# python-incremental
|
||||||
|
# python-isort
|
||||||
|
# python-iwscan
|
||||||
|
# python-lazy-object-proxy
|
||||||
|
# python-lxml
|
||||||
|
python-mako
|
||||||
|
python-markupsafe
|
||||||
|
# python-mccabe
|
||||||
|
# python-mpd
|
||||||
|
# python-nose
|
||||||
|
python-notify
|
||||||
|
python-numpy
|
||||||
|
python-packaging
|
||||||
|
python-pip
|
||||||
|
python-ply
|
||||||
|
python-pyasn1
|
||||||
|
# python-pyasn1-modules
|
||||||
|
# python-pycparser
|
||||||
|
# python-pycurl
|
||||||
|
python-pyelftools
|
||||||
|
# python-pygame
|
||||||
|
python-pyparsing
|
||||||
|
# python-rdflib
|
||||||
|
# python-requests
|
||||||
|
# python-retrying
|
||||||
|
# python-service-identity
|
||||||
|
python-setuptools
|
||||||
|
python-six
|
||||||
|
# python-soappy
|
||||||
|
# python-telepathy
|
||||||
|
# python-urllib3
|
||||||
|
python-urwid
|
||||||
|
python-virtualenv
|
||||||
|
# python-wpactrl
|
||||||
|
python-wrapt
|
||||||
|
# python-wstools
|
||||||
|
pyxdg
|
||||||
qt5-3d
|
qt5-3d
|
||||||
qt5-canvas3d
|
qt5-canvas3d
|
||||||
qt5-charts
|
qt5-charts
|
||||||
@@ -105,226 +409,117 @@ qt5-websockets
|
|||||||
qt5-webview
|
qt5-webview
|
||||||
qt5-x11extras
|
qt5-x11extras
|
||||||
qt5-xmlpatterns
|
qt5-xmlpatterns
|
||||||
adwaita-icon-theme
|
|
||||||
alsa-lib
|
|
||||||
apr
|
|
||||||
apr-util
|
|
||||||
atk
|
|
||||||
at-spi2-atk
|
|
||||||
at-spi2-core
|
|
||||||
boost
|
|
||||||
cairo
|
|
||||||
cantarell-fonts
|
|
||||||
check
|
|
||||||
compositeproto
|
|
||||||
damageproto
|
|
||||||
dbus-glib
|
|
||||||
dconf
|
|
||||||
desktop-file-utils
|
|
||||||
docbook-dsssl
|
|
||||||
docbook-sgml31
|
|
||||||
docbook-utils
|
|
||||||
docbook-xml
|
|
||||||
docbook-xsl
|
|
||||||
double-conversion
|
|
||||||
doxygen
|
|
||||||
eventlog
|
|
||||||
fixesproto
|
|
||||||
fontconfig
|
|
||||||
fontsproto
|
|
||||||
freetype2
|
|
||||||
gd
|
|
||||||
gdk-pixbuf2
|
|
||||||
ghostscript
|
|
||||||
giflib
|
|
||||||
gnome-common
|
|
||||||
gobject-introspection
|
|
||||||
gptfdisk
|
|
||||||
graphite
|
|
||||||
graphviz
|
|
||||||
gsfonts
|
|
||||||
gtk3
|
|
||||||
gtk-doc
|
|
||||||
gts
|
|
||||||
harfbuzz
|
|
||||||
hicolor-icon-theme
|
|
||||||
ijs
|
|
||||||
inputproto
|
|
||||||
intltool
|
|
||||||
itstool
|
|
||||||
jasper
|
|
||||||
jbig2dec
|
|
||||||
json-glib
|
|
||||||
kbproto
|
|
||||||
lcms2
|
|
||||||
mesa
|
|
||||||
mtdev
|
|
||||||
net-snmp
|
|
||||||
openjade
|
|
||||||
opensp
|
|
||||||
pango
|
|
||||||
parted
|
|
||||||
pcre2
|
|
||||||
perl-error
|
|
||||||
perl-xml-parser
|
|
||||||
perl-yaml
|
|
||||||
pixman
|
|
||||||
python2
|
|
||||||
python
|
|
||||||
python-appdirs
|
|
||||||
python-beaker
|
|
||||||
python-mako
|
|
||||||
python-markupsafe
|
|
||||||
python-packaging
|
|
||||||
python-pyparsing
|
|
||||||
python-setuptools
|
|
||||||
python-six
|
|
||||||
pyalpm
|
|
||||||
python-pyelftools
|
|
||||||
python-numpy
|
|
||||||
randrproto
|
randrproto
|
||||||
recordproto
|
recordproto
|
||||||
renderproto
|
renderproto
|
||||||
|
ruby
|
||||||
|
schroedinger
|
||||||
|
scrnsaverproto
|
||||||
|
sdl
|
||||||
|
sdl2
|
||||||
|
sdl_image
|
||||||
|
sdl_sound
|
||||||
serf
|
serf
|
||||||
sgml-common
|
sgml-common
|
||||||
shared-mime-info
|
shared-mime-info
|
||||||
|
slang
|
||||||
|
snappy
|
||||||
|
snowball
|
||||||
|
socat
|
||||||
source-highlight
|
source-highlight
|
||||||
|
speech-dispatcher
|
||||||
|
speex
|
||||||
speexdsp
|
speexdsp
|
||||||
|
startup-notification
|
||||||
|
t1lib
|
||||||
|
taglib
|
||||||
|
talloc
|
||||||
|
tcl
|
||||||
|
tdb
|
||||||
|
tevent
|
||||||
|
texlive-bin
|
||||||
|
texlive-core
|
||||||
|
texlive-formatsextra
|
||||||
|
texlive-latexextra
|
||||||
|
texlive-pictures
|
||||||
|
texlive-science
|
||||||
tslib
|
tslib
|
||||||
|
ttf-bitstream-vera
|
||||||
|
ttf-dejavu
|
||||||
|
ttf-hack
|
||||||
|
ttf-indic-otf
|
||||||
|
unixodbc
|
||||||
|
unzip
|
||||||
|
#usbmuxd
|
||||||
v4l-utils
|
v4l-utils
|
||||||
vala
|
vala
|
||||||
valgrind
|
valgrind
|
||||||
|
videoproto
|
||||||
|
vid.stab
|
||||||
volume_key
|
volume_key
|
||||||
vte3
|
|
||||||
vte
|
vte
|
||||||
|
vte3
|
||||||
|
wavpack
|
||||||
wayland
|
wayland
|
||||||
wayland-protocols
|
wayland-protocols
|
||||||
xcb-proto
|
webrtc-audio-processing
|
||||||
xcb-util
|
wget
|
||||||
xcb-util-image
|
whois
|
||||||
xcb-util-keysyms
|
wxgtk
|
||||||
xcb-util-renderutil
|
x265
|
||||||
xcb-util-wm
|
xapian-core
|
||||||
|
xbitmaps
|
||||||
|
# xcb-proto
|
||||||
|
# xcb-util
|
||||||
|
xcb-util-cursor
|
||||||
|
# xcb-util-image
|
||||||
|
# xcb-util-keysyms
|
||||||
|
# xcb-util-renderutil
|
||||||
|
# xcb-util-wm
|
||||||
|
xdg-utils
|
||||||
xextproto
|
xextproto
|
||||||
|
xf86-input-libinput
|
||||||
|
xf86-video-dummy
|
||||||
|
xf86-video-fbdev
|
||||||
|
xf86-video-sisusb
|
||||||
|
xf86-video-vesa
|
||||||
|
xf86-video-vmware
|
||||||
|
xf86-video-voodoo
|
||||||
xf86vidmodeproto
|
xf86vidmodeproto
|
||||||
xineramaproto
|
xineramaproto
|
||||||
xkeyboard-config
|
xkeyboard-config
|
||||||
|
xmlto
|
||||||
xorg-bdftopcf
|
xorg-bdftopcf
|
||||||
xorg-fonts-alias
|
xorg-fonts-alias
|
||||||
xorg-fonts-encodings
|
xorg-fonts-encodings
|
||||||
xorg-fonts-misc
|
xorg-fonts-misc
|
||||||
xorg-font-util
|
xorg-font-util
|
||||||
xorg-font-utils
|
xorg-font-utils
|
||||||
|
xorg-luit
|
||||||
xorg-mkfontdir
|
xorg-mkfontdir
|
||||||
xorg-mkfontscale
|
xorg-mkfontscale
|
||||||
xorg-setxkbmap
|
xorg-setxkbmap
|
||||||
|
xorg-twm
|
||||||
|
xorg-util-macros
|
||||||
|
xorg-xauth
|
||||||
|
xorg-xinit
|
||||||
xorg-xkbcomp
|
xorg-xkbcomp
|
||||||
xproto
|
xorg-xmessage
|
||||||
|
xorg-xmodmap
|
||||||
|
xorg-xprop
|
||||||
|
xorg-xrandr
|
||||||
|
xorg-xrdb
|
||||||
|
xorg-xset
|
||||||
|
xorg-xsetroot
|
||||||
|
# xproto
|
||||||
|
xterm
|
||||||
|
xvidcore
|
||||||
|
yajl
|
||||||
yelp-tools
|
yelp-tools
|
||||||
yelp-xsl
|
yelp-xsl
|
||||||
cmake
|
zip
|
||||||
jemalloc
|
|
||||||
jsoncpp
|
|
||||||
fribidi
|
|
||||||
js
|
|
||||||
imagemagick
|
|
||||||
poppler
|
|
||||||
bc
|
|
||||||
xdg-utils
|
|
||||||
xf86-input-libinput
|
|
||||||
assimp
|
|
||||||
cdparanoia
|
|
||||||
cifs-utils
|
|
||||||
ffmpeg
|
|
||||||
flac
|
|
||||||
gamin
|
|
||||||
gcab
|
|
||||||
giblib
|
|
||||||
gsm
|
|
||||||
gst-plugins-base
|
|
||||||
gstreamer
|
|
||||||
gtk2
|
|
||||||
hunspell
|
|
||||||
hyphen
|
|
||||||
imlib2
|
|
||||||
iniparser
|
|
||||||
iso-codes
|
|
||||||
jack
|
|
||||||
lame
|
|
||||||
ldb
|
|
||||||
libass
|
|
||||||
libavc1394
|
|
||||||
libbluray
|
|
||||||
libbsd
|
|
||||||
libevdev
|
|
||||||
libgee
|
|
||||||
libid3tag
|
|
||||||
libiec61883
|
|
||||||
libmng
|
|
||||||
libmodplug
|
|
||||||
libndp
|
|
||||||
libnotify
|
|
||||||
libogg
|
|
||||||
libraw1394
|
|
||||||
libsamplerate
|
|
||||||
libsigsegv
|
|
||||||
libsndfile
|
|
||||||
libsoup
|
|
||||||
libsoxr
|
|
||||||
libsrtp
|
|
||||||
libssh
|
|
||||||
libteam
|
|
||||||
libtheora
|
|
||||||
libva
|
|
||||||
libvdpau
|
|
||||||
libvisual
|
|
||||||
libvorbis
|
|
||||||
libvpx
|
|
||||||
libxss
|
|
||||||
libxv
|
|
||||||
libxvmc
|
|
||||||
libyaml
|
|
||||||
ocl-icd
|
|
||||||
openal
|
|
||||||
opencore-amr
|
|
||||||
openjpeg2
|
|
||||||
opus
|
|
||||||
orc
|
|
||||||
perl-file-which
|
|
||||||
potrace
|
|
||||||
protobuf
|
|
||||||
scrnsaverproto
|
|
||||||
sdl2
|
|
||||||
snappy
|
|
||||||
speex
|
|
||||||
t1lib
|
|
||||||
talloc
|
|
||||||
tdb
|
|
||||||
tevent
|
|
||||||
texlive-bin
|
|
||||||
texlive-core
|
|
||||||
texlive-latexextra
|
|
||||||
ttf-dejavu
|
|
||||||
usbmuxd
|
|
||||||
videoproto
|
|
||||||
vid.stab
|
|
||||||
webrtc-audio-processing
|
|
||||||
x265
|
|
||||||
xorg-xauth
|
|
||||||
xorg-xset
|
|
||||||
xvidcore
|
|
||||||
zita-alsa-pcmi
|
zita-alsa-pcmi
|
||||||
zita-resampler
|
zita-resampler
|
||||||
|
zsh
|
||||||
|
zvbi
|
||||||
zziplib
|
zziplib
|
||||||
xmlto
|
|
||||||
namcap
|
|
||||||
unzip
|
|
||||||
zip
|
|
||||||
gperf
|
|
||||||
gperftools
|
|
||||||
double-conversion
|
|
||||||
lapack
|
|
||||||
texlive-formatsextra
|
|
||||||
texlive-pictures
|
|
||||||
texlive-science
|
|
||||||
nasm
|
|
||||||
|
@@ -1,14 +0,0 @@
|
|||||||
# mkinitcpio preset file for the 'linux' package
|
|
||||||
|
|
||||||
ALL_config="/etc/mkinitcpio.conf"
|
|
||||||
ALL_kver="/boot/vmlinuz-@kernel@-@arch@"
|
|
||||||
|
|
||||||
PRESETS=('default' 'fallback')
|
|
||||||
|
|
||||||
#default_config="/etc/mkinitcpio.conf"
|
|
||||||
default_image="/boot/initramfs-@kernel@-@arch@.img"
|
|
||||||
#default_options=""
|
|
||||||
|
|
||||||
#fallback_config="/etc/mkinitcpio.conf"
|
|
||||||
fallback_image="/boot/initramfs-@kernel@-@arch@-fallback.img"
|
|
||||||
fallback_options="-S autodetect"
|
|
@@ -1,147 +0,0 @@
|
|||||||
#
|
|
||||||
# /etc/makepkg.conf
|
|
||||||
#
|
|
||||||
|
|
||||||
#########################################################################
|
|
||||||
# SOURCE ACQUISITION
|
|
||||||
#########################################################################
|
|
||||||
#
|
|
||||||
#-- The download utilities that makepkg should use to acquire sources
|
|
||||||
# Format: 'protocol::agent'
|
|
||||||
DLAGENTS=('ftp::/usr/bin/curl -fC - --ftp-pasv --retry 3 --retry-delay 3 -o %o %u'
|
|
||||||
'http::/usr/bin/curl -fLC - --retry 3 --retry-delay 3 -o %o %u'
|
|
||||||
'https::/usr/bin/curl -fLC - --retry 3 --retry-delay 3 -o %o %u'
|
|
||||||
'rsync::/usr/bin/rsync --no-motd -z %u %o'
|
|
||||||
'scp::/usr/bin/scp -C %u %o')
|
|
||||||
|
|
||||||
# Other common tools:
|
|
||||||
# /usr/bin/snarf
|
|
||||||
# /usr/bin/lftpget -c
|
|
||||||
# /usr/bin/wget
|
|
||||||
|
|
||||||
#-- The package required by makepkg to download VCS sources
|
|
||||||
# Format: 'protocol::package'
|
|
||||||
VCSCLIENTS=('bzr::bzr'
|
|
||||||
'git::git'
|
|
||||||
'hg::mercurial'
|
|
||||||
'svn::subversion')
|
|
||||||
|
|
||||||
#########################################################################
|
|
||||||
# ARCHITECTURE, COMPILE FLAGS
|
|
||||||
#########################################################################
|
|
||||||
#
|
|
||||||
CARCH="i686"
|
|
||||||
CHOST="i686-pc-linux-gnu"
|
|
||||||
|
|
||||||
#-- Compiler and Linker Flags
|
|
||||||
# -march (or -mcpu) builds exclusively for an architecture
|
|
||||||
# -mtune optimizes for an architecture, but builds for whole processor family
|
|
||||||
CPPFLAGS="-D_FORTIFY_SOURCE=2"
|
|
||||||
CFLAGS="-march=i686 -mtune=generic -O2 -pipe -fstack-protector-strong -fno-plt"
|
|
||||||
CXXFLAGS="-march=i686 -mtune=generic -O2 -pipe -fstack-protector-strong -fno-plt"
|
|
||||||
LDFLAGS="-Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now"
|
|
||||||
#-- Make Flags: change this for DistCC/SMP systems
|
|
||||||
#MAKEFLAGS="-j2"
|
|
||||||
#-- Debugging flags
|
|
||||||
DEBUG_CFLAGS="-g -fvar-tracking-assignments"
|
|
||||||
DEBUG_CXXFLAGS="-g -fvar-tracking-assignments"
|
|
||||||
|
|
||||||
#########################################################################
|
|
||||||
# BUILD ENVIRONMENT
|
|
||||||
#########################################################################
|
|
||||||
#
|
|
||||||
# Defaults: BUILDENV=(!distcc color !ccache check !sign)
|
|
||||||
# A negated environment option will do the opposite of the comments below.
|
|
||||||
#
|
|
||||||
#-- distcc: Use the Distributed C/C++/ObjC compiler
|
|
||||||
#-- color: Colorize output messages
|
|
||||||
#-- ccache: Use ccache to cache compilation
|
|
||||||
#-- check: Run the check() function if present in the PKGBUILD
|
|
||||||
#-- sign: Generate PGP signature file
|
|
||||||
#
|
|
||||||
BUILDENV=(!distcc color !ccache check !sign)
|
|
||||||
#
|
|
||||||
#-- If using DistCC, your MAKEFLAGS will also need modification. In addition,
|
|
||||||
#-- specify a space-delimited list of hosts running in the DistCC cluster.
|
|
||||||
#DISTCC_HOSTS=""
|
|
||||||
#
|
|
||||||
#-- Specify a directory for package building.
|
|
||||||
#BUILDDIR=/tmp/makepkg
|
|
||||||
|
|
||||||
#########################################################################
|
|
||||||
# GLOBAL PACKAGE OPTIONS
|
|
||||||
# These are default values for the options=() settings
|
|
||||||
#########################################################################
|
|
||||||
#
|
|
||||||
# Default: OPTIONS=(strip docs !libtool !staticlibs emptydirs zipman purge !optipng !upx !debug)
|
|
||||||
# A negated option will do the opposite of the comments below.
|
|
||||||
#
|
|
||||||
#-- strip: Strip symbols from binaries/libraries
|
|
||||||
#-- docs: Save doc directories specified by DOC_DIRS
|
|
||||||
#-- libtool: Leave libtool (.la) files in packages
|
|
||||||
#-- staticlibs: Leave static library (.a) files in packages
|
|
||||||
#-- emptydirs: Leave empty directories in packages
|
|
||||||
#-- zipman: Compress manual (man and info) pages in MAN_DIRS with gzip
|
|
||||||
#-- purge: Remove files specified by PURGE_TARGETS
|
|
||||||
#-- upx: Compress binary executable files using UPX
|
|
||||||
#-- optipng: Optimize PNG images with optipng
|
|
||||||
#-- debug: Add debugging flags as specified in DEBUG_* variables
|
|
||||||
#
|
|
||||||
OPTIONS=(strip docs !libtool !staticlibs emptydirs zipman purge !optipng !upx !debug)
|
|
||||||
|
|
||||||
#-- File integrity checks to use. Valid: md5, sha1, sha256, sha384, sha512
|
|
||||||
INTEGRITY_CHECK=(md5)
|
|
||||||
#-- Options to be used when stripping binaries. See `man strip' for details.
|
|
||||||
STRIP_BINARIES="--strip-all"
|
|
||||||
#-- Options to be used when stripping shared libraries. See `man strip' for details.
|
|
||||||
STRIP_SHARED="--strip-unneeded"
|
|
||||||
#-- Options to be used when stripping static libraries. See `man strip' for details.
|
|
||||||
STRIP_STATIC="--strip-debug"
|
|
||||||
#-- Manual (man and info) directories to compress (if zipman is specified)
|
|
||||||
MAN_DIRS=({usr{,/local}{,/share},opt/*}/{man,info})
|
|
||||||
#-- Doc directories to remove (if !docs is specified)
|
|
||||||
DOC_DIRS=(usr/{,local/}{,share/}{doc,gtk-doc} opt/*/{doc,gtk-doc})
|
|
||||||
#-- Files to be removed from all packages (if purge is specified)
|
|
||||||
PURGE_TARGETS=(usr/{,share}/info/dir .packlist *.pod)
|
|
||||||
|
|
||||||
#########################################################################
|
|
||||||
# PACKAGE OUTPUT
|
|
||||||
#########################################################################
|
|
||||||
#
|
|
||||||
# Default: put built package and cached source in build directory
|
|
||||||
#
|
|
||||||
#-- Destination: specify a fixed directory where all packages will be placed
|
|
||||||
#PKGDEST=/home/packages
|
|
||||||
#-- Source cache: specify a fixed directory where source files will be cached
|
|
||||||
#SRCDEST=/home/sources
|
|
||||||
#-- Source packages: specify a fixed directory where all src packages will be placed
|
|
||||||
#SRCPKGDEST=/home/srcpackages
|
|
||||||
#-- Log files: specify a fixed directory where all log files will be placed
|
|
||||||
#LOGDEST=/home/makepkglogs
|
|
||||||
#-- Packager: name/email of the person or organization building packages
|
|
||||||
#PACKAGER="John Doe <john@doe.com>"
|
|
||||||
#-- Specify a key to use for package signing
|
|
||||||
#GPGKEY=""
|
|
||||||
|
|
||||||
#########################################################################
|
|
||||||
# COMPRESSION DEFAULTS
|
|
||||||
#########################################################################
|
|
||||||
#
|
|
||||||
COMPRESSGZ=(gzip -c -f -n)
|
|
||||||
COMPRESSBZ2=(bzip2 -c -f)
|
|
||||||
COMPRESSXZ=(xz -c -z -)
|
|
||||||
COMPRESSLRZ=(lrzip -q)
|
|
||||||
COMPRESSLZO=(lzop -q)
|
|
||||||
COMPRESSZ=(compress -c -f)
|
|
||||||
|
|
||||||
#########################################################################
|
|
||||||
# EXTENSION DEFAULTS
|
|
||||||
#########################################################################
|
|
||||||
#
|
|
||||||
# WARNING: Do NOT modify these variables unless you know what you are
|
|
||||||
# doing.
|
|
||||||
#
|
|
||||||
PKGEXT='.pkg.tar.xz'
|
|
||||||
SRCEXT='.src.tar.gz'
|
|
||||||
|
|
||||||
# vim: set ft=sh ts=2 sw=2 et:
|
|
@@ -1,101 +0,0 @@
|
|||||||
#
|
|
||||||
# /etc/pacman.conf
|
|
||||||
#
|
|
||||||
# See the pacman.conf(5) manpage for option and repository directives
|
|
||||||
|
|
||||||
#
|
|
||||||
# GENERAL OPTIONS
|
|
||||||
#
|
|
||||||
[options]
|
|
||||||
# The following paths are commented out with their default values listed.
|
|
||||||
# If you wish to use different paths, uncomment and update the paths.
|
|
||||||
#RootDir = /
|
|
||||||
#DBPath = /var/lib/pacman/
|
|
||||||
#CacheDir = /var/cache/pacman/pkg/
|
|
||||||
#LogFile = /var/log/pacman.log
|
|
||||||
#GPGDir = /etc/pacman.d/gnupg/
|
|
||||||
#HookDir = /etc/pacman.d/hooks/
|
|
||||||
HoldPkg = pacman glibc
|
|
||||||
#XferCommand = /usr/bin/curl -C - -f %u > %o
|
|
||||||
#XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
|
|
||||||
#CleanMethod = KeepInstalled
|
|
||||||
#UseDelta = 0.7
|
|
||||||
Architecture = auto
|
|
||||||
|
|
||||||
# Pacman won't upgrade packages listed in IgnorePkg and members of IgnoreGroup
|
|
||||||
#IgnorePkg =
|
|
||||||
#IgnoreGroup =
|
|
||||||
|
|
||||||
#NoUpgrade =
|
|
||||||
#NoExtract =
|
|
||||||
|
|
||||||
# Misc options
|
|
||||||
#UseSyslog
|
|
||||||
#Color
|
|
||||||
#TotalDownload
|
|
||||||
CheckSpace
|
|
||||||
#VerbosePkgLists
|
|
||||||
|
|
||||||
# By default, pacman accepts packages signed by keys that its local keyring
|
|
||||||
# trusts (see pacman-key and its man page), as well as unsigned packages.
|
|
||||||
SigLevel = Required DatabaseOptional
|
|
||||||
LocalFileSigLevel = Optional
|
|
||||||
#RemoteFileSigLevel = Required
|
|
||||||
|
|
||||||
# NOTE: You must run `pacman-key --init` before first using pacman; the local
|
|
||||||
# keyring can then be populated with the keys of all official Artix Linux
|
|
||||||
# packagers with `pacman-key --populate archlinux cromnix`.
|
|
||||||
|
|
||||||
#
|
|
||||||
# REPOSITORIES
|
|
||||||
# - can be defined here or included from another file
|
|
||||||
# - pacman will search repositories in the order defined here
|
|
||||||
# - local/custom mirrors can be added here or in separate files
|
|
||||||
# - repositories listed first will take precedence when packages
|
|
||||||
# have identical names, regardless of version number
|
|
||||||
# - URLs will have $repo replaced by the name of the current repo
|
|
||||||
# - URLs will have $arch replaced by the name of the architecture
|
|
||||||
#
|
|
||||||
# Repository entries are of the format:
|
|
||||||
# [repo-name]
|
|
||||||
# Server = ServerName
|
|
||||||
# Include = IncludePath
|
|
||||||
#
|
|
||||||
# The header [repo-name] is crucial - it must be present and
|
|
||||||
# uncommented to enable the repo.
|
|
||||||
|
|
||||||
[system-testing]
|
|
||||||
Include = /etc/pacman.d/mirrorlist
|
|
||||||
|
|
||||||
[system]
|
|
||||||
Include = /etc/pacman.d/mirrorlist
|
|
||||||
|
|
||||||
[world-testing]
|
|
||||||
Include = /etc/pacman.d/mirrorlist
|
|
||||||
|
|
||||||
[world]
|
|
||||||
Include = /etc/pacman.d/mirrorlist
|
|
||||||
|
|
||||||
[galaxy-testing]
|
|
||||||
Include = /etc/pacman.d/mirrorlist
|
|
||||||
|
|
||||||
[galaxy]
|
|
||||||
Include = /etc/pacman.d/mirrorlist
|
|
||||||
|
|
||||||
# An example of a custom package repository. See the pacman manpage for
|
|
||||||
# tips on creating your own repositories.
|
|
||||||
#[custom]
|
|
||||||
#SigLevel = Optional TrustAll
|
|
||||||
#Server = file:///home/custompkgs
|
|
||||||
|
|
||||||
[testing]
|
|
||||||
Include = /etc/pacman.d/mirrorlist-arch
|
|
||||||
|
|
||||||
[extra]
|
|
||||||
Include = /etc/pacman.d/mirrorlist-arch
|
|
||||||
|
|
||||||
[community-testing]
|
|
||||||
Include = /etc/pacman.d/mirrorlist-arch
|
|
||||||
|
|
||||||
[community]
|
|
||||||
Include = /etc/pacman.d/mirrorlist-arch
|
|
@@ -1,86 +0,0 @@
|
|||||||
#
|
|
||||||
# /etc/pacman.conf
|
|
||||||
#
|
|
||||||
# See the pacman.conf(5) manpage for option and repository directives
|
|
||||||
|
|
||||||
#
|
|
||||||
# GENERAL OPTIONS
|
|
||||||
#
|
|
||||||
[options]
|
|
||||||
# The following paths are commented out with their default values listed.
|
|
||||||
# If you wish to use different paths, uncomment and update the paths.
|
|
||||||
#RootDir = /
|
|
||||||
#DBPath = /var/lib/pacman/
|
|
||||||
#CacheDir = /var/cache/pacman/pkg/
|
|
||||||
#LogFile = /var/log/pacman.log
|
|
||||||
#GPGDir = /etc/pacman.d/gnupg/
|
|
||||||
#HookDir = /etc/pacman.d/hooks/
|
|
||||||
HoldPkg = pacman glibc
|
|
||||||
#XferCommand = /usr/bin/curl -C - -f %u > %o
|
|
||||||
#XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
|
|
||||||
#CleanMethod = KeepInstalled
|
|
||||||
#UseDelta = 0.7
|
|
||||||
Architecture = auto
|
|
||||||
|
|
||||||
# Pacman won't upgrade packages listed in IgnorePkg and members of IgnoreGroup
|
|
||||||
#IgnorePkg =
|
|
||||||
#IgnoreGroup =
|
|
||||||
|
|
||||||
#NoUpgrade =
|
|
||||||
#NoExtract =
|
|
||||||
|
|
||||||
# Misc options
|
|
||||||
#UseSyslog
|
|
||||||
#Color
|
|
||||||
#TotalDownload
|
|
||||||
CheckSpace
|
|
||||||
#VerbosePkgLists
|
|
||||||
|
|
||||||
# By default, pacman accepts packages signed by keys that its local keyring
|
|
||||||
# trusts (see pacman-key and its man page), as well as unsigned packages.
|
|
||||||
SigLevel = Required DatabaseOptional
|
|
||||||
LocalFileSigLevel = Optional
|
|
||||||
#RemoteFileSigLevel = Required
|
|
||||||
|
|
||||||
# NOTE: You must run `pacman-key --init` before first using pacman; the local
|
|
||||||
# keyring can then be populated with the keys of all official Artix Linux
|
|
||||||
# packagers with `pacman-key --populate archlinux cromnix`.
|
|
||||||
|
|
||||||
#
|
|
||||||
# REPOSITORIES
|
|
||||||
# - can be defined here or included from another file
|
|
||||||
# - pacman will search repositories in the order defined here
|
|
||||||
# - local/custom mirrors can be added here or in separate files
|
|
||||||
# - repositories listed first will take precedence when packages
|
|
||||||
# have identical names, regardless of version number
|
|
||||||
# - URLs will have $repo replaced by the name of the current repo
|
|
||||||
# - URLs will have $arch replaced by the name of the architecture
|
|
||||||
#
|
|
||||||
# Repository entries are of the format:
|
|
||||||
# [repo-name]
|
|
||||||
# Server = ServerName
|
|
||||||
# Include = IncludePath
|
|
||||||
#
|
|
||||||
# The header [repo-name] is crucial - it must be present and
|
|
||||||
# uncommented to enable the repo.
|
|
||||||
|
|
||||||
[system]
|
|
||||||
Include = /etc/pacman.d/mirrorlist
|
|
||||||
|
|
||||||
[world]
|
|
||||||
Include = /etc/pacman.d/mirrorlist
|
|
||||||
|
|
||||||
[galaxy]
|
|
||||||
Include = /etc/pacman.d/mirrorlist
|
|
||||||
|
|
||||||
# An example of a custom package repository. See the pacman manpage for
|
|
||||||
# tips on creating your own repositories.
|
|
||||||
#[custom]
|
|
||||||
#SigLevel = Optional TrustAll
|
|
||||||
#Server = file:///home/custompkgs
|
|
||||||
|
|
||||||
[extra]
|
|
||||||
Include = /etc/pacman.d/mirrorlist-arch
|
|
||||||
|
|
||||||
[community]
|
|
||||||
Include = /etc/pacman.d/mirrorlist-arch
|
|
@@ -13,6 +13,7 @@ declare -A pseudofs_types=([anon_inodefs]=1
|
|||||||
[bdev]=1
|
[bdev]=1
|
||||||
[binfmt_misc]=1
|
[binfmt_misc]=1
|
||||||
[cgroup]=1
|
[cgroup]=1
|
||||||
|
[cgroup2]=1
|
||||||
[configfs]=1
|
[configfs]=1
|
||||||
[cpuset]=1
|
[cpuset]=1
|
||||||
[debugfs]=1
|
[debugfs]=1
|
||||||
@@ -72,7 +73,7 @@ valid_number_of_base() {
|
|||||||
mangle() {
|
mangle() {
|
||||||
local i= chr= out=
|
local i= chr= out=
|
||||||
|
|
||||||
unset {a..f} {A..F}
|
local {a..f}= {A..F}=
|
||||||
|
|
||||||
for (( i = 0; i < ${#1}; i++ )); do
|
for (( i = 0; i < ${#1}; i++ )); do
|
||||||
chr=${1:i:1}
|
chr=${1:i:1}
|
||||||
@@ -91,7 +92,7 @@ mangle() {
|
|||||||
unmangle() {
|
unmangle() {
|
||||||
local i= chr= out= len=$(( ${#1} - 4 ))
|
local i= chr= out= len=$(( ${#1} - 4 ))
|
||||||
|
|
||||||
unset {a..f} {A..F}
|
local {a..f}= {A..F}=
|
||||||
|
|
||||||
for (( i = 0; i < len; i++ )); do
|
for (( i = 0; i < len; i++ )); do
|
||||||
chr=${1:i:1}
|
chr=${1:i:1}
|
||||||
|
@@ -52,6 +52,7 @@ configure_grub(){
|
|||||||
sed -e "s|@arch@|${target_arch}|g" \
|
sed -e "s|@arch@|${target_arch}|g" \
|
||||||
-e "s|@iso_label@|${iso_label}|" \
|
-e "s|@iso_label@|${iso_label}|" \
|
||||||
-e "s|@iso_name@|${iso_name}|g" \
|
-e "s|@iso_name@|${iso_name}|g" \
|
||||||
|
-e "s|@kernel_args@|${kernel_args}|g" \
|
||||||
-i $conf
|
-i $conf
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -44,7 +44,7 @@ load_profile(){
|
|||||||
[[ -z ${password} ]] && password="artix"
|
[[ -z ${password} ]] && password="artix"
|
||||||
|
|
||||||
if [[ -z ${addgroups} ]];then
|
if [[ -z ${addgroups} ]];then
|
||||||
addgroups="video,power,storage,optical,network,lp,scanner,wheel,users"
|
addgroups="video,power,storage,optical,network,lp,scanner,wheel,users,audio"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ -z ${openrc_boot[@]} ]];then
|
if [[ -z ${openrc_boot[@]} ]];then
|
||||||
@@ -84,9 +84,8 @@ write_live_session_conf(){
|
|||||||
echo "addgroups='${addgroups}'" >> ${conf}
|
echo "addgroups='${addgroups}'" >> ${conf}
|
||||||
}
|
}
|
||||||
|
|
||||||
# $1: file name
|
|
||||||
load_pkgs(){
|
load_pkgs(){
|
||||||
local pkglist="$1" arch="$2" init="$3" _kv="$4"
|
local pkglist="$1" init="$2" _kv="$3"
|
||||||
info "Loading Packages: [%s] ..." "${pkglist##*/}"
|
info "Loading Packages: [%s] ..." "${pkglist##*/}"
|
||||||
|
|
||||||
local _init="s|>$init||g"
|
local _init="s|>$init||g"
|
||||||
@@ -96,13 +95,6 @@ load_pkgs(){
|
|||||||
'runit') _init_rm1="s|>s6.*||g"; _init_rm2="s|>openrc.*||g" ;;
|
'runit') _init_rm1="s|>s6.*||g"; _init_rm2="s|>openrc.*||g" ;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
local _arch="s|>x86_64||g" _arch_rm="s|>i686.*||g"
|
|
||||||
|
|
||||||
if [[ "$arch" == 'i686' ]];then
|
|
||||||
_arch="s|>i686||g"
|
|
||||||
_arch_rm="s|>x86_64.*||g"
|
|
||||||
fi
|
|
||||||
|
|
||||||
local _blacklist="s|>blacklist.*||g" \
|
local _blacklist="s|>blacklist.*||g" \
|
||||||
_kernel="s|KERNEL|$_kv|g" \
|
_kernel="s|KERNEL|$_kv|g" \
|
||||||
_space="s| ||g" \
|
_space="s| ||g" \
|
||||||
@@ -116,8 +108,6 @@ load_pkgs(){
|
|||||||
| sed "$_init" \
|
| sed "$_init" \
|
||||||
| sed "$_init_rm1" \
|
| sed "$_init_rm1" \
|
||||||
| sed "$_init_rm2" \
|
| sed "$_init_rm2" \
|
||||||
| sed "$_arch" \
|
|
||||||
| sed "$_arch_rm" \
|
|
||||||
| sed "$_kernel" \
|
| sed "$_kernel" \
|
||||||
| sed "$_clean"))
|
| sed "$_clean"))
|
||||||
}
|
}
|
||||||
|
@@ -17,7 +17,7 @@ connect(){
|
|||||||
gen_webseed(){
|
gen_webseed(){
|
||||||
local webseed seed="$1"
|
local webseed seed="$1"
|
||||||
for mirror in ${host_mirrors[@]};do
|
for mirror in ${host_mirrors[@]};do
|
||||||
webseed=${webseed:-}${webseed:+,}"http://${mirror}.dl.${seed}"
|
webseed=${webseed:-}${webseed:+,}"https://${mirror}.dl.${seed}"
|
||||||
done
|
done
|
||||||
echo ${webseed}
|
echo ${webseed}
|
||||||
}
|
}
|
||||||
@@ -27,9 +27,10 @@ make_torrent(){
|
|||||||
|
|
||||||
if [[ -n $(find ${src_dir} -type f -name "*.iso") ]]; then
|
if [[ -n $(find ${src_dir} -type f -name "*.iso") ]]; then
|
||||||
for iso in $(ls ${src_dir}/*.iso);do
|
for iso in $(ls ${src_dir}/*.iso);do
|
||||||
local seed=${file_host}/project/${project}/${target_dir}/${iso##*/}
|
local seed=${file_host}/project/${project}${target_dir}${iso##*/}
|
||||||
local mktorrent_args=(-c "${torrent_meta}" -p -l ${piece_size} -a ${tracker_url} -w $(gen_webseed ${seed}))
|
local mktorrent_args=(-c "${torrent_meta}" -p -l ${piece_size} -a ${tracker_url} -w $(gen_webseed ${seed}))
|
||||||
${verbose} && mktorrent_args+=(-v)
|
${verbose} && mktorrent_args+=(-v)
|
||||||
|
info "mktorrent_args: %s" "${mktorrent_args[@]}"
|
||||||
msg2 "Creating (%s) ..." "${iso##*/}.torrent"
|
msg2 "Creating (%s) ..." "${iso##*/}.torrent"
|
||||||
mktorrent ${mktorrent_args[*]} -o ${iso}.torrent ${iso}
|
mktorrent ${mktorrent_args[*]} -o ${iso}.torrent ${iso}
|
||||||
done
|
done
|
||||||
@@ -38,7 +39,7 @@ make_torrent(){
|
|||||||
|
|
||||||
prepare_transfer(){
|
prepare_transfer(){
|
||||||
target_dir="/iso/${profile}/"
|
target_dir="/iso/${profile}/"
|
||||||
src_dir="${cache_dir_iso}/${profile}/"
|
src_dir="${iso_pool}/${profile}/"
|
||||||
${torrent} && make_torrent
|
${torrent} && make_torrent
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -9,24 +9,14 @@
|
|||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
# GNU General Public License for more details.
|
# GNU General Public License for more details.
|
||||||
|
|
||||||
get_preset(){
|
|
||||||
local p=/tmp/${kernel}.preset
|
|
||||||
cp ${DATADIR}/linux.preset $p
|
|
||||||
sed -e "s|@kernel@|$kernel|g" \
|
|
||||||
-e "s|@arch@|${target_arch}|g"\
|
|
||||||
-i $p
|
|
||||||
echo $p
|
|
||||||
}
|
|
||||||
|
|
||||||
write_bootloader_conf(){
|
write_bootloader_conf(){
|
||||||
local conf="$1/bootloader.conf" efi_boot_loader='grub'
|
local conf="$1/bootloader.conf"
|
||||||
msg2 "Writing %s ..." "${conf##*/}"
|
msg2 "Writing %s ..." "${conf##*/}"
|
||||||
source "$(get_preset)"
|
|
||||||
echo '---' > "$conf"
|
echo '---' > "$conf"
|
||||||
echo "efiBootLoader: \"${efi_boot_loader}\"" >> "$conf"
|
echo "efiBootLoader: \"grub\"" >> "$conf"
|
||||||
echo "kernel: \"${ALL_kver#*/boot}\"" >> "$conf"
|
echo "kernel: \"/vmlinuz-$kernel-${target_arch}\"" >> "$conf"
|
||||||
echo "img: \"${default_image#*/boot}\"" >> "$conf"
|
echo "img: \"/initramfs-$kernel-${target_arch}.img\"" >> "$conf"
|
||||||
echo "fallback: \"${fallback_image#*/boot}\"" >> "$conf"
|
echo "fallback: \"/initramfs-$kernel-${target_arch}-fallback.img\"" >> "$conf"
|
||||||
echo 'timeout: "10"' >> "$conf"
|
echo 'timeout: "10"' >> "$conf"
|
||||||
echo "kernelLine: \", with ${kernel}\"" >> "$conf"
|
echo "kernelLine: \", with ${kernel}\"" >> "$conf"
|
||||||
echo "fallbackKernelLine: \", with ${kernel} (fallback initramfs)\"" >> "$conf"
|
echo "fallbackKernelLine: \", with ${kernel} (fallback initramfs)\"" >> "$conf"
|
||||||
@@ -86,17 +76,33 @@ write_netinstall_conf(){
|
|||||||
echo "groupsUrl: ${netgroups}" >> "$conf"
|
echo "groupsUrl: ${netgroups}" >> "$conf"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
write_unpack_conf(){
|
||||||
|
local conf="$1/unpackfs.conf"
|
||||||
|
msg2 "Writing %s ..." "${conf##*/}"
|
||||||
|
echo "---" > "$conf"
|
||||||
|
echo "unpack:" >> "$conf"
|
||||||
|
echo " - source: \"/run/${iso_name}/bootmnt/${iso_name}/${target_arch}/rootfs.sfs\"" >> "$conf"
|
||||||
|
echo " sourcefs: \"squashfs\"" >> "$conf"
|
||||||
|
echo " destination: \"\"" >> "$conf"
|
||||||
|
if [[ -f "${desktop_list}" ]] ; then
|
||||||
|
echo " - source: \"/run/${iso_name}/bootmnt/${iso_name}/${target_arch}/desktopfs.sfs\"" >> "$conf"
|
||||||
|
echo " sourcefs: \"squashfs\"" >> "$conf"
|
||||||
|
echo " destination: \"\"" >> "$conf"
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
configure_calamares(){
|
configure_calamares(){
|
||||||
local modules_dir="$1"
|
local dest="$1" mods="$1/etc/calamares/modules"
|
||||||
if [[ -d $modules_dir ]];then
|
if [[ -d $dest/etc/calamares/modules ]];then
|
||||||
info "Configuring [Calamares]"
|
info "Configuring [Calamares]"
|
||||||
write_users_conf "$modules_dir"
|
write_netinstall_conf "$mods"
|
||||||
write_netinstall_conf "$modules_dir"
|
write_unpack_conf "$mods"
|
||||||
write_initcpio_conf "$modules_dir"
|
write_users_conf "$mods"
|
||||||
|
write_initcpio_conf "$mods"
|
||||||
case ${initsys} in
|
case ${initsys} in
|
||||||
'openrc') write_servicescfg_conf "$modules_dir" ;;
|
'openrc') write_servicescfg_conf "$mods" ;;
|
||||||
esac
|
esac
|
||||||
write_bootloader_conf "$modules_dir"
|
write_bootloader_conf "$mods"
|
||||||
info "Done configuring [Calamares]"
|
info "Done configuring [Calamares]"
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
@@ -245,7 +245,7 @@ configure_live_image(){
|
|||||||
configure_hosts "$fs"
|
configure_hosts "$fs"
|
||||||
configure_system "$fs"
|
configure_system "$fs"
|
||||||
configure_services "$fs"
|
configure_services "$fs"
|
||||||
configure_calamares "$fs/etc/calamares/modules"
|
configure_calamares "$fs"
|
||||||
write_live_session_conf "$fs"
|
write_live_session_conf "$fs"
|
||||||
msg "Done configuring [livefs]"
|
msg "Done configuring [livefs]"
|
||||||
}
|
}
|
||||||
@@ -524,14 +524,14 @@ compress_images(){
|
|||||||
|
|
||||||
prepare_images(){
|
prepare_images(){
|
||||||
local timer=$(get_timer)
|
local timer=$(get_timer)
|
||||||
load_pkgs "${root_list}" "${target_arch}" "${initsys}" "${kernel}"
|
load_pkgs "${root_list}" "${initsys}" "${kernel}"
|
||||||
run_safe "make_rootfs"
|
run_safe "make_rootfs"
|
||||||
if [[ -f "${desktop_list}" ]] ; then
|
if [[ -f "${desktop_list}" ]] ; then
|
||||||
load_pkgs "${desktop_list}" "${target_arch}" "${initsys}" "${kernel}"
|
load_pkgs "${desktop_list}" "${initsys}" "${kernel}"
|
||||||
run_safe "make_desktopfs"
|
run_safe "make_desktopfs"
|
||||||
fi
|
fi
|
||||||
if [[ -f ${live_list} ]]; then
|
if [[ -f ${live_list} ]]; then
|
||||||
load_pkgs "${live_list}" "${target_arch}" "${initsys}" "${kernel}"
|
load_pkgs "${live_list}" "${initsys}" "${kernel}"
|
||||||
run_safe "make_livefs"
|
run_safe "make_livefs"
|
||||||
fi
|
fi
|
||||||
run_safe "make_bootfs"
|
run_safe "make_bootfs"
|
||||||
|
@@ -36,8 +36,6 @@ move_to_repo(){
|
|||||||
msg "Writing repo lists [%s]" "$repo_src"
|
msg "Writing repo lists [%s]" "$repo_src"
|
||||||
ls *.pkg.tar.xz{,.sig} > $filelist
|
ls *.pkg.tar.xz{,.sig} > $filelist
|
||||||
ls *.pkg.tar.xz > $pkglist
|
ls *.pkg.tar.xz > $pkglist
|
||||||
# uncomment for local test run
|
|
||||||
# rsync -v --files-from="$filelist" $repo_path "$src"
|
|
||||||
rm -v *
|
rm -v *
|
||||||
repo-add $repo_src.db.tar.xz
|
repo-add $repo_src.db.tar.xz
|
||||||
repo_path=${repos_root}/$repo_dest/os/$repo_arch
|
repo_path=${repos_root}/$repo_dest/os/$repo_arch
|
||||||
@@ -51,28 +49,25 @@ move_to_repo(){
|
|||||||
}
|
}
|
||||||
|
|
||||||
add_to_repo(){
|
add_to_repo(){
|
||||||
local repo="$1" destarch="$2" pkg="$3" ver pkgfile result
|
local repo="$1" destarch="$2" pkg="$3" ver pkgfile=
|
||||||
if [[ $pkg == 'llvm' ]];then
|
|
||||||
if [[ ${repo#*-} == 'testing' ]];then
|
|
||||||
repo='world-testing'
|
|
||||||
else
|
|
||||||
repo='world'
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
local repo_path=${repos_root}/$repo/os/$destarch
|
local repo_path=${repos_root}/$repo/os/$destarch
|
||||||
source $pkg/PKGBUILD
|
source $pkg/PKGBUILD
|
||||||
local dest=$pkg
|
|
||||||
for name in ${pkgname[@]};do
|
for name in ${pkgname[@]};do
|
||||||
|
info "finddeps: %s" "$name"
|
||||||
|
finddeps $name
|
||||||
[[ $arch == any ]] && CARCH=any
|
[[ $arch == any ]] && CARCH=any
|
||||||
ver=$(get_full_version $name)
|
ver=$(get_full_version $name)
|
||||||
if ! result=$(find_cached_package "$name" "$ver" "$CARCH"); then
|
if pkgfile=$(find_cached_package "$name" "$ver" "$CARCH"); then
|
||||||
pkgfile=$name-$ver-$CARCH.pkg.tar.xz
|
info "find-libdeps: %s" "$pkgfile"
|
||||||
[[ -n ${PKGDEST} ]] && dest=${PKGDEST}/$pkgfile
|
find-libdeps "$pkgfile"
|
||||||
[[ -e $dest.sig ]] && rm $dest.sig
|
info "find-libprovides: %s" "$pkgfile"
|
||||||
signfile $dest
|
find-libprovides "$pkgfile"
|
||||||
ln -sf $dest{,.sig} $repo_path/
|
[[ -e ${pkgfile}.sig ]] && rm ${pkgfile}.sig
|
||||||
|
signfile ${pkgfile}
|
||||||
|
ln -sf ${pkgfile}{,.sig} $repo_path/
|
||||||
cd $repo_path
|
cd $repo_path
|
||||||
repo-add -R $repo.db.tar.xz $pkgfile
|
repo-add -R $repo.db.tar.xz ${pkgfile##*/}
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -114,12 +114,15 @@ patch_pkg(){
|
|||||||
updpkgsums
|
updpkgsums
|
||||||
cd ..
|
cd ..
|
||||||
;;
|
;;
|
||||||
|
'tp_smapi'|'acpi_call'|'r8168')
|
||||||
|
sed -e 's|-ARCH|-ARTIX|g' -i $pkg/PKGBUILD
|
||||||
|
;;
|
||||||
esac
|
esac
|
||||||
}
|
}
|
||||||
|
|
||||||
set_import_path(){
|
get_import_path(){
|
||||||
local arch_dir arch_repo import_path
|
local arch_dir arch_repo import_path
|
||||||
local repo="$1" pkg="$2"
|
local repo="$1" pkg="$2" src=
|
||||||
case $repo in
|
case $repo in
|
||||||
system|world)
|
system|world)
|
||||||
arch_dir=packages
|
arch_dir=packages
|
||||||
@@ -141,22 +144,14 @@ set_import_path(){
|
|||||||
[[ -d $import_path-testing-any ]] && src=$import_path-testing-any
|
[[ -d $import_path-testing-any ]] && src=$import_path-testing-any
|
||||||
;;
|
;;
|
||||||
lib32)
|
lib32)
|
||||||
if [[ "$pkg" == 'llvm' ]];then
|
arch_repo=multilib
|
||||||
arch_repo=extra
|
arch_dir=community
|
||||||
arch_dir=packages
|
import_path=${tree_dir_arch}/$arch_dir/$pkg/repos
|
||||||
import_path=${tree_dir_arch}/$arch_dir/$pkg/repos
|
src=$import_path/$arch_repo-x86_64
|
||||||
src=$import_path/extra-x86_64
|
[[ -d $import_path/$arch_repo-testing-x86_64 ]] && src=$import_path/$arch_repo-testing-x86_64
|
||||||
[[ -d $import_path/testing-x86_64 ]] && src=$import_path/testing-x86_64
|
|
||||||
else
|
|
||||||
arch_repo=multilib
|
|
||||||
arch_dir=community
|
|
||||||
import_path=${tree_dir_arch}/$arch_dir/$pkg/repos
|
|
||||||
src=$import_path/$arch_repo-x86_64
|
|
||||||
[[ -d $import_path/$arch_repo-testing-x86_64 ]] && src=$import_path/$arch_repo-testing-x86_64
|
|
||||||
fi
|
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
# info "src: %s" "$src"
|
echo $src
|
||||||
}
|
}
|
||||||
|
|
||||||
show_version_table(){
|
show_version_table(){
|
||||||
@@ -168,7 +163,7 @@ show_version_table(){
|
|||||||
source $pkg/PKGBUILD 2>/dev/null
|
source $pkg/PKGBUILD 2>/dev/null
|
||||||
package=${pkg##*/}
|
package=${pkg##*/}
|
||||||
artixver=$(get_full_version $package)
|
artixver=$(get_full_version $package)
|
||||||
set_import_path "$repo" "$package"
|
local src=$(get_import_path "$repo" "$package")
|
||||||
if [[ -f $src/PKGBUILD ]];then
|
if [[ -f $src/PKGBUILD ]];then
|
||||||
source $src/PKGBUILD 2>/dev/null
|
source $src/PKGBUILD 2>/dev/null
|
||||||
archver=$(get_full_version $package)
|
archver=$(get_full_version $package)
|
||||||
@@ -196,18 +191,21 @@ import_from_arch(){
|
|||||||
$(is_dirty) && die "[%s] has uncommited changes!" "${repo}"
|
$(is_dirty) && die "[%s] has uncommited changes!" "${repo}"
|
||||||
git pull origin "$branch"
|
git pull origin "$branch"
|
||||||
for pkg in ${import_list[@]};do
|
for pkg in ${import_list[@]};do
|
||||||
set_import_path "$repo" "$pkg"
|
local src=$(get_import_path "$repo" "$pkg") dest=${tree_dir_artix}/$repo/$pkg
|
||||||
source $src/PKGBUILD 2>/dev/null
|
source $src/PKGBUILD 2>/dev/null
|
||||||
local ver=$(get_full_version $pkg)
|
local ver=$(get_full_version $pkg)
|
||||||
msg "Package: %s-%s" "$pkg" "$ver"
|
msg "Package: %s-%s" "$pkg" "$ver"
|
||||||
rsync "${rsync_args[@]}" $src/ ${tree_dir_artix}/$repo/$pkg/
|
msg2 "src: %s" "$src"
|
||||||
|
msg2 "dest: %s" "$dest"
|
||||||
|
rsync "${rsync_args[@]}" $src/ $dest/
|
||||||
patch_pkg "$pkg"
|
patch_pkg "$pkg"
|
||||||
if ${push};then
|
# if ${push};then
|
||||||
git add "$pkg"
|
# local timeout=10
|
||||||
git commit -m "$pkg-$ver"
|
# git add "$pkg"
|
||||||
sleep 10
|
# git commit -m "$pkg-$ver"
|
||||||
git push origin "$branch"
|
# sleep $timeout
|
||||||
fi
|
# git push origin "$branch"
|
||||||
|
# fi
|
||||||
unset pkgver epoch pkgrel ver
|
unset pkgver epoch pkgrel ver
|
||||||
done
|
done
|
||||||
fi
|
fi
|
||||||
|
@@ -37,14 +37,14 @@ pkgver_equal() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
find_cached_package() {
|
find_cached_package() {
|
||||||
local searchdirs=("$PWD" "$PKGDEST") results=()
|
local searchdirs=("$PKGDEST" "$PWD") results=()
|
||||||
local targetname=$1 targetver=$2 targetarch=$3
|
local targetname=$1 targetver=$2 targetarch=$3
|
||||||
local dir pkg pkgbasename name ver rel arch r results
|
local dir pkg pkgbasename name ver rel arch r results
|
||||||
|
|
||||||
for dir in "${searchdirs[@]}"; do
|
for dir in "${searchdirs[@]}"; do
|
||||||
[[ -d $dir ]] || continue
|
[[ -d $dir ]] || continue
|
||||||
|
|
||||||
for pkg in "$dir"/*.pkg.tar.xz; do
|
for pkg in "$dir"/*.pkg.tar.?z; do
|
||||||
[[ -f $pkg ]] || continue
|
[[ -f $pkg ]] || continue
|
||||||
|
|
||||||
# avoid adding duplicates of the same inode
|
# avoid adding duplicates of the same inode
|
||||||
@@ -54,7 +54,7 @@ find_cached_package() {
|
|||||||
|
|
||||||
# split apart package filename into parts
|
# split apart package filename into parts
|
||||||
pkgbasename=${pkg##*/}
|
pkgbasename=${pkg##*/}
|
||||||
pkgbasename=${pkgbasename%.pkg.tar?(.?z)}
|
pkgbasename=${pkgbasename%.pkg.tar.?z}
|
||||||
|
|
||||||
arch=${pkgbasename##*-}
|
arch=${pkgbasename##*-}
|
||||||
pkgbasename=${pkgbasename%-"$arch"}
|
pkgbasename=${pkgbasename%-"$arch"}
|
||||||
@@ -77,7 +77,7 @@ find_cached_package() {
|
|||||||
return 1
|
return 1
|
||||||
;;
|
;;
|
||||||
1)
|
1)
|
||||||
printf '%s\n' "$results"
|
printf '%s\n' "${results[0]}"
|
||||||
return 0
|
return 0
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
|
@@ -54,7 +54,7 @@ get_osid(){
|
|||||||
|
|
||||||
init_artools_base(){
|
init_artools_base(){
|
||||||
|
|
||||||
[[ -z ${target_arch} ]] && target_arch=$(uname -m)
|
target_arch=$(uname -m)
|
||||||
|
|
||||||
[[ -z ${chroots_dir} ]] && chroots_dir='/var/lib/artools'
|
[[ -z ${chroots_dir} ]] && chroots_dir='/var/lib/artools'
|
||||||
|
|
||||||
@@ -91,9 +91,9 @@ init_artools_pkg(){
|
|||||||
init_artools_iso(){
|
init_artools_iso(){
|
||||||
chroots_iso="${chroots_dir}/buildiso"
|
chroots_iso="${chroots_dir}/buildiso"
|
||||||
|
|
||||||
cache_dir_iso="${workspace_dir}/iso"
|
[[ -z ${iso_pool} ]] && iso_pool="${workspace_dir}/iso"
|
||||||
|
|
||||||
prepare_dir "${cache_dir_iso}"
|
prepare_dir "${iso_pool}"
|
||||||
|
|
||||||
profile='base'
|
profile='base'
|
||||||
|
|
||||||
@@ -107,6 +107,8 @@ init_artools_iso(){
|
|||||||
|
|
||||||
[[ -z ${kernel} ]] && kernel="linux-lts"
|
[[ -z ${kernel} ]] && kernel="linux-lts"
|
||||||
|
|
||||||
|
[[ -z ${kernel_args} ]] && kernel_args=""
|
||||||
|
|
||||||
[[ -z ${gpgkey} ]] && gpgkey=''
|
[[ -z ${gpgkey} ]] && gpgkey=''
|
||||||
|
|
||||||
[[ -z ${uplimit} ]] && uplimit=100
|
[[ -z ${uplimit} ]] && uplimit=100
|
||||||
|
Reference in New Issue
Block a user