Skip to content

Commit a7001e5

Browse files
committed
No more patching for real!
1 parent 4fb413d commit a7001e5

File tree

3 files changed

+0
-7
lines changed

3 files changed

+0
-7
lines changed

scripts/chroot/chroot_build.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ cd -
4242
#############################################
4343

4444
sudo cp -r "$repo_root_dir"/src miniroot/src
45-
sudo cp -r "$repo_root_dir"/patches miniroot/patches
4645

4746
sudo mount -o bind /dev miniroot/dev
4847
sudo mount -t proc none miniroot/proc

scripts/common/install-dependencies.sh

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,12 @@ cleanup() {
1212
}
1313
trap cleanup EXIT
1414

15-
# store current file's path
16-
# needed to determine the path of the patches
17-
this_dir="$(readlink -f "$(dirname "${BASH_SOURCE[0]}")")"
18-
1915
cd "$tmpdir"
2016

2117
wget https://github.com/libfuse/libfuse/releases/download/fuse-3.15.0/fuse-3.15.0.tar.xz
2218
echo "70589cfd5e1cff7ccd6ac91c86c01be340b227285c5e200baa284e401eea2ca0 fuse-3.15.0.tar.xz" | sha256sum -c -
2319
tar xf fuse-3.*.tar.xz
2420
pushd fuse-3*/
25-
# patch -p1 < "$this_dir"/../../patches/libfuse/mount.c.diff
2621
mkdir build
2722
cd build
2823
meson setup --prefix=/usr ..

scripts/docker/Dockerfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ RUN apk add --no-cache \
88
zstd-dev zstd-static zlib-dev zlib-static # fuse3-dev fuse3-static fuse-static fuse-dev
99

1010
COPY scripts/common/install-dependencies.sh /tmp/scripts/common/install-dependencies.sh
11-
COPY patches/ /tmp/patches/
1211

1312
WORKDIR /tmp
1413
RUN bash scripts/common/install-dependencies.sh

0 commit comments

Comments
 (0)