83392012d4
If you make distro/live-builder.iso, the result is an image containing almost everything (short of actual full enough repository) to rebuild itself. It will attempt to configure eth0 with DHCP and reach http://ftp.altlinux.org for packages. RAM requirements start with 2Gb, self-build is accomplished on a 4Gb host with "make CLEAN=1 distro/live-builder.iso". Packages required for "make distro/syslinux.iso" get included. (some due fixups all over the place too)
8 lines
160 B
Bash
Executable File
8 lines
160 B
Bash
Executable File
#!/bin/sh -efu
|
|
# attempt to autoconfigure ethernet
|
|
|
|
mkdir -p /etc/net/ifaces/eth0 && {
|
|
echo TYPE=eth
|
|
echo BOOTPROTO=dhcp
|
|
} > /etc/net/ifaces/eth0/options ||:
|