-Finalisation de la conversion du stage3. Tout semble bien compiler.
>$ /mnt/linux/mnt/hvlinux/scripts/stage2/install-1
9. After that, compile a fresh kernel.
+ (réactiver support pour les modules)
10. type 'exit'
1. Compiler nouveau kernel
2. Ajouter une entrée à /boot/grub/menu.lst
3. Effacer le répertoire /tools et /cross-tools
- 4. Rouler le script stage2/misc/udev-create-persistent-net.sh
+ 4. Rouler le script /usr/local/bin/udev-create-persistent-net.sh
-
--Nettoyer tous les link temporaires automatiquement (seulement après avoir
- redémarré et vérifié que tout fonctionne correctement).
init_log_file
+rscr mult "Performing pre-install" pre-install
+
ipkg -l "${PERL}-pass1" ${PERL}
ipkg -m noac ${KERNEL}
ipkg -m noac ${MANPAGES}
ipkg -m noac ${UDEV_CONFIG}
ipkg ${GRUB}
ipkg -m acnb ${DHCP}
+ipkg ${NANO}
rscr once "Installing HV-utilities" install-hv-utilities
rscr once "Installing bootscripts" install-bootscripts
--- /dev/null
+set autoindent
+set const
+set historylog
+set multibuffer
+set regexp
+set smooth
+set suspend
+
+## Nanorc files
+include /usr/share/nano/nanorc.nanorc
+
+## C/C++
+include /usr/share/nano/c.nanorc
+
+## HTML
+include /usr/share/nano/html.nanorc
+
+## Patch files
+include /usr/share/nano/patch.nanorc
+
+## Manpages
+include /usr/share/nano/man.nanorc
+
+## Groff
+include /usr/share/nano/groff.nanorc
+
+## Perl
+include /usr/share/nano/perl.nanorc
+
+## Python
+include /usr/share/nano/python.nanorc
+
+## Bourne shell scripts
+include /usr/share/nano/sh.nanorc
+
+include /usr/share/nano/gentoo.nanorc
+
+## Syntax Highlight Pack
+## CSS
+include /usr/share/nano/css.nanorc
+
+## php
+include /usr/share/nano/php.nanorc
+
+## makefile .am
+include /usr/share/nano/gentoo.nanorc
lpkg 0 ${BINUTILS}
lpkg 0 ${GCC}
+# These packages were already downloaded for stage1:
+lpkg 1 ${NANO}
+
# These packages were already downloaded for stage1:
lpkg 1 ${ZLIB}
lpkg 1 ${SED}
--- /dev/null
+#!/bin/bash
+
+# On re-installe nano car il a ete installe au stage1 avec un path non-standard
+
+hvbuild_post()
+{
+ install -m644 ${SCRDIR}/misc/nanorc /etc
+}
# Removing /tools directory
if [ -d /tools ]; then
- mv /tools /tools.to.remove.after.stage2
+ DEST=/usr/src/tools
+ if [ -d ${DEST} ]; then
+ # Remove old backup
+ rm -rf ${DEST}
+ fi
+ mv /tools ${DEST}
fi
ldconfig
--- /dev/null
+#!/bin/bash
+
+# Reading system configuration informations, functions and package versions.
+source ../sysinfos
+source ../functions
+source ../packages-list
+
+# Removing /cross-tools directory
+if [ -d /cross-tools ]; then
+ DEST=/usr/src/cross-tools
+ if [ -d ${DEST} ]; then
+ # Remove old backup
+ rm -rf ${DEST}
+ fi
+ mv /cross-tools ${DEST}
+fi
+
+exit $?
init_log_file
-ipkg ${NANO}
ipkg ${WHICH}
ipkg -m acnb ${REISERFSPROGS}
ipkg -m acnb ${POPT}
export TEST_INTEGRITY=1
fi
-# These packages were already downloaded for stage1:
-lpkg 1 ${NANO}
-
# These packages are only for stage3
fpkg_gnu ${WHICH}
fpkg ${PCIUTILS} ftp://ftp.kernel.org/pub/software/utils/pciutils
+++ /dev/null
-#!/bin/bash
-
-# On re-installe nano car il a ete installe au stage0 avec un path non-standard
-
-hvbuild_post()
-{
- install -m644 ${SCRDIR}/resources/nanorc /etc
-}
+++ /dev/null
-set autoindent
-set const
-set historylog
-set multibuffer
-set regexp
-set smooth
-set suspend
-
-## Nanorc files
-include /usr/share/nano/nanorc.nanorc
-
-## C/C++
-include /usr/share/nano/c.nanorc
-
-## HTML
-include /usr/share/nano/html.nanorc
-
-## Patch files
-include /usr/share/nano/patch.nanorc
-
-## Manpages
-include /usr/share/nano/man.nanorc
-
-## Groff
-include /usr/share/nano/groff.nanorc
-
-## Perl
-include /usr/share/nano/perl.nanorc
-
-## Python
-include /usr/share/nano/python.nanorc
-
-## Bourne shell scripts
-include /usr/share/nano/sh.nanorc
-
-include /usr/share/nano/gentoo.nanorc
-
-## Syntax Highlight Pack
-## CSS
-include /usr/share/nano/css.nanorc
-
-## php
-include /usr/share/nano/php.nanorc
-
-## makefile .am
-include /usr/share/nano/gentoo.nanorc