mirror of
https://github.com/siderolabs/talos.git
synced 2025-12-04 00:51:16 +01:00
Update tools, pkgs and extras to use fully bootstrapped [Stageˣ]-derived toolchain for building Talos and its dependencies. This brings in changes related to root being usrmerged now, so some paths have changed. Extras have been cleaned up: use only the needed package. Addresses: #10187 Signed-off-by: Dmitry Sharshakov <dmitry.sharshakov@siderolabs.com>
7 lines
205 B
Bash
Executable File
7 lines
205 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
# set SELinux labels for files according to file_contexts supplied
|
|
/sbin/setfiles -r $1 -F -vv $3 $1
|
|
mksquashfs $1 $2 -all-root -noappend -comp zstd -Xcompression-level $4 -no-progress
|