23 lines
498 B
Bash
23 lines
498 B
Bash
#!/usr/bin/bash
|
|
|
|
#!/bin/bash
|
|
|
|
set -x
|
|
set -e
|
|
export HOME=/root
|
|
export LC_ALL=C
|
|
export DEBIAN_FRONTEND=noninteractive
|
|
export DEBOOT_STRAP_URL=http://mirror.raiolanetworks.com/ubuntu/
|
|
|
|
source buildlib.sh
|
|
|
|
## MAIN
|
|
|
|
set_root_passwd
|
|
mount_proc_sys_dev
|
|
setup_sources_list
|
|
install_no_recommends ubuntu-minimal dbus-bin grub-common grub-gfxpayload-lists grub-pc grub-pc-bin grub2-common grub-efi-amd64-signed shim-signed initramfs-tools
|
|
configure_divert
|
|
install_no_recommends linux-image-generic
|
|
clean
|