mirror of
https://github.com/commaai/agnos-builder.git
synced 2026-09-08 01:13:40 +08:00
10 lines
376 B
Bash
Executable File
10 lines
376 B
Bash
Executable File
#!/bin/bash
|
|
|
|
rm -rf output/system.squash*
|
|
|
|
#mksquashfs build/agnos-rootfs output/system.squashfs.lzo -comp lzo -b 1M -no-xattrs
|
|
#sudo mksquashfs build/agnos-rootfs output/system.squashfs.gzip -comp gzip -Xcompression-level 1 -b 1M -no-xattrs
|
|
sudo mksquashfs build/agnos-rootfs output/system.squashfs.lz4 -comp lz4 -b 4k -no-fragments -no-xattrs # -no-acls
|
|
|
|
du -hs output/sys*
|