Compare commits
6 Commits
Author | SHA1 | Date | |
---|---|---|---|
ef98a333ca | |||
![]() |
7727ce662e | ||
![]() |
b841184cb2 | ||
![]() |
528b3091c6 | ||
![]() |
ffb4f4ba98 | ||
![]() |
64fe174eba |
12
Makefile
12
Makefile
@@ -33,8 +33,8 @@ RC = \
|
||||
data/rc/pacman-init \
|
||||
data/rc/artix-live
|
||||
|
||||
RUNIT_CORE = \
|
||||
data/runit/89-artix-live.sh
|
||||
RUNIT_SVD = \
|
||||
data/runit/live
|
||||
|
||||
RUNIT_SV = \
|
||||
data/runit/pacman-init.run
|
||||
@@ -76,9 +76,13 @@ install_rc:
|
||||
install $(BMODE) $(RC) $(DESTDIR)$(SYSCONFDIR)/init.d
|
||||
|
||||
install_runit:
|
||||
install $(DMODE) $(DESTDIR)$(SYSCONFDIR)/runit/core-services
|
||||
install $(DMODE) $(DESTDIR)$(SYSCONFDIR)/rc/sysinit
|
||||
install $(DMODE) $(DESTDIR)$(LIBDIR)/rc/sv.d
|
||||
|
||||
install $(DMODE) $(DESTDIR)$(SYSCONFDIR)/runit/sv/pacman-init
|
||||
install $(BMODE) $(RUNIT_CORE) $(DESTDIR)$(SYSCONFDIR)/runit/core-services
|
||||
install $(BMODE) $(RUNIT_SVD) $(DESTDIR)$(LIBDIR)/rc/sv.d
|
||||
ln -sf $(LIBDIR)/rc/sv.d/live $(DESTDIR)$(SYSCONFDIR)/rc/sysinit/98-live
|
||||
|
||||
install $(BMODE) $(RUNIT_SV) $(DESTDIR)$(SYSCONFDIR)/runit/sv/pacman-init/run
|
||||
|
||||
install_portable_efi:
|
||||
|
@@ -53,9 +53,9 @@ livetimer=$(get_timer_ms)
|
||||
configure_displaymanager
|
||||
echo "Configured displaymanager: $(elapsed_time_ms ${livetimer})ms" >> "${LOGFILE}"
|
||||
|
||||
livetimer=$(get_timer_ms)
|
||||
configure_calamares
|
||||
echo "Configured calamares netinstall ${netinstall} $(elapsed_time_ms ${livetimer})ms" >> "${LOGFILE}"
|
||||
# livetimer=$(get_timer_ms)
|
||||
# configure_calamares
|
||||
# echo "Configured calamares netinstall ${netinstall} $(elapsed_time_ms ${livetimer})ms" >> "${LOGFILE}"
|
||||
|
||||
livetimer=$(get_timer_ms)
|
||||
configure_user_root /
|
||||
|
@@ -1,2 +0,0 @@
|
||||
msg "Initializing artix-live script"
|
||||
artix-live
|
15
data/runit/live
Normal file
15
data/runit/live
Normal file
@@ -0,0 +1,15 @@
|
||||
#!/bin/bash
|
||||
|
||||
. /usr/lib/rc/functions
|
||||
|
||||
case "$1" in
|
||||
start)
|
||||
stat_busy "Initializing artix live system"
|
||||
artix-live #|| stat_die
|
||||
add_daemon live
|
||||
stat_done
|
||||
;;
|
||||
*)
|
||||
echo "usage: $0 {start}"
|
||||
;;
|
||||
esac
|
Reference in New Issue
Block a user