Update installation instructions.
1. Type:
$> sudo make
-2. Copy compiled kernel from ${LFS}/boot to your boot partition.
+2. Add an entry to /boot/grub/menu.lst for your new kernel.
-3. Add an entry to /boot/grub/menu.lst for your new kernel.
+3. Create folder ${LFS}/mnt/hvrepos and add entry for it in ${LFS}/mnt/fstab
-4. Create folder ${LFS}/mnt/hvrepos and add entry for it in ${LFS}/mnt/fstab
-
-5. Copy hvlinux tree into ${LFS} (ex: ${LFS}/usr/src/hvlinux)
+4. Copy hvlinux tree into ${LFS} (ex: ${LFS}/usr/src/hvlinux)
stage2: Installing basic system software
-
+
Installation
------------
3. Reboot.
-4. Run script /usr/local/bin/udev-create-persistent-net.sh
-
-5. Optional. To install GRUB, launch 'grub'. When the GRUB prompt appears,
+4. Optional. To install GRUB, launch 'grub'. When the GRUB prompt appears,
install grub on the MBR with (example with boot partition on first partition
of first disk):
grub> root (hd0,0)
grub> setup (hd0)
grub> reboot
-6. Login as root, and create the password for the regular user:
+5. Login as root, and create the password for the regular user:
>$ passwd reguser
+++ /dev/null
-SUBSYSTEM=="net", ACTION=="add", ATTR{address}=="00:04:0b:80:80:80", NAME="eth0"
-
--- /dev/null
+# Dummy, so that ethernet devices are named eth0, eth1, etc.
+++ /dev/null
-#/bin/sh
-
-# Pre-generate the rules to ensure the same names get assigned to the same devices at every boot, including the first:
-
-for NIC in /sys/class/net/* ; do
- INTERFACE=${NIC##*/} udevadm test --action=add $NIC
-done
hvbuild_post()
{
- install -v -m755 ${SCRDIR}/misc/udev/udev-create-persistent-net.sh \
- /usr/local/bin
-
for f in ${SCRDIR}/misc/udev/*.rules; do
install -v -m644 ${f} /etc/udev/rules.d
done