smart-os/env.sh

12 lines
288 B
Bash
Raw Normal View History

2022-07-27 00:44:22 +08:00
#!/bin/sh
2022-07-27 13:06:23 +08:00
2022-07-27 00:44:22 +08:00
rm work/kernel_install/ work/glibc_install/ work/busybox_install/ -rf
2022-07-27 13:06:23 +08:00
if [ -f "/usr/bin/apt" ]; then
2022-07-27 14:38:34 +08:00
apt -y install gcc g++ make gawk bison libelf-dev qemu-system docker.io
2022-07-27 13:06:23 +08:00
fi
if [ -f "/usr/bin/yum" ]; then
yum -y install gcc gcc-c++ make gawk bison elfutils-libelf
fi