From b6b2f3152507d223ac1cb44a426b58e431436fa2 Mon Sep 17 00:00:00 2001 From: Fabian Keil Date: Thu, 31 Mar 2022 13:36:11 +0200 Subject: [PATCH 307/310] tools/boot/install-boot.sh: Set the volume id to zero to get an reproducible esp file Obtained from: ElectroBSD --- tools/boot/install-boot.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/boot/install-boot.sh b/tools/boot/install-boot.sh index ce6e363a3067..51bcc7785f46 100755 --- a/tools/boot/install-boot.sh +++ b/tools/boot/install-boot.sh @@ -66,6 +66,7 @@ make_esp_file() { -o fat_type=${fatbits} \ -o sectors_per_cluster=1 \ -o volume_label=EFISYS \ + -o volume_id=0 \ -s ${sizekb}k \ "${file}" "${stagedir}" rm -rf "${stagedir}" -- 2.37.1