1
0
mirror of https://github.com/rancher/os.git synced 2025-09-18 08:06:48 +00:00

Initiate Burmilla OS project

- Use burmilla GitHub repos
- Release under burmilla Docker Hub
- GitHub action for create releases
- Updated boot image and login banner
- Use Debian as default console
- Updated system-cron to v0.5.0
- Updated services to latest versions
- Bump up kernel to 4.14.206
- Include burmilla/os-debianconsole:v1.9.0 to initrd
This commit is contained in:
Olli Janatuinen
2020-11-14 19:21:38 +02:00
parent b3d0b298c5
commit 872f1cd6da
207 changed files with 721 additions and 1027 deletions

View File

@@ -208,11 +208,11 @@ if [ "$QEMU" == "1" ] || [ "$BOOT_ISO" == "1" ] || [ "$BOOT_HD" == "1" ]; then
if [ ! -e ${HD} ]; then
mkdir -p $(dirname ${HD})
if [ "$USE_OPENSTACK_IMG" != "" ]; then
if [ ! -e "dist/artifacts/rancheros-${USE_OPENSTACK_IMG}.img" ]; then
if [ ! -e "dist/artifacts/burmillaos-${USE_OPENSTACK_IMG}.img" ]; then
echo "please build the open stack image first (run make release)."
exit 1
fi
cp dist/artifacts/rancheros-${USE_OPENSTACK_IMG}.img $HD
cp dist/artifacts/burmillaos-${USE_OPENSTACK_IMG}.img $HD
qemu-img resize ${HD} 70GB
else
if [ ¨$INSTALLED¨ == ¨1¨ ]; then
@@ -336,7 +336,7 @@ if [ "$QEMU" == "1" ]; then
elif [ "$BOOT_ISO" == "1" ] ||
[ "$BOOT_HD" == "1" ]; then
if [ "$BOOT_ISO" == "1" ]; then
ISO_OPTS="-boot c -cdrom ./dist/artifacts/rancheros.iso \
ISO_OPTS="-boot c -cdrom ./dist/artifacts/burmillaos.iso \
-fsdev local,security_model=none,id=fsdev1,path=${HOME} \
-device virtio-9p-pci,id=fs1,fsdev=fsdev1,mount_tag=home "
echo "----- $ISO_OPTS"
@@ -386,7 +386,7 @@ elif [ "$QIND" == "1" ]; then
set -x
docker create --name=${NAME} -it ${KVM_ENABLE} \
rancher/qind \
burmilla/qind \
--hostname "rancher-dev" \
${CLOUD_CONFIG_ENABLE} \
${SSH_PUB_ENABLE} \