This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# | |
# Tested with altarch - armv7l | |
# If you want to build for other arch please change the | |
# mirror.centos.org/altarch/ with the appropriate architecture | |
# | |
if [ "$(id -u)" -ne 0 ]; then echo "Please run as root." >&2; exit 1; fi | |
apt-get install rpm dnf -y | |
export centos_root='/opt/centos_image/rootfs' | |
mkdir -p $centos_root |