penguins-eggs 10.0.38 → 10.0.41
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.oclif.manifest.json +1 -1
- package/README.md +31 -30
- package/addons/eggs/theme/livecd/isolinux.main.simple.cfg +1 -1
- package/conf/derivatives.yaml +5 -2
- package/conf/distros/rolling/calamares/modules/finished.yml +2 -1
- package/conf/distros/rolling/calamares/modules/partition.yml +1 -1
- package/conf/distros/rolling/calamares/settings.yml +3 -1
- package/conf/distros/voidlinux/README.md +1 -0
- package/dist/classes/bleach.js +9 -1
- package/dist/classes/cli-autologin.js +33 -27
- package/dist/classes/distro.d.ts +0 -4
- package/dist/classes/distro.js +75 -134
- package/dist/classes/families/fedora.js +1 -1
- package/dist/classes/families/voidlinux.d.ts +48 -0
- package/dist/classes/families/voidlinux.js +84 -0
- package/dist/classes/ovary.d.ts +6 -13
- package/dist/classes/ovary.js +63 -60
- package/dist/classes/pacman.js +27 -13
- package/dist/classes/pxe.js +3 -3
- package/dist/classes/tailor.d.ts +11 -14
- package/dist/classes/tailor.js +184 -247
- package/dist/classes/utils.js +9 -0
- package/dist/commands/config.js +26 -94
- package/dist/commands/produce.js +1 -1
- package/dist/commands/wardrobe/wear.js +3 -0
- package/dist/interfaces/i-distro.d.ts +0 -4
- package/dist/interfaces/i-install.d.ts +2 -2
- package/dist/interfaces/i-materia.d.ts +9 -14
- package/dist/krill/modules/add-user.js +9 -12
- package/dist/krill/modules/bootloader-config.js +15 -0
- package/dist/krill/modules/bootloader.js +2 -2
- package/dist/krill/modules/fstab.js +2 -0
- package/dist/krill/modules/initramfs-cfg.js +0 -3
- package/dist/krill/modules/initramfs.js +32 -26
- package/dist/krill/modules/machine-id.js +2 -2
- package/dist/krill/prepare.js +2 -2
- package/dist/krill/sequence.js +25 -26
- package/dracut/README.md +2 -2
- package/dracut/dracut.conf.d/01-live.conf +3 -2
- package/dracut/sidecar.sh +19 -0
- package/manpages/doc/man/eggs.1.gz +0 -0
- package/manpages/doc/man/eggs.html +4 -4
- package/mkinitcpio/arch/README.md +48 -0
- package/mkinitcpio/arch/live.conf +3 -8
- package/mkinitcpio/biglinux/live.conf +4 -74
- package/mkinitcpio/manjarolinux/live.conf +4 -9
- package/mkinitfs/initramfs-init.in +4 -3
- package/package.json +8 -8
- package/syslinux/README.md +3 -0
- package/syslinux/lpxelinux.0 +0 -0
- package/syslinux/memdisk +0 -0
- package/syslinux/pxelinux.0 +0 -0
- package/dracut/test.sh +0 -40
- package/mkinitcpio/arch/mkinitcpio.conf +0 -4
- package/mkinitcpio/biglinux/mkinitcpio.conf +0 -73
- package/mkinitcpio/manjarolinux/mkinitcpio.conf +0 -7
package/dracut/README.md
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
# dracut.conf.d/01-live.conf
|
|
2
2
|
mdadmconf="no"
|
|
3
3
|
lvmconf="no"
|
|
4
|
+
#dmsetup="no" unfortunately, dmsetup block all the device mapper devices
|
|
4
5
|
squash_compress="zstd"
|
|
5
6
|
compress="zstd"
|
|
6
|
-
add_dracutmodules+=" livenet dmsquash-live dmsquash-live-
|
|
7
|
+
add_dracutmodules+=" livenet dmsquash-live dmsquash-live-autooverlay convertfs pollcdrom qemu qemu-net "
|
|
7
8
|
hostonly="no"
|
|
8
|
-
early_microcode="no"
|
|
9
|
+
early_microcode="no"
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
#!/bin/bash
|
|
2
|
+
clear
|
|
3
|
+
echo "Penguins' eggs: sidecar.sh"
|
|
4
|
+
echo "=========================="
|
|
5
|
+
sleep 2
|
|
6
|
+
|
|
7
|
+
# filesystem squashfs is mounted on
|
|
8
|
+
# /run/rootfsbase
|
|
9
|
+
|
|
10
|
+
# mount tmpfs on /media/root-rw
|
|
11
|
+
mkdir -p /run/root-rw
|
|
12
|
+
mount -t tmpfs root-tmpfs /run/root-rw
|
|
13
|
+
|
|
14
|
+
# creare i punti di montaggio necessari
|
|
15
|
+
mkdir -p /run/root-rw/work
|
|
16
|
+
mkdir -p /run/root-rw/root
|
|
17
|
+
|
|
18
|
+
# mount overlayfs on /sysroot
|
|
19
|
+
mount -t overlay overlay -o lowerdir=/run/rootfsbase,upperdir=/run/root-rw/root,workdir=/run/root-rw/work /sysroot
|
|
Binary file
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
7
7
|
</head>
|
|
8
8
|
<body>
|
|
9
|
-
<h1>eggs(1) -- the reproductive system of penguins: eggs v10.0.
|
|
9
|
+
<h1>eggs(1) -- the reproductive system of penguins: eggs v10.0.41</h1>
|
|
10
10
|
<h1>SYNOPSIS</h1>
|
|
11
11
|
<p>eggs is a console utility, in active development, who let you to remaster your system and redistribuite it as live ISO image.</p>
|
|
12
12
|
<h1>INSTALL</h1>
|
|
@@ -15,11 +15,11 @@
|
|
|
15
15
|
</code></pre>
|
|
16
16
|
<p>Arch</p>
|
|
17
17
|
<pre><code>$ sudo pacman -S penguins-eggs
|
|
18
|
-
$ sudo pacman -U penguins-eggs_10.0.
|
|
18
|
+
$ sudo pacman -U penguins-eggs_10.0.41-bionic-1_amd64-1-x86_64.pkg.tar.zst
|
|
19
19
|
</code></pre>
|
|
20
20
|
<p>Debian/Devuan/Ubuntu</p>
|
|
21
21
|
<pre><code>$ sudo apt install penguins-eggs
|
|
22
|
-
$ sudo dpkg -i penguins-eggs_10.0.
|
|
22
|
+
$ sudo dpkg -i penguins-eggs_10.0.41-bionic-1_amd64.deb
|
|
23
23
|
</code></pre>
|
|
24
24
|
<p>Manjaro</p>
|
|
25
25
|
<pre><code>$ sudo pamac install penguins-eggs
|
|
@@ -27,7 +27,7 @@ $ sudo dpkg -i penguins-eggs_10.0.38-bionic-1_amd64.deb
|
|
|
27
27
|
<h1>USAGE</h1>
|
|
28
28
|
<pre><code>$ eggs (-v|--version|version)
|
|
29
29
|
|
|
30
|
-
penguins-eggs/10.0.
|
|
30
|
+
penguins-eggs/10.0.41
|
|
31
31
|
$ eggs --help [COMMAND]
|
|
32
32
|
|
|
33
33
|
USAGE
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
# Trubles after installing Arch
|
|
2
|
+
|
|
3
|
+
When initramfs stop in emergency shell, you can mount it, depending on the filesystem used on installation:
|
|
4
|
+
|
|
5
|
+
## ext4
|
|
6
|
+
```
|
|
7
|
+
mount /dev/sda1 /new_root
|
|
8
|
+
exit
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
Then, once the system is started:
|
|
12
|
+
```
|
|
13
|
+
sudo nano /etc/default/grub
|
|
14
|
+
```
|
|
15
|
+
replace:
|
|
16
|
+
```
|
|
17
|
+
GRUB_CMDLINE_LINUX="rootflags=subvol=@"
|
|
18
|
+
```
|
|
19
|
+
with:
|
|
20
|
+
```
|
|
21
|
+
GRUB_CMDLINE_LINUX="rootfstype=ext4"
|
|
22
|
+
```
|
|
23
|
+
and reinstall grub:
|
|
24
|
+
```
|
|
25
|
+
grub-mkconfig -o /boot/grub/grub.cfg
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
## btrfs
|
|
29
|
+
```
|
|
30
|
+
mount -o subvol=@ /dev/sda1 /new_root
|
|
31
|
+
exit
|
|
32
|
+
```
|
|
33
|
+
Then, once the system is started:
|
|
34
|
+
```
|
|
35
|
+
sudo nano /etc/default/grub
|
|
36
|
+
```
|
|
37
|
+
replace:
|
|
38
|
+
```
|
|
39
|
+
GRUB_CMDLINE_LINUX="rootfstype=ext4"
|
|
40
|
+
```
|
|
41
|
+
with:
|
|
42
|
+
```
|
|
43
|
+
GRUB_CMDLINE_LINUX="rootflags=subvol=@"
|
|
44
|
+
```
|
|
45
|
+
and reinstall grub:
|
|
46
|
+
```
|
|
47
|
+
grub-mkconfig -o /boot/grub/grub.cfg```
|
|
48
|
+
```
|
|
@@ -1,8 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
BINARIES=()
|
|
5
|
-
FILES=()
|
|
6
|
-
HOOKS=(base udev modconf memdisk archiso archiso_loop_mnt archiso_pxe_common archiso_pxe_nbd archiso_pxe_http archiso_pxe_nfs kms block filesystems keyboard)
|
|
7
|
-
COMPRESSION="zstd"
|
|
8
|
-
#COMPRESSION_OPTIONS=()
|
|
1
|
+
HOOKS=(base udev microcode modconf kms memdisk archiso archiso_loop_mnt archiso_pxe_common archiso_pxe_nbd archiso_pxe_http archiso_pxe_nfs block filesystems keyboard)
|
|
2
|
+
COMPRESSION="xz"
|
|
3
|
+
COMPRESSION_OPTIONS=(-9e)
|
|
@@ -1,74 +1,4 @@
|
|
|
1
|
-
#
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
# in this array. For instance:
|
|
6
|
-
# MODULES=(qxl bochs_drm virtio-gpu virtio virtio_scsi virtio_blk virtio_pci virtio_net virtio_ring)
|
|
7
|
-
MODULES=(qxl bochs_drm virtio-gpu virtio virtio_scsi virtio_blk virtio_pci virtio_net virtio_ring)
|
|
8
|
-
|
|
9
|
-
# BINARIES
|
|
10
|
-
# This setting includes any additional binaries a given user may
|
|
11
|
-
# wish into the CPIO image. This is run last, so it may be used to
|
|
12
|
-
# override the actual binaries included by a given hook
|
|
13
|
-
# BINARIES are dependency parsed, so you may safely ignore libraries
|
|
14
|
-
BINARIES=(btrfs)
|
|
15
|
-
|
|
16
|
-
# FILES
|
|
17
|
-
# This setting is similar to BINARIES above, however, files are added
|
|
18
|
-
# as-is and are not parsed in any way. This is useful for config files.
|
|
19
|
-
FILES=()
|
|
20
|
-
|
|
21
|
-
# HOOKS
|
|
22
|
-
# This is the most important setting in this file. The HOOKS control the
|
|
23
|
-
# modules and scripts added to the image, and what happens at boot time.
|
|
24
|
-
# Order is important, and it is recommended that you do not change the
|
|
25
|
-
# order in which HOOKS are added. Run 'mkinitcpio -H <hook name>' for
|
|
26
|
-
# help on a given hook.
|
|
27
|
-
# 'base' is _required_ unless you know precisely what you are doing.
|
|
28
|
-
# 'udev' is _required_ in order to automatically load modules
|
|
29
|
-
# 'filesystems' is _required_ unless you specify your fs modules in MODULES
|
|
30
|
-
# Examples:
|
|
31
|
-
## This setup specifies all modules in the MODULES setting above.
|
|
32
|
-
## No RAID, lvm2, or encrypted root is needed.
|
|
33
|
-
# HOOKS=(base)
|
|
34
|
-
#
|
|
35
|
-
## This setup will autodetect all modules for your system and should
|
|
36
|
-
## work as a sane default
|
|
37
|
-
# HOOKS=(base udev autodetect modconf block filesystems fsck)
|
|
38
|
-
#
|
|
39
|
-
## This setup will generate a 'full' image which supports most systems.
|
|
40
|
-
## No autodetection is done.
|
|
41
|
-
# HOOKS=(base udev modconf block filesystems fsck)
|
|
42
|
-
#
|
|
43
|
-
## This setup assembles a mdadm array with an encrypted root file system.
|
|
44
|
-
## Note: See 'mkinitcpio -H mdadm_udev' for more information on RAID devices.
|
|
45
|
-
# HOOKS=(base udev modconf keyboard keymap consolefont block mdadm_udev encrypt filesystems fsck)
|
|
46
|
-
#
|
|
47
|
-
## This setup loads an lvm2 volume group.
|
|
48
|
-
# HOOKS=(base udev modconf block lvm2 filesystems fsck)
|
|
49
|
-
#
|
|
50
|
-
## NOTE: If you have /usr on a separate partition, you MUST include the
|
|
51
|
-
# usr and fsck hooks.
|
|
52
|
-
#HOOKS=(base udev autodetect kms modconf block keyboard keymap consolefont kms plymouth filesystems fsck miso_loop_mnt)
|
|
53
|
-
HOOKS="base udev miso_shutdown miso miso_loop_mnt miso_kms miso_pxe_common miso_pxe_http modconf block filesystems keyboard keymap"
|
|
54
|
-
|
|
55
|
-
# COMPRESSION
|
|
56
|
-
# Use this to compress the initramfs image. By default, gzip compression
|
|
57
|
-
# is used. Use 'cat' to create an uncompressed image.
|
|
58
|
-
#COMPRESSION="gzip"
|
|
59
|
-
#COMPRESSION="bzip2"
|
|
60
|
-
#COMPRESSION="lzma"
|
|
61
|
-
#COMPRESSION="xz"
|
|
62
|
-
#COMPRESSION="lzop"
|
|
63
|
-
#COMPRESSION="lz4"
|
|
64
|
-
COMPRESSION="zstd"
|
|
65
|
-
|
|
66
|
-
# COMPRESSION_OPTIONS
|
|
67
|
-
# Additional options for the compressor
|
|
68
|
-
COMPRESSION_OPTIONS=(-6)
|
|
69
|
-
|
|
70
|
-
# MODULES_DECOMPRESS
|
|
71
|
-
# Decompress kernel modules during initramfs creation.
|
|
72
|
-
# Enable to speedup boot process, disable to save RAM
|
|
73
|
-
# during early userspace. Switch (yes/no).
|
|
74
|
-
MODULES=(qxl bochs_drm virtio-gpu virtio virtio_scsi virtio_blk virtio_pci virtio_net virtio_ring)
|
|
1
|
+
# biglinux live
|
|
2
|
+
MODULES=(loop dm-snapshot btrfs)
|
|
3
|
+
HOOKS=(base udev miso_shutdown miso miso_loop_mnt miso_pxe_common miso_pxe_http miso_pxe_nbd miso_pxe_nfs miso_kms modconf block plumouth filesystems keyboard keymap)
|
|
4
|
+
COMPRESSION="xz"
|
|
@@ -1,9 +1,4 @@
|
|
|
1
|
-
#
|
|
2
|
-
MODULES=
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
COMPRESSION="zstd"
|
|
6
|
-
# richiede mkinitcpio-nfs-utils
|
|
7
|
-
|
|
8
|
-
# HOOKS="base udev pe_miso_shutdown pe_miso pe_miso_loop_mnt pe_miso_kms modconf block filesystems keyboard keymap"
|
|
9
|
-
|
|
1
|
+
# come from buldconf on initramfs-x86_64.img from manjaro-xfce-24.1.0-241001-linux610.iso
|
|
2
|
+
MODULES=(loop dm-snapshot)
|
|
3
|
+
HOOKS=(base udev miso_shutdown miso miso_loop_mnt miso_pxe_common miso_pxe_http miso_pxe_nbd miso_pxe_nfs miso_kms modconf block filesystems keyboard keymap)
|
|
4
|
+
COMPRESSION="xz"
|
|
@@ -748,7 +748,7 @@ $MOCK mount -t tmpfs -o $rootflags tmpfs $sysroot
|
|
|
748
748
|
# sidecar start
|
|
749
749
|
#
|
|
750
750
|
# insert just after: $MOCK mount -t tmpfs -o $rootflags tmpfs $sysroot
|
|
751
|
-
# NOTE: remember to add alpinelivesquashfs alpinelivelabel
|
|
751
|
+
# NOTE: remember to add alpinelivesquashfs alpinelivelabel
|
|
752
752
|
# insert at live 748
|
|
753
753
|
####################################################################################
|
|
754
754
|
if [ -n "${KOPT_alpinelivelabel}" ]; then
|
|
@@ -762,7 +762,6 @@ if [ -n "${KOPT_alpinelivelabel}" ]; then
|
|
|
762
762
|
echo "- fstype: $fstype"
|
|
763
763
|
echo "- label: $KOPT_alpinelivelabel"
|
|
764
764
|
echo "- filesystem.squashfs: $KOPT_alpinelivesquashfs"
|
|
765
|
-
echo "- cow_spacesize: $KOPT_cow_spacesize NOT_USED!"
|
|
766
765
|
sleep 5
|
|
767
766
|
|
|
768
767
|
# Creating mountpoint
|
|
@@ -787,7 +786,9 @@ if [ -n "${KOPT_alpinelivelabel}" ]; then
|
|
|
787
786
|
mount -t overlay overlay -o lowerdir=/media/root-ro,upperdir=/media/root-rw/root,workdir=/media/root-rw/work $sysroot
|
|
788
787
|
|
|
789
788
|
# just a dummy value for /etc/machine-id
|
|
790
|
-
|
|
789
|
+
MACHINE_UUID=$(cat "$ROOT"/sys/class/dmi/id/product_uuid 2>/dev/null)
|
|
790
|
+
machine_id="${MACHINE_UUID//-/}"
|
|
791
|
+
echo $machine_id | tee /sysroot/etc/machine-id > /dev/null
|
|
791
792
|
fi
|
|
792
793
|
# sidecar emd #####################################################################
|
|
793
794
|
|
package/package.json
CHANGED
|
@@ -2,17 +2,17 @@
|
|
|
2
2
|
"name": "penguins-eggs",
|
|
3
3
|
"shortName": "eggs",
|
|
4
4
|
"description": "A remaster system tool, compatible with Arch, Debian, Devuan, Ubuntu and others",
|
|
5
|
-
"version": "10.0.
|
|
5
|
+
"version": "10.0.41",
|
|
6
6
|
"author": "Piero Proietti",
|
|
7
7
|
"bin": {
|
|
8
8
|
"eggs": "./bin/run.js"
|
|
9
9
|
},
|
|
10
10
|
"bugs": "https://github.com/pieroproietti/penguins-eggs/issues",
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@oclif/core": "^4.0.
|
|
13
|
-
"@oclif/plugin-autocomplete": "^3.2.
|
|
14
|
-
"@oclif/plugin-help": "^6.2.
|
|
15
|
-
"@oclif/plugin-version": "^2.2.
|
|
12
|
+
"@oclif/core": "^4.0.25",
|
|
13
|
+
"@oclif/plugin-autocomplete": "^3.2.5",
|
|
14
|
+
"@oclif/plugin-help": "^6.2.13",
|
|
15
|
+
"@oclif/plugin-version": "^2.2.14",
|
|
16
16
|
"ansis": "^3.3.2",
|
|
17
17
|
"axios": "^1.7.7",
|
|
18
18
|
"chalk": "^5.3.0",
|
|
@@ -44,15 +44,15 @@
|
|
|
44
44
|
"@types/netmask": "^2.0.5",
|
|
45
45
|
"@types/node": "^20.16.1",
|
|
46
46
|
"@types/node-static": "^0.7.11",
|
|
47
|
-
"@types/react": "^18.3.
|
|
47
|
+
"@types/react": "^18.3.10",
|
|
48
48
|
"@types/shelljs": "^0.8.15",
|
|
49
49
|
"chai": "^5.1.1",
|
|
50
50
|
"eslint": "^8.57.0",
|
|
51
51
|
"eslint-config-oclif": "^5.2.1",
|
|
52
|
-
"eslint-config-oclif-typescript": "^3.1.
|
|
52
|
+
"eslint-config-oclif-typescript": "^3.1.12",
|
|
53
53
|
"eslint-config-prettier": "^9.1.0",
|
|
54
54
|
"mocha": "^10.7.3",
|
|
55
|
-
"oclif": "^4.
|
|
55
|
+
"oclif": "^4.15.5",
|
|
56
56
|
"perrisbrewery": "^10.0.1",
|
|
57
57
|
"prettier": "^3.3.3",
|
|
58
58
|
"shx": "^0.3.4",
|
|
Binary file
|
package/syslinux/memdisk
ADDED
|
Binary file
|
|
Binary file
|
package/dracut/test.sh
DELETED
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
# https://github.com/dracutdevs/fedora-container/blob/master/Dockerfile-latest
|
|
2
|
-
# but don't install dnssquash-live
|
|
3
|
-
dnf -y install --setopt=install_weak_deps=False \
|
|
4
|
-
dash \
|
|
5
|
-
asciidoc \
|
|
6
|
-
mdadm \
|
|
7
|
-
lvm2 \
|
|
8
|
-
dmraid \
|
|
9
|
-
cryptsetup \
|
|
10
|
-
nfs-utils \
|
|
11
|
-
nbd \
|
|
12
|
-
dhcp-server \
|
|
13
|
-
scsi-target-utils \
|
|
14
|
-
iscsi-initiator-utils \
|
|
15
|
-
strace \
|
|
16
|
-
btrfs-progs \
|
|
17
|
-
kmod-devel \
|
|
18
|
-
gcc \
|
|
19
|
-
bzip2 \
|
|
20
|
-
xz \
|
|
21
|
-
tar \
|
|
22
|
-
wget \
|
|
23
|
-
rpm-build \
|
|
24
|
-
make \
|
|
25
|
-
git \
|
|
26
|
-
bash-completion \
|
|
27
|
-
sudo \
|
|
28
|
-
kernel \
|
|
29
|
-
dhcp-client \
|
|
30
|
-
/usr/bin/qemu-kvm \
|
|
31
|
-
/usr/bin/qemu-system-$(uname -i) \
|
|
32
|
-
e2fsprogs \
|
|
33
|
-
tcpdump \
|
|
34
|
-
iproute \
|
|
35
|
-
iputils \
|
|
36
|
-
dbus-daemon \
|
|
37
|
-
kbd \
|
|
38
|
-
NetworkManager \
|
|
39
|
-
python3-imgcreate \
|
|
40
|
-
&& dnf clean all
|
|
@@ -1,73 +0,0 @@
|
|
|
1
|
-
# vim:set ft=sh
|
|
2
|
-
# MODULES
|
|
3
|
-
# The following modules are loaded before any boot hooks are
|
|
4
|
-
# run. Advanced users may wish to specify all system modules
|
|
5
|
-
# in this array. For instance:
|
|
6
|
-
# MODULES=(qxl bochs_drm virtio-gpu virtio virtio_scsi virtio_blk virtio_pci virtio_net virtio_ring)
|
|
7
|
-
MODULES=(qxl bochs_drm virtio-gpu virtio virtio_scsi virtio_blk virtio_pci virtio_net virtio_ring)
|
|
8
|
-
|
|
9
|
-
# BINARIES
|
|
10
|
-
# This setting includes any additional binaries a given user may
|
|
11
|
-
# wish into the CPIO image. This is run last, so it may be used to
|
|
12
|
-
# override the actual binaries included by a given hook
|
|
13
|
-
# BINARIES are dependency parsed, so you may safely ignore libraries
|
|
14
|
-
BINARIES=(btrfs)
|
|
15
|
-
|
|
16
|
-
# FILES
|
|
17
|
-
# This setting is similar to BINARIES above, however, files are added
|
|
18
|
-
# as-is and are not parsed in any way. This is useful for config files.
|
|
19
|
-
FILES=()
|
|
20
|
-
|
|
21
|
-
# HOOKS
|
|
22
|
-
# This is the most important setting in this file. The HOOKS control the
|
|
23
|
-
# modules and scripts added to the image, and what happens at boot time.
|
|
24
|
-
# Order is important, and it is recommended that you do not change the
|
|
25
|
-
# order in which HOOKS are added. Run 'mkinitcpio -H <hook name>' for
|
|
26
|
-
# help on a given hook.
|
|
27
|
-
# 'base' is _required_ unless you know precisely what you are doing.
|
|
28
|
-
# 'udev' is _required_ in order to automatically load modules
|
|
29
|
-
# 'filesystems' is _required_ unless you specify your fs modules in MODULES
|
|
30
|
-
# Examples:
|
|
31
|
-
## This setup specifies all modules in the MODULES setting above.
|
|
32
|
-
## No RAID, lvm2, or encrypted root is needed.
|
|
33
|
-
# HOOKS=(base)
|
|
34
|
-
#
|
|
35
|
-
## This setup will autodetect all modules for your system and should
|
|
36
|
-
## work as a sane default
|
|
37
|
-
# HOOKS=(base udev autodetect modconf block filesystems fsck)
|
|
38
|
-
#
|
|
39
|
-
## This setup will generate a 'full' image which supports most systems.
|
|
40
|
-
## No autodetection is done.
|
|
41
|
-
# HOOKS=(base udev modconf block filesystems fsck)
|
|
42
|
-
#
|
|
43
|
-
## This setup assembles a mdadm array with an encrypted root file system.
|
|
44
|
-
## Note: See 'mkinitcpio -H mdadm_udev' for more information on RAID devices.
|
|
45
|
-
# HOOKS=(base udev modconf keyboard keymap consolefont block mdadm_udev encrypt filesystems fsck)
|
|
46
|
-
#
|
|
47
|
-
## This setup loads an lvm2 volume group.
|
|
48
|
-
# HOOKS=(base udev modconf block lvm2 filesystems fsck)
|
|
49
|
-
#
|
|
50
|
-
## NOTE: If you have /usr on a separate partition, you MUST include the
|
|
51
|
-
# usr and fsck hooks.
|
|
52
|
-
HOOKS=(base udev autodetect kms modconf block keyboard keymap consolefont kms plymouth filesystems fsck)
|
|
53
|
-
|
|
54
|
-
# COMPRESSION
|
|
55
|
-
# Use this to compress the initramfs image. By default, gzip compression
|
|
56
|
-
# is used. Use 'cat' to create an uncompressed image.
|
|
57
|
-
#COMPRESSION="gzip"
|
|
58
|
-
#COMPRESSION="bzip2"
|
|
59
|
-
#COMPRESSION="lzma"
|
|
60
|
-
#COMPRESSION="xz"
|
|
61
|
-
#COMPRESSION="lzop"
|
|
62
|
-
#COMPRESSION="lz4"
|
|
63
|
-
COMPRESSION="zstd"
|
|
64
|
-
|
|
65
|
-
# COMPRESSION_OPTIONS
|
|
66
|
-
# Additional options for the compressor
|
|
67
|
-
COMPRESSION_OPTIONS=(-6)
|
|
68
|
-
|
|
69
|
-
# MODULES_DECOMPRESS
|
|
70
|
-
# Decompress kernel modules during initramfs creation.
|
|
71
|
-
# Enable to speedup boot process, disable to save RAM
|
|
72
|
-
# during early userspace. Switch (yes/no).
|
|
73
|
-
MODULES=(qxl bochs_drm virtio-gpu virtio virtio_scsi virtio_blk virtio_pci virtio_net virtio_ring)
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
# manjaro linux Qono mkinitpip-install.conf krill installing
|
|
2
|
-
MODULES=(qxl virtio-gpu virtio virtio_scsi virtio_blk virtio_pci virtio_net virtio_ring)
|
|
3
|
-
HOOKS="base udev modconf block keyboard keymap consolefont filesystems fsck"
|
|
4
|
-
COMPRESSION="zstd"
|
|
5
|
-
|
|
6
|
-
# removed: bochs_drm
|
|
7
|
-
|