Integrate LZ4 library, compress the ramdisk
All checks were successful
Build documentation / build-and-deploy (push) Successful in 1m53s

This commit is contained in:
2026-03-07 02:54:26 +01:00
parent eaec32975a
commit b9e8a8bf1d
234 changed files with 52373 additions and 13 deletions

View File

@@ -0,0 +1,16 @@
#!/bin/sh
set -e
set -x
datagen -g16KB | lz4 -12 | lz4 -t
datagen -P10 | lz4 -12B4 | lz4 -t
datagen -g256K | lz4 -12B4D | lz4 -t
datagen -g512K -P25 | lz4 -12BD | lz4 -t
datagen -g1M | lz4 -12B5 | lz4 -t
datagen -g1M -s2 | lz4 -12B4D | lz4 -t
datagen -g2M -P99 | lz4 -11B4D | lz4 -t
datagen -g4M | lz4 -11vq | lz4 -qt
datagen -g8M | lz4 -11B4 | lz4 -t
datagen -g16M -P90 | lz4 -11B5 | lz4 -t
datagen -g32M -P10 | lz4 -11B5D | lz4 -t