diff options
| author | 2024-09-04 22:53:26 -0400 | |
|---|---|---|
| committer | 2024-09-04 22:53:26 -0400 | |
| commit | 5994d4352bff5ba3b3ad2a55e5d61f2b59d87393 (patch) | |
| tree | b585518a7d905db8555768f2ac6ac296139382cc /components | |
| parent | 2eeafcedb64bd4737a093d120581c068de816865 (diff) | |
| download | kiwi-descriptions-5994d4352bff5ba3b3ad2a55e5d61f2b59d87393.tar.gz kiwi-descriptions-5994d4352bff5ba3b3ad2a55e5d61f2b59d87393.zip | |
components/boot: Add full kernel and btrfs stack to BootDiskCore
The boot environment for non-cloud disk images was incomplete,
leading to images not bootable on real hardware. This change
adds the missing packages to fix that.
Diffstat (limited to 'components')
| -rw-r--r-- | components/boot.xml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/components/boot.xml b/components/boot.xml index 78c910a..7d3b3ea 100644 --- a/components/boot.xml +++ b/components/boot.xml @@ -95,6 +95,12 @@ <packages type="image" patternType="plusRecommended" profiles="BootDiskCore"> <package name="arm-image-installer" arch="aarch64"/> <package name="bcm283x-firmware" arch="aarch64"/> + <package name="glibc-all-langpacks"/> + <package name="kernel"/> + <package name="kernel-modules"/> + <package name="kernel-modules-extra"/> + <package name="btrfs-progs"/> + <package name="udisks2-btrfs"/> <package name="uboot-images-armv8" arch="aarch64"/> </packages> </image> |