forked from artix/artools
Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
01bc8673c4 | ||
![]() |
0fcdc6af63 | ||
![]() |
5ae9803be1 | ||
![]() |
b36ffd813e |
51
Makefile
51
Makefile
@@ -81,6 +81,26 @@ LIBS_YAML = \
|
|||||||
SHARED_YAML = \
|
SHARED_YAML = \
|
||||||
data/linux.preset
|
data/linux.preset
|
||||||
|
|
||||||
|
INFO = \
|
||||||
|
data/repo_info
|
||||||
|
|
||||||
|
BASE = \
|
||||||
|
$(wildcard data/base/Packages-*) \
|
||||||
|
data/base/profile.conf
|
||||||
|
|
||||||
|
LIVE_ETC = \
|
||||||
|
data/base/live-overlay/etc/issue \
|
||||||
|
data/base/live-overlay/etc/fstab
|
||||||
|
|
||||||
|
LIVE_ETC_DEFAULT = \
|
||||||
|
$(wildcard data/base/live-overlay/etc/default/*)
|
||||||
|
|
||||||
|
LIVE_ETC_PAM = \
|
||||||
|
$(wildcard data/base/live-overlay/etc/pam.d/*)
|
||||||
|
|
||||||
|
LIVE_ETC_SUDOERS = \
|
||||||
|
$(wildcard data/base/live-overlay/etc/sudoers.d/*)
|
||||||
|
|
||||||
all: $(BIN_BASE) $(BIN_PKG) $(BIN_ISO) $(BIN_YAML)
|
all: $(BIN_BASE) $(BIN_PKG) $(BIN_ISO) $(BIN_YAML)
|
||||||
|
|
||||||
edit = sed -e "s|@datadir[@]|$(DESTDIR)$(PREFIX)/share/artools|g" \
|
edit = sed -e "s|@datadir[@]|$(DESTDIR)$(PREFIX)/share/artools|g" \
|
||||||
@@ -132,6 +152,25 @@ install_pkg:
|
|||||||
install -dm0755 $(DESTDIR)$(PREFIX)/share/artools
|
install -dm0755 $(DESTDIR)$(PREFIX)/share/artools
|
||||||
install -m0644 ${SHARED_PKG} $(DESTDIR)$(PREFIX)/share/artools
|
install -m0644 ${SHARED_PKG} $(DESTDIR)$(PREFIX)/share/artools
|
||||||
|
|
||||||
|
install_isobase:
|
||||||
|
install -dm0755 $(DESTDIR)$(PREFIX)/share/artools/iso-profiles
|
||||||
|
install -m0644 ${INFO} $(DESTDIR)$(PREFIX)/share/artools/iso-profiles
|
||||||
|
|
||||||
|
install -dm0755 $(DESTDIR)$(PREFIX)/share/artools/iso-profiles/base
|
||||||
|
install -m0644 ${BASE} $(DESTDIR)$(PREFIX)/share/artools/iso-profiles/base
|
||||||
|
|
||||||
|
install -dm0755 $(DESTDIR)$(PREFIX)/share/artools/iso-profiles/base/live-overlay/etc
|
||||||
|
install -m0644 ${LIVE_ETC} $(DESTDIR)$(PREFIX)/share/artools/iso-profiles/base/live-overlay/etc
|
||||||
|
|
||||||
|
install -dm0755 $(DESTDIR)$(PREFIX)/share/artools/iso-profiles/base/live-overlay/etc/default
|
||||||
|
install -m0644 ${LIVE_ETC_DEFAULT} $(DESTDIR)$(PREFIX)/share/artools/iso-profiles/base/live-overlay/etc/default
|
||||||
|
|
||||||
|
install -dm0755 $(DESTDIR)$(PREFIX)/share/artools/iso-profiles/base/live-overlay/etc/pam.d
|
||||||
|
install -m0644 ${LIVE_ETC_PAM} $(DESTDIR)$(PREFIX)/share/artools/iso-profiles/base/live-overlay/etc/pam.d
|
||||||
|
|
||||||
|
install -dm0755 $(DESTDIR)$(PREFIX)/share/artools/iso-profiles/base/live-overlay/etc/sudoers.d
|
||||||
|
install -m0644 ${LIVE_ETC_SUDOERS} $(DESTDIR)$(PREFIX)/share/artools/iso-profiles/base/live-overlay/etc/sudoers.d
|
||||||
|
|
||||||
install_iso:
|
install_iso:
|
||||||
install -dm0755 $(DESTDIR)$(PREFIX)/bin
|
install -dm0755 $(DESTDIR)$(PREFIX)/bin
|
||||||
install -m0755 ${BIN_ISO} $(DESTDIR)$(PREFIX)/bin
|
install -m0755 ${BIN_ISO} $(DESTDIR)$(PREFIX)/bin
|
||||||
@@ -176,6 +215,14 @@ uninstall_pkg:
|
|||||||
for f in ${SHARED_PKG}; do rm -f $(DESTDIR)$(PREFIX)/share/artools/$$f; done
|
for f in ${SHARED_PKG}; do rm -f $(DESTDIR)$(PREFIX)/share/artools/$$f; done
|
||||||
for f in ${LIBS_PKG}; do rm -f $(DESTDIR)$(PREFIX)/lib/artools/$$f; done
|
for f in ${LIBS_PKG}; do rm -f $(DESTDIR)$(PREFIX)/lib/artools/$$f; done
|
||||||
|
|
||||||
|
uninstall_isobase:
|
||||||
|
for f in ${INFO}; do rm -f $(DESTDIR)$(PREFIX)/share/artools/iso-profiles/$$f; done
|
||||||
|
for f in ${BASE}; do rm -f $(DESTDIR)$(PREFIX)/share/artools/iso-profiles/base/$$f; done
|
||||||
|
for f in ${LIVE_ETC}; do rm -f $(DESTDIR)$(PREFIX)/share/artools/iso-profiles/base/live-overlay/etc/$$f; done
|
||||||
|
for f in ${LIVE_ETC_DEFAULT}; do rm -f $(DESTDIR)$(PREFIX)/share/artools/iso-profiles/base/live-overlay/etc/default/$$f; done
|
||||||
|
for f in ${LIVE_ETC_PAM}; do rm -f $(DESTDIR)$(PREFIX)/share/artools/iso-profiles/base/live-overlay/etc/pam.d/$$f; done
|
||||||
|
for f in ${LIVE_ETC_SUDOERS}; do rm -f $(DESTDIR)$(PREFIX)/share/artools/iso-profiles/base/live-overlay/etc/sudoers.d/$$f; done
|
||||||
|
|
||||||
uninstall_iso:
|
uninstall_iso:
|
||||||
for f in ${BIN_ISO}; do rm -f $(DESTDIR)$(PREFIX)/bin/$$f; done
|
for f in ${BIN_ISO}; do rm -f $(DESTDIR)$(PREFIX)/bin/$$f; done
|
||||||
for f in ${SHARED_ISO}; do rm -f $(DESTDIR)$(PREFIX)/share/artools/$$f; done
|
for f in ${SHARED_ISO}; do rm -f $(DESTDIR)$(PREFIX)/share/artools/$$f; done
|
||||||
@@ -190,9 +237,9 @@ uninstall_yaml:
|
|||||||
for f in ${LIBS_YAML}; do rm -f $(DESTDIR)$(PREFIX)/lib/artools/$$f; done
|
for f in ${LIBS_YAML}; do rm -f $(DESTDIR)$(PREFIX)/lib/artools/$$f; done
|
||||||
for f in ${SHARED_YAML}; do rm -f $(DESTDIR)$(PREFIX)/share/artools/$$f; done
|
for f in ${SHARED_YAML}; do rm -f $(DESTDIR)$(PREFIX)/share/artools/$$f; done
|
||||||
|
|
||||||
install: install_base install_pkg install_iso install_yaml
|
install: install_base install_pkg install_iso install_yaml install_isobase
|
||||||
|
|
||||||
uninstall: uninstall_base uninstall_pkg uninstall_iso uninstall_yaml
|
uninstall: uninstall_base uninstall_pkg uninstall_iso uninstall_yaml uninstall_isobase
|
||||||
|
|
||||||
dist:
|
dist:
|
||||||
git archive --format=tar --prefix=artools-$(Version)/ $(Version) | gzip -9 > artools-$(Version).tar.gz
|
git archive --format=tar --prefix=artools-$(Version)/ $(Version) | gzip -9 > artools-$(Version).tar.gz
|
||||||
|
@@ -100,8 +100,8 @@ prepare_build(){
|
|||||||
local pacman_conf="${DATADIR}/pacman-$pac_arch.conf"
|
local pacman_conf="${DATADIR}/pacman-$pac_arch.conf"
|
||||||
[[ -f $AT_USERCONFDIR/pacman-$pac_arch.conf ]] && pacman_conf="$AT_USERCONFDIR/pacman-$pac_arch.conf"
|
[[ -f $AT_USERCONFDIR/pacman-$pac_arch.conf ]] && pacman_conf="$AT_USERCONFDIR/pacman-$pac_arch.conf"
|
||||||
|
|
||||||
work_dir="${chroots_pkg}/${repository}-${target_arch}"
|
work_dir="${chroots_pkg}/${target_arch}/${repository}"
|
||||||
pkg_dir="${cache_dir_pkg}/${repository}-${target_arch}"
|
pkg_dir="${cache_dir_pkg}/${target_arch}/${repository}"
|
||||||
|
|
||||||
local makepkg_conf=$(get_makepkg_conf "${target_arch}")
|
local makepkg_conf=$(get_makepkg_conf "${target_arch}")
|
||||||
|
|
||||||
|
9
data/base/Packages-Live
Normal file
9
data/base/Packages-Live
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
mkinitcpio-nfs-utils
|
||||||
|
nbd
|
||||||
|
>openrc artix-live-openrc
|
||||||
|
squashfs-tools
|
||||||
|
artix-live-portable-efi
|
||||||
|
virtualbox-guest-modules-artix
|
||||||
|
virtualbox-guest-utils
|
||||||
|
linux-lts-headers
|
||||||
|
|
82
data/base/Packages-Root
Normal file
82
data/base/Packages-Root
Normal file
@@ -0,0 +1,82 @@
|
|||||||
|
acpi
|
||||||
|
b43-fwcutter
|
||||||
|
bash
|
||||||
|
btrfs-progs
|
||||||
|
bzip2
|
||||||
|
coreutils
|
||||||
|
crda
|
||||||
|
dhclient
|
||||||
|
diffutils
|
||||||
|
dmraid
|
||||||
|
dnsmasq
|
||||||
|
dosfstools
|
||||||
|
e2fsprogs
|
||||||
|
ecryptfs-utils
|
||||||
|
exfat-utils
|
||||||
|
f2fs-tools
|
||||||
|
file
|
||||||
|
filesystem
|
||||||
|
findutils
|
||||||
|
gawk
|
||||||
|
gcc-libs
|
||||||
|
gettext
|
||||||
|
glibc
|
||||||
|
grep
|
||||||
|
grub
|
||||||
|
gzip
|
||||||
|
inetutils
|
||||||
|
#intel-ucode
|
||||||
|
iproute2
|
||||||
|
iptables
|
||||||
|
iputils
|
||||||
|
ipw2100-fw
|
||||||
|
ipw2200-fw
|
||||||
|
jfsutils
|
||||||
|
KERNEL
|
||||||
|
less
|
||||||
|
licenses
|
||||||
|
linux-firmware
|
||||||
|
logrotate
|
||||||
|
lsb-release
|
||||||
|
man-db
|
||||||
|
man-pages
|
||||||
|
memtest86+
|
||||||
|
mkinitcpio-openswap
|
||||||
|
nano
|
||||||
|
ntfs-3g
|
||||||
|
>openrc acpid-openrc
|
||||||
|
>openrc cronie-openrc
|
||||||
|
>openrc cryptsetup-openrc
|
||||||
|
>openrc dbus-openrc
|
||||||
|
>openrc device-mapper-openrc
|
||||||
|
>openrc dhcpcd-openrc
|
||||||
|
>openrc elogind-openrc
|
||||||
|
>openrc haveged-openrc
|
||||||
|
>openrc lvm2-openrc
|
||||||
|
>openrc mdadm-openrc
|
||||||
|
>openrc netifrc
|
||||||
|
>openrc nfs-utils-openrc
|
||||||
|
>openrc rsync-openrc
|
||||||
|
>openrc wpa_supplicant-openrc
|
||||||
|
os-prober
|
||||||
|
pacman
|
||||||
|
pciutils
|
||||||
|
pcmciautils
|
||||||
|
perl
|
||||||
|
procps-ng
|
||||||
|
psmisc
|
||||||
|
reiserfsprogs
|
||||||
|
sed
|
||||||
|
shadow
|
||||||
|
s-nail
|
||||||
|
sudo
|
||||||
|
sysfsutils
|
||||||
|
tar
|
||||||
|
texinfo
|
||||||
|
usbutils
|
||||||
|
util-linux
|
||||||
|
which
|
||||||
|
>x86_64 efibootmgr
|
||||||
|
xfsprogs
|
||||||
|
zd1211-firmware
|
||||||
|
zsh
|
49
data/base/live-overlay/etc/default/grub
Normal file
49
data/base/live-overlay/etc/default/grub
Normal file
@@ -0,0 +1,49 @@
|
|||||||
|
GRUB_DEFAULT=saved
|
||||||
|
GRUB_TIMEOUT=5
|
||||||
|
GRUB_DISTRIBUTOR="Artix"
|
||||||
|
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
|
||||||
|
GRUB_CMDLINE_LINUX=""
|
||||||
|
|
||||||
|
# If you want to enable the save default function, uncomment the following
|
||||||
|
# line, and set GRUB_DEFAULT to saved.
|
||||||
|
GRUB_SAVEDEFAULT=true
|
||||||
|
|
||||||
|
# Preload both GPT and MBR modules so that they are not missed
|
||||||
|
GRUB_PRELOAD_MODULES="part_gpt part_msdos"
|
||||||
|
|
||||||
|
# Uncomment to enable Hidden Menu, and optionally hide the timeout count
|
||||||
|
#GRUB_HIDDEN_TIMEOUT=5
|
||||||
|
#GRUB_HIDDEN_TIMEOUT_QUIET=true
|
||||||
|
|
||||||
|
# Uncomment to use basic console
|
||||||
|
GRUB_TERMINAL_INPUT=console
|
||||||
|
|
||||||
|
# Uncomment to disable graphical terminal
|
||||||
|
#GRUB_TERMINAL_OUTPUT=console
|
||||||
|
|
||||||
|
# The resolution used on graphical terminal
|
||||||
|
# note that you can use only modes which your graphic card supports via VBE
|
||||||
|
# you can see them in real GRUB with the command `vbeinfo'
|
||||||
|
GRUB_GFXMODE=auto
|
||||||
|
|
||||||
|
# Uncomment to allow the kernel use the same resolution used by grub
|
||||||
|
GRUB_GFXPAYLOAD_LINUX=keep
|
||||||
|
|
||||||
|
# Uncomment if you want GRUB to pass to the Linux kernel the old parameter
|
||||||
|
# format "root=/dev/xxx" instead of "root=/dev/disk/by-uuid/xxx"
|
||||||
|
#GRUB_DISABLE_LINUX_UUID=true
|
||||||
|
|
||||||
|
# Uncomment to disable generation of recovery mode menu entries
|
||||||
|
GRUB_DISABLE_RECOVERY=true
|
||||||
|
|
||||||
|
# Uncomment and set to the desired menu colors. Used by normal and wallpaper
|
||||||
|
# modes only. Entries specified as foreground/background.
|
||||||
|
GRUB_COLOR_NORMAL="light-gray/black"
|
||||||
|
GRUB_COLOR_HIGHLIGHT="cyan/black"
|
||||||
|
|
||||||
|
# Uncomment one of them for the gfx desired, a image background or a gfxtheme
|
||||||
|
GRUB_BACKGROUND="/usr/share/grub/background.png"
|
||||||
|
#GRUB_THEME="/path/to/gfxtheme"
|
||||||
|
|
||||||
|
# Uncomment to get a beep at GRUB start
|
||||||
|
#GRUB_INIT_TUNE="480 440 1"
|
5
data/base/live-overlay/etc/fstab
Normal file
5
data/base/live-overlay/etc/fstab
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
#
|
||||||
|
# /etc/fstab: static file system information
|
||||||
|
#
|
||||||
|
# <file system> <dir> <type> <options> <dump> <pass>
|
||||||
|
/dev/mapper/root-image / auto defaults 0 0
|
13
data/base/live-overlay/etc/issue
Normal file
13
data/base/live-overlay/etc/issue
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
[H[2J
|
||||||
|
Artix Live ISO (\l) - \s-\r \m
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# Welcome to Artix #
|
||||||
|
|
||||||
|
|
||||||
|
login for the live environment:
|
||||||
|
user 'artix'
|
||||||
|
password 'artix'
|
||||||
|
|
||||||
|
|
6
data/base/live-overlay/etc/pam.d/su
Normal file
6
data/base/live-overlay/etc/pam.d/su
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
#%PAM-1.0
|
||||||
|
auth sufficient pam_rootok.so
|
||||||
|
auth sufficient pam_wheel.so trust use_uid
|
||||||
|
auth required pam_unix.so
|
||||||
|
account required pam_unix.so
|
||||||
|
session required pam_unix.so
|
1
data/base/live-overlay/etc/sudoers.d/g_wheel
Normal file
1
data/base/live-overlay/etc/sudoers.d/g_wheel
Normal file
@@ -0,0 +1 @@
|
|||||||
|
%wheel ALL=(ALL) NOPASSWD: ALL
|
26
data/base/profile.conf
Normal file
26
data/base/profile.conf
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
################ install ################
|
||||||
|
|
||||||
|
# default displaymanager: none
|
||||||
|
# supported; lightdm, sddm, gdm, lxdm, mdm
|
||||||
|
# displaymanager="none"
|
||||||
|
|
||||||
|
# Set to false to disable autologin in the livecd
|
||||||
|
# autologin="true"
|
||||||
|
|
||||||
|
# service runlevels
|
||||||
|
# openrc_boot=('elogind')
|
||||||
|
# openrc_default=('acpid' 'bluetooth' 'cronie' 'cupsd' 'dbus' 'syslog-ng' 'NetworkManager')
|
||||||
|
|
||||||
|
# unset defaults to given values
|
||||||
|
# addgroups="video,power,storage,optical,network,lp,scanner,wheel,users"
|
||||||
|
|
||||||
|
################# live-session #################
|
||||||
|
|
||||||
|
# unset defaults to given value
|
||||||
|
# hostname="artix"
|
||||||
|
|
||||||
|
# unset defaults to given value
|
||||||
|
# username="artix"
|
||||||
|
|
||||||
|
# unset defaults to given value
|
||||||
|
# password="artix"
|
1
data/repo_info
Normal file
1
data/repo_info
Normal file
@@ -0,0 +1 @@
|
|||||||
|
0.5
|
@@ -19,7 +19,7 @@ repo_update(){
|
|||||||
fi
|
fi
|
||||||
local cmd='ln -s'
|
local cmd='ln -s'
|
||||||
$copy && cmd='cp'
|
$copy && cmd='cp'
|
||||||
$cmd ${cache_dir_pkg}/$repo-$arch/$pkg{,.sig} ${repos_local}/$repo/os/$arch/
|
$cmd ${cache_dir_pkg}/$arch/$repo/$pkg{,.sig} ${repos_local}/$repo/os/$arch/
|
||||||
fi
|
fi
|
||||||
local dest=${repos_local}/$repo/os/$arch/$pkg
|
local dest=${repos_local}/$repo/os/$arch/$pkg
|
||||||
[[ $action == "remove" ]] && dest=$pkg
|
[[ $action == "remove" ]] && dest=$pkg
|
||||||
|
Reference in New Issue
Block a user