We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4546905 commit c692d2dCopy full SHA for c692d2d
src/initramfs-tools/Makefile
@@ -5,13 +5,16 @@ SHELL = /bin/bash
5
MAIN_TARGET = initramfs-tools_$(INITRAMFS_TOOLS_VERSION)_all.deb
6
DERIVED_TARGETS = initramfs-tools-core_$(INITRAMFS_TOOLS_VERSION)_all.deb
7
8
+INITRAMFS_TOOLS_REVISION = 18fc98e1b63b012f9bcf06ae3f5477872a5880c0
9
+
10
$(addprefix $(DEST)/, $(MAIN_TARGET)): $(DEST)/% :
11
# Obtaining the initramfs-tools
12
rm -rf ./initramfs-tools
13
git clone --branch v0.130 https://salsa.debian.org/kernel-team/initramfs-tools.git ./initramfs-tools
14
15
# Patch
16
pushd ./initramfs-tools
17
+ git checkout $(INITRAMFS_TOOLS_REVISION)
18
patch -p1 < ../loopback-file-system-support.patch
19
20
# Build the package
0 commit comments