]> git.proxmox.com Git - proxmox-backup-restore-image.git/commitdiff
build initramfs: do not hardcode package versions
authorThomas Lamprecht <t.lamprecht@proxmox.com>
Fri, 9 Apr 2021 12:58:14 +0000 (14:58 +0200)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Fri, 9 Apr 2021 12:58:17 +0000 (14:58 +0200)
While it can be good to have those tracked, handling that should be
less friction. (e.g., simply output them a file tracked in git)

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
src/build_initramfs.sh

index 72bb4838c9c6d53dbef3e7c5f846bf3742196b54..4efa29b3990e73969456eb27b911acb130d98d22 100755 (executable)
@@ -7,12 +7,12 @@ BUILDDIR="build/initramfs"
 INIT="../../init-shim-rs/target/release/init-shim-rs"
 
 PKGS=" \
-    libc6:amd64=2.28-10 \
-    libgcc1:amd64=1:8.3.0-6 \
-    libstdc++6:amd64=8.3.0-6 \
-    libssl1.1:amd64=1.1.1d-0+deb10u4 \
-    libattr1:amd64=1:2.4.48-4 \
-    libacl1:amd64=2.2.53-4
+    libc6:amd64 \
+    libgcc1:amd64 \
+    libstdc++6:amd64 \
+    libssl1.1:amd64 \
+    libattr1:amd64 \
+    libacl1:amd64
 "
 
 echo "Using build dir: $BUILDDIR"