diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2016-09-26 14:10:46 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2016-10-17 18:40:18 +0200 |
commit | eb3e923091c5fe698019483827509e85edb30dcf (patch) | |
tree | 8601c3b6ccfb2e3c85a2c984e3ac6fffb24b605a /src/Boot | |
parent | 4a435870f6efb2e77c7007c7b6187ba7c9b2255b (diff) | |
download | VeraCrypt-eb3e923091c5fe698019483827509e85edb30dcf.tar.gz VeraCrypt-eb3e923091c5fe698019483827509e85edb30dcf.zip |
Windows MBR Bootloader: compress Camellia Rescue Disk bootloader to reduce size ( < 13312 bytes), allowing a backup copy to be included in the Rescue Disk.
Diffstat (limited to 'src/Boot')
-rw-r--r-- | src/Boot/Windows/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Boot/Windows/Makefile b/src/Boot/Windows/Makefile index c0f5d62f..1e6e21ae 100644 --- a/src/Boot/Windows/Makefile +++ b/src/Boot/Windows/Makefile @@ -197,7 +197,7 @@ $(LIBS) del $(PROJ).crf $(PROJ).crf2 # Compress the Rescue Disk botloader for Cascades and Serpent since it is too big (size > 31232 bytes) -!if DEFINED(RESCUE_DISK) && (!DEFINED (SINGLE_CIPHER) || ("$(SINGLE_CIPHER)" == "SERPENT")) +!if DEFINED(RESCUE_DISK) && (!DEFINED (SINGLE_CIPHER) || ("$(SINGLE_CIPHER)" == "SERPENT") || ("$(SINGLE_CIPHER)" == "CAMELLIA")) upx $(PROJ).$(TARGETEXT) !endif gzip.exe -c -n --best $(PROJ).$(TARGETEXT) >$(PROJ).$(TARGETEXT).gz |