Compare commits
	
		
			3 Commits
		
	
	
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
|   | baf290d3aa | ||
|   | 1f379eec51 | ||
|   | c4d1425c46 | 
							
								
								
									
										14
									
								
								Makefile
									
									
									
									
									
								
							
							
						
						
									
										14
									
								
								Makefile
									
									
									
									
									
								
							| @@ -34,8 +34,6 @@ WITH-ISO = yes | |||||||
| endif | endif | ||||||
|  |  | ||||||
| CPIODIR = $(SYSCONFDIR)/initcpio | CPIODIR = $(SYSCONFDIR)/initcpio | ||||||
| PROFDIR = $(DATADIR)/$(TOOLS)/iso-profiles/base |  | ||||||
| OVERLAYDIR = $(PROFDIR)/live-overlay/etc |  | ||||||
|  |  | ||||||
| SYSCONF = \ | SYSCONF = \ | ||||||
| 	data/artools.conf | 	data/artools.conf | ||||||
| @@ -167,10 +165,7 @@ install_pkg: | |||||||
| install_cpio: | install_cpio: | ||||||
| 	+make CPIODIR=$(CPIODIR) DESTDIR=$(DESTDIR) -C initcpio install | 	+make CPIODIR=$(CPIODIR) DESTDIR=$(DESTDIR) -C initcpio install | ||||||
|  |  | ||||||
| install_base_profile: | install_iso: install_cpio | ||||||
| 	+make OVERLAYDIR=$(OVERLAYDIR) PROFDIR=$(PROFDIR) DESTDIR=$(DESTDIR) -C data/base install |  | ||||||
|  |  | ||||||
| install_iso: install_cpio install_base_profile |  | ||||||
| 	install $(DIRMODE) $(DESTDIR)$(BINDIR) | 	install $(DIRMODE) $(DESTDIR)$(BINDIR) | ||||||
| 	install $(MODE) $(BIN_ISO) $(DESTDIR)$(BINDIR) | 	install $(MODE) $(BIN_ISO) $(DESTDIR)$(BINDIR) | ||||||
|  |  | ||||||
| @@ -182,8 +177,6 @@ install_iso: install_cpio install_base_profile | |||||||
| 	install $(DIRMODE) $(DESTDIR)$(DATADIR)/$(TOOLS) | 	install $(DIRMODE) $(DESTDIR)$(DATADIR)/$(TOOLS) | ||||||
| 	install $(FILEMODE) $(SHARED_ISO) $(DESTDIR)$(DATADIR)/$(TOOLS) | 	install $(FILEMODE) $(SHARED_ISO) $(DESTDIR)$(DATADIR)/$(TOOLS) | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
| uninstall_base: | uninstall_base: | ||||||
| 	for f in $(notdir $(SYSCONF)); do $(RM) $(DESTDIR)$(SYSCONFDIR)/$(TOOLS)/$$f; done | 	for f in $(notdir $(SYSCONF)); do $(RM) $(DESTDIR)$(SYSCONFDIR)/$(TOOLS)/$$f; done | ||||||
| 	for f in $(notdir $(BIN_BASE)); do $(RM) $(DESTDIR)$(BINDIR)/$$f; done | 	for f in $(notdir $(BIN_BASE)); do $(RM) $(DESTDIR)$(BINDIR)/$$f; done | ||||||
| @@ -204,10 +197,7 @@ uninstall_pkg: | |||||||
| uninstall_cpio: | uninstall_cpio: | ||||||
| 	+make CPIODIR=$(CPIODIR) DESTDIR=$(DESTDIR) -C initcpio uninstall | 	+make CPIODIR=$(CPIODIR) DESTDIR=$(DESTDIR) -C initcpio uninstall | ||||||
|  |  | ||||||
| uninstall_base_profile: | uninstall_iso: uninstall_cpio | ||||||
| 	+make OVERLAYDIR=$(OVERLAYDIR) PROFDIR=$(PROFDIR) DESTDIR=$(DESTDIR) -C data/base uninstall |  | ||||||
|  |  | ||||||
| uninstall_iso: uninstall_cpio uninstall_base_profile |  | ||||||
| 	for f in $(notdir $(BIN_ISO)); do $(RM) $(DESTDIR)$(BINDIR)/$$f; done | 	for f in $(notdir $(BIN_ISO)); do $(RM) $(DESTDIR)$(BINDIR)/$$f; done | ||||||
| 	for l in $(notdir $(BIN_ISO_SYMS)); do $(RM) $(DESTDIR)$(BINDIR)/$$l; done | 	for l in $(notdir $(BIN_ISO_SYMS)); do $(RM) $(DESTDIR)$(BINDIR)/$$l; done | ||||||
| 	for f in $(notdir $(LIBS_ISO)); do $(RM) $(DESTDIR)$(LIBDIR)/$(TOOLS)/$$f; done | 	for f in $(notdir $(LIBS_ISO)); do $(RM) $(DESTDIR)$(LIBDIR)/$(TOOLS)/$$f; done | ||||||
|   | |||||||
| @@ -1,52 +0,0 @@ | |||||||
| DIRMODE = -dm0755 |  | ||||||
| FILEMODE = -m0644 |  | ||||||
| RMD = rm -fr --one-file-system |  | ||||||
| RM = rm -f |  | ||||||
|  |  | ||||||
| BASE = \ |  | ||||||
| 	$(wildcard Packages-*) \ |  | ||||||
| 	profile.conf |  | ||||||
|  |  | ||||||
| LIVE_ETC = \ |  | ||||||
| 	live-overlay/etc/fstab \ |  | ||||||
| 	live-overlay/etc/issue |  | ||||||
|  |  | ||||||
| LIVE_ETC_DEFAULT = \ |  | ||||||
| 	$(wildcard live-overlay/etc/default/*) |  | ||||||
|  |  | ||||||
| LIVE_ETC_PAM = \ |  | ||||||
| 	$(wildcard live-overlay/etc/pam.d/*) |  | ||||||
|  |  | ||||||
| LIVE_ETC_SUDOERS = \ |  | ||||||
| 	$(wildcard live-overlay/etc/sudoers.d/*) |  | ||||||
|  |  | ||||||
| install_isobase: |  | ||||||
| 	install $(DIRMODE) $(DESTDIR)$(PROFDIR) |  | ||||||
| 	install $(FILEMODE) $(BASE) $(DESTDIR)$(PROFDIR) |  | ||||||
|  |  | ||||||
| 	install $(DIRMODE) $(DESTDIR)$(OVERLAYDIR) |  | ||||||
| 	install $(FILEMODE) $(LIVE_ETC) $(DESTDIR)$(OVERLAYDIR) |  | ||||||
|  |  | ||||||
| 	install $(DIRMODE) $(DESTDIR)$(OVERLAYDIR)/default |  | ||||||
| 	install $(FILEMODE) $(LIVE_ETC_DEFAULT) $(DESTDIR)$(OVERLAYDIR)/default |  | ||||||
|  |  | ||||||
| 	install $(DIRMODE) $(DESTDIR)$(OVERLAYDIR)/pam.d |  | ||||||
| 	install $(FILEMODE) $(LIVE_ETC_PAM) $(DESTDIR)$(OVERLAYDIR)/pam.d |  | ||||||
|  |  | ||||||
| 	install $(DIRMODE) $(DESTDIR)$(OVERLAYDIR)/sudoers.d |  | ||||||
| 	install $(FILEMODE) $(LIVE_ETC_SUDOERS) $(DESTDIR)$(OVERLAYDIR)/sudoers.d |  | ||||||
|  |  | ||||||
| uninstall_isobase: |  | ||||||
| 	for f in $(notdir $(BASE)); do $(RM) $(DESTDIR)$(PROFDIR)/$$f; done |  | ||||||
| 	for f in $(notdir $(LIVE_ETC)); do $(RM) $(DESTDIR)$(OVERLAYDIR)/$$f; done |  | ||||||
| 	for f in $(notdir $(LIVE_ETC_DEFAULT)); do $(RM) $(DESTDIR)$(OVERLAYDIR)/default/$$f; done |  | ||||||
| 	for f in $(notdir $(LIVE_ETC_PAM)); do $(RM) $(DESTDIR)$(OVERLAYDIR)/pam.d/$$f; done |  | ||||||
| 	for f in $(notdir $(LIVE_ETC_SUDOERS)); do $(RM) $(DESTDIR)$(OVERLAYDIR)/sudoers.d/$$f; done |  | ||||||
| 	$(RMD) $(DESTDIR)$(PROFDIR) |  | ||||||
|  |  | ||||||
|  |  | ||||||
| install: install_isobase |  | ||||||
|  |  | ||||||
| uninstall: uninstall_isobase |  | ||||||
|  |  | ||||||
| .PHONY: install uninstall |  | ||||||
| @@ -1,7 +0,0 @@ | |||||||
| mkinitcpio-nfs-utils |  | ||||||
| nbd |  | ||||||
| >openrc artix-live-openrc |  | ||||||
| >runit artix-live-runit |  | ||||||
| squashfs-tools |  | ||||||
| artix-live-portable-efi |  | ||||||
| linux-lts-headers |  | ||||||
| @@ -1,97 +0,0 @@ | |||||||
| 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 |  | ||||||
| net-tools |  | ||||||
| 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 |  | ||||||
| >openrc opentmpfiles |  | ||||||
| >runit runit-artix |  | ||||||
| >runit acpid-runit |  | ||||||
| >runit cronie-runit |  | ||||||
| >runit dbus-runit |  | ||||||
| >runit dhcpcd-runit |  | ||||||
| >runit elogind-runit |  | ||||||
| >runit haveged-runit |  | ||||||
| >runit lvm2-runit |  | ||||||
| >runit mdadm-runit |  | ||||||
| >runit nfs-utils-runit |  | ||||||
| >runit rsync-runit |  | ||||||
| >runit wpa_supplicant-runit |  | ||||||
| >runit opentmpfiles |  | ||||||
| os-prober |  | ||||||
| pacman |  | ||||||
| pciutils |  | ||||||
| pcmciautils |  | ||||||
| perl |  | ||||||
| procps-ng |  | ||||||
| psmisc |  | ||||||
| reiserfsprogs |  | ||||||
| sed |  | ||||||
| shadow |  | ||||||
| s-nail |  | ||||||
| sudo |  | ||||||
| sysfsutils |  | ||||||
| tar |  | ||||||
| texinfo |  | ||||||
| usbutils |  | ||||||
| util-linux |  | ||||||
| which |  | ||||||
| efibootmgr |  | ||||||
| xfsprogs |  | ||||||
| zd1211-firmware |  | ||||||
| zsh |  | ||||||
| @@ -1,49 +0,0 @@ | |||||||
| 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" |  | ||||||
| @@ -1,5 +0,0 @@ | |||||||
| # |  | ||||||
| # /etc/fstab: static file system information |  | ||||||
| # |  | ||||||
| # <file system>        <dir>         <type>    <options>          <dump> <pass> |  | ||||||
| /dev/mapper/rootfs /             auto      defaults           0      0 |  | ||||||
| @@ -1,13 +0,0 @@ | |||||||
| [H[2J |  | ||||||
| Artix Live ISO (\l) - \s-\r \m |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
| # Welcome to Artix # |  | ||||||
|  |  | ||||||
|  |  | ||||||
| login for the live environment: |  | ||||||
|     user     'artix' |  | ||||||
|     password 'artix' |  | ||||||
|  |  | ||||||
|  |  | ||||||
| @@ -1,6 +0,0 @@ | |||||||
| #%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 +0,0 @@ | |||||||
| %wheel  ALL=(ALL) NOPASSWD: ALL |  | ||||||
| @@ -1,27 +0,0 @@ | |||||||
| ################ 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 |  | ||||||
| # services=('acpid' 'bluetooth' 'cronie' 'cupsd' 'dbus' 'syslog-ng' 'NetworkManager') |  | ||||||
|  |  | ||||||
| # default values |  | ||||||
| # addgroups="video,power,storage,optical,network,lp,scanner,wheel,users" |  | ||||||
|  |  | ||||||
| # netgroups_url="https://raw.githubusercontent.com/artix-linux/netgroups/master" |  | ||||||
|  |  | ||||||
| ################# live-session ################# |  | ||||||
|  |  | ||||||
| # default value |  | ||||||
| # hostname="artix" |  | ||||||
|  |  | ||||||
| # default value |  | ||||||
| # username="artix" |  | ||||||
|  |  | ||||||
| # default value |  | ||||||
| # password="artix" |  | ||||||
		Reference in New Issue
	
	Block a user