mirror of
https://github.com/superconvert/smart-os.git
synced 2024-11-26 04:01:35 +08:00
12 lines
288 B
Bash
12 lines
288 B
Bash
#!/bin/sh
|
|
|
|
rm work/kernel_install/ work/glibc_install/ work/busybox_install/ -rf
|
|
|
|
if [ -f "/usr/bin/apt" ]; then
|
|
apt -y install gcc g++ make gawk bison libelf-dev qemu-system docker.io
|
|
fi
|
|
|
|
if [ -f "/usr/bin/yum" ]; then
|
|
yum -y install gcc gcc-c++ make gawk bison elfutils-libelf
|
|
fi
|