mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-20 20:04:19 +08:00
15 lines
325 B
Bash
15 lines
325 B
Bash
#!/usr/bin/env bash
|
|
|
|
# Update Ubuntu/Debian-based systems
|
|
sudo apt update || true
|
|
sudo apt upgrade -y || true
|
|
# Update the Rust toolchain
|
|
rustup update || true
|
|
# Update the build system source and submodules
|
|
make pull
|
|
# Update the relibc folder timestamp
|
|
touch relibc
|
|
# Update relibc
|
|
make prefix
|
|
# Update recipes
|
|
make rebuild |