diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2020-05-26 02:12:53 -0500 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2020-05-26 02:12:53 -0500 |
commit | 6c0e3999a044efc382231400825dd42d1802bbde (patch) | |
tree | 7a6c0ddfae6dd9aa34816db3add43a0fd287423f /configs | |
parent | ad096377a2bc398120e04aa5e4287e4aa181dcaf (diff) | |
download | image-6c0e3999a044efc382231400825dd42d1802bbde.tar.gz image-6c0e3999a044efc382231400825dd42d1802bbde.tar.bz2 image-6c0e3999a044efc382231400825dd42d1802bbde.tar.xz image-6c0e3999a044efc382231400825dd42d1802bbde.zip |
configs: New directory, containing HorizonScripts for live media
Diffstat (limited to 'configs')
-rw-r--r-- | configs/base.installfile | 25 | ||||
-rw-r--r-- | configs/pmmx.installfile | 1 | ||||
-rw-r--r-- | configs/power.installfile | 4 | ||||
-rw-r--r-- | configs/ppc.installfile | 1 | ||||
-rw-r--r-- | configs/ppc64.installfile | 2 | ||||
-rw-r--r-- | configs/x86.installfile | 4 | ||||
-rw-r--r-- | configs/x86_64.installfile | 1 |
7 files changed, 38 insertions, 0 deletions
diff --git a/configs/base.installfile b/configs/base.installfile new file mode 100644 index 0000000..2a55ec0 --- /dev/null +++ b/configs/base.installfile @@ -0,0 +1,25 @@ +network false +hostname adelie-live +nameserver 2620:fe::fe +nameserver 9.9.9.9 +nameserver 149.112.112.112 + +# Base packages +pkginstall adelie-base-posix dash-binsh ssmtp s6-linux-init s6-linux-init-early-getty openrc eudev +# Disk setup +pkginstall parted cryptsetup diskdev_cmds dosfstools e2fsprogs jfsutils lvm2 mdadm xfsprogs-base +# Kernel / boot +pkginstall easy-kernel easy-kernel-modules dracut +# Networking +pkginstall ca-certificates curl dhcpcd iproute2 iputils mtr net-tools netifrc netifrc-doc s6-dns traceroute +# Wi-Fi +pkginstall iw wireless-tools wpa_supplicant +# Hardware information / probing +pkginstall hdparm pciutils pcmciautils smartmontools usbutils +# User convenience tools +pkginstall bzip2 gnupg kbd-keymaps less links lzop nano openssh tmux + +# Live User +username live +useralias live Live User +usergroups live users,audio,video,cdrom,games,floppy,cdrw,ping diff --git a/configs/pmmx.installfile b/configs/pmmx.installfile new file mode 100644 index 0000000..3df60aa --- /dev/null +++ b/configs/pmmx.installfile @@ -0,0 +1 @@ +inherit x86.installfile diff --git a/configs/power.installfile b/configs/power.installfile new file mode 100644 index 0000000..02ca1b4 --- /dev/null +++ b/configs/power.installfile @@ -0,0 +1,4 @@ +# Things all PPC flavours need +pkginstall grub-ieee1275 mac-fdisk + +inherit base.installfile diff --git a/configs/ppc.installfile b/configs/ppc.installfile new file mode 100644 index 0000000..8e2ced9 --- /dev/null +++ b/configs/ppc.installfile @@ -0,0 +1 @@ +inherit power.installfile diff --git a/configs/ppc64.installfile b/configs/ppc64.installfile new file mode 100644 index 0000000..9aeb9fb --- /dev/null +++ b/configs/ppc64.installfile @@ -0,0 +1,2 @@ +pkginstall opal-utils +inherit power.installfile diff --git a/configs/x86.installfile b/configs/x86.installfile new file mode 100644 index 0000000..326b672 --- /dev/null +++ b/configs/x86.installfile @@ -0,0 +1,4 @@ +# Things all x86-likes need. +pkginstall dmidecode efibootmgr grub-bios grub-efi mactel-boot strace + +inherit base.installfile diff --git a/configs/x86_64.installfile b/configs/x86_64.installfile new file mode 100644 index 0000000..3df60aa --- /dev/null +++ b/configs/x86_64.installfile @@ -0,0 +1 @@ +inherit x86.installfile |