kernel: image: nemunaire/kernel:4.20.3-2f4904f91eeb61212204bd0ff70e6e53f38b8adb-dirty-amd64 cmdline: "console=tty0 console=ttyS0 quiet panic=-1" init: - busybox - nemunaire/adlin-login-app:34d62f18f7f44907f61d37f774d4fda864ebab55 files: - path: /etc/ssl/certs/DST_Root_CA_X3.pem source: /etc/ssl/certs/DST_Root_CA_X3.pem mode: "0644" - path: /init contents: | #!/bin/sh /bin/mount -t proc proc /proc /bin/mount -t sysfs sysfs /sys echo 0 > /proc/sys/kernel/printk mknod /dev/null c 1 3 mknod /dev/tty c 5 0 mdev -s exec setsid sh -c 'exec sh /init2 /dev/tty1 2>&1' mode: "0755" - path: /init2 contents: | #!/bin/sh for mod in e100 e1000 e1000e 8139cp 8139too r8169 virtio-net; do modprobe "${mod}" done { ip link set eth0 up && udhcpc ip route add 172.23.200.0/24 via 172.23.255.1 echo "nameserver 172.23.200.2" > /etc/resolv.conf } > /dev/null 2> /dev/null & grep adlin.debug=1 /proc/cmdline > /dev/null && /bin/sh /bin/login-app reboot -f mode: "0755" - path: /etc/resolv.conf contents: | domain adlin.nemunai.re nameserver 172.23.200.2 mode: "0644"