mirror of
https://github.com/xcat2/confluent.git
synced 2026-09-09 22:46:45 +00:00
5645fb5cfd
SuseHandler refused anything but 15.x. What 16 needed beyond widening it:
- its repo urls are written in terms of ${releasever}, which zypper
resolves from the target root's os-release, a file that does not exist
yet when the first packages go in
- its repos name a zypper service backed by a package-provided directory
the target root does not have, so zypper discarded every one of them
as an orphan
- there is no mkinitrd to work out which kernel to build for, and bare
dracut would build for the build host's running kernel
- the efi payloads moved out of /usr/lib64/efi, arping out of /usr/sbin,
nsswitch.conf and protocols under /usr/etc, and the presets enable
sshd already
- the module list predated virtio, so an image built for a KVM guest had
no network at all, and dm-crypt could not allocate a transform for the
encrypted image without the aes-xts modules
- urlmount still links libpthread, an empty stub since glibc 2.34 that
nothing else in the initramfs pulls in
19 lines
972 B
Bash
19 lines
972 B
Bash
#!/bin/bash
|
|
instmods nfsv3 nfs_acl nfsv4 dns_resolver lockd fscache sunrpc
|
|
instmods e1000 e1000e igb sfc mlx5_ib mlx5_core mlx4_en cxgb3 cxgb4 tg3 bnx2 bnx2x bna ixgb ixgbe qlge mptsas mpt2sas mpt3sas megaraid_sas ahci xhci-hcd sd_mod pmcraid be2net vfat ext3 ext4 usb_storage scsi_wait_scan ipmi_si ipmi_devintf qlcnic xfs
|
|
instmods nvme
|
|
instmods cdc_ether r8152
|
|
instmods r8169
|
|
instmods vmxnet3 virtio_net
|
|
instmods virtio_scsi vmw_pvscsi
|
|
instmods xen-netfront xen-blkfront xen-pcifront
|
|
instmods mptctl
|
|
instmods mlx4_ib mlx5_ub ib_umad ib_ipoib
|
|
instmods ice i40e hfi1 bnxt_en qed qede
|
|
instmods dm-mod dm-log raid0 raid1 raid10 raid456 dm-raid dm-thin-pool dm-crypt dm-snapshot linear dm-era
|
|
# imgutil packs encrypted by default and dm-crypt cannot allocate the transform
|
|
# without these; the stock dracut crypt module is not in the diskless image
|
|
instmods aes_generic aesni_intel xts crypto_simd
|
|
# nfs root and optionally gocryptfs
|
|
instmods fuse overlay squashfs loop zram
|