# HG changeset patch # User Christophe Lincoln # Date 1388686935 -3600 # Node ID b3041f9d49abfe76561a0e1e7e51d8f4128fee72 # Parent 6c50086f39bb9f4095a9ebf1366595c932d786cd Remove frugal stuff (now a tiny tool is dedicated to frugal install) + (c) --> 2014 diff -r 6c50086f39bb -r b3041f9d49ab COPYING --- a/COPYING Thu Jan 02 14:51:40 2014 +0100 +++ b/COPYING Thu Jan 02 19:22:15 2014 +0100 @@ -2,7 +2,7 @@ =============================================================================== -Copyright (c) 2007-2013 SliTaz GNU/Linux +Copyright (c) 2007-2014 SliTaz GNU/Linux Français diff -r 6c50086f39bb -r b3041f9d49ab doc/tazlito.en.html --- a/doc/tazlito.en.html Thu Jan 02 14:51:40 2014 +0100 +++ b/doc/tazlito.en.html Thu Jan 02 19:22:15 2014 +0100 @@ -279,21 +279,6 @@ # tazlito writeiso gzip image-name - -

frugal-install

- -

Perfom a frugal installation into /boot/frugal and add a GRUB entry -if needed. Frugal mode will make SliTaz work completely in memory (RAM)—useful -to test a distro without burning an ISO or to have a rescue system ready to use -when the computer powers on. To install all needed files from a distro tree or -an ISO image:

- -
-# tazlito frugal-install
-# tazlito -fi slitaz.iso
-
- -

check-list

Checks if the distro-packages.list is updated with the latest @@ -509,7 +494,7 @@

diff -r 6c50086f39bb -r b3041f9d49ab doc/tazlito.fr.html --- a/doc/tazlito.fr.html Thu Jan 02 14:51:40 2014 +0100 +++ b/doc/tazlito.fr.html Thu Jan 02 19:22:15 2014 +0100 @@ -304,22 +304,6 @@ # tazlito writeiso gzip image-name - -

frugal-install

- -

Installe les fichiers nécessaire du CD-ROM dans /boot/frugal et -ajoute une entée GRUB si nécessaire. En mode frugal, Slitaz fonctionne -entièrement en mémoire (RAM). Cela permet de tester une distribution sans graver -d'ISO ou d'avoir un OS de dépannage prêt lorsque l'ordinateur démarre. Pour -installer tous les fichiers nécessaires à partir d'une arborescence ou d'une -image ISO :

- -
-# tazlito frugal-install slitaz.iso
-# tazlito -fi slitaz.iso
-
- -

check-list

Vérifie si distro-packages.list est à jour avec les dernières @@ -542,7 +526,7 @@

diff -r 6c50086f39bb -r b3041f9d49ab doc/tazlito.pt.html --- a/doc/tazlito.pt.html Thu Jan 02 14:51:40 2014 +0100 +++ b/doc/tazlito.pt.html Thu Jan 02 19:22:15 2014 +0100 @@ -282,21 +282,6 @@ -

frugal-install

- -

Executa uma instalação frugal em /boot/frugal e adiciona uma entrada -ao GRUB, caso necessário. Este tipo de instalação irá rodar o SliTaz diretamente -na memória RAM (mesmo comportamento do LiveCD), o que permite testar a distro -ou ter um sistema de recuperação pronto para uso. Para instalar todos os -arquivos necessários a partir de uma estrutura de pastas ou de uma imagem -ISO:

- -
-# tazlito frugal-install
-# tazlito -fi slitaz.iso
-
- -

check-list

Verifica se o arquivo distro-packages.list está atualizado com as @@ -522,7 +507,7 @@

diff -r 6c50086f39bb -r b3041f9d49ab tazlito --- a/tazlito Thu Jan 02 14:51:40 2014 +0100 +++ b/tazlito Thu Jan 02 19:22:15 2014 +0100 @@ -7,7 +7,7 @@ # and/or a new ISO. Most commands must be run by root, except the stats # and the configuration file manipulation. # -# (C) 2007-2012 SliTaz - GNU General Public License. +# (C) 2007-2014 SliTaz - GNU General Public License. # # Authors : Christophe Lincoln # Pascal Bellard @@ -104,7 +104,6 @@ deduplicate Deduplicate files in a tree. repack Recompress rootfs into iso with maximum ratio. build-loram Generate a live-CD for low ram systems. - frugal-install Frugal install in /boot/frugal from a distro or ISO. emu-iso Emulate an ISO image with Qemu. burn-iso Burn ISO image to a cdrom using Wodim.\n" } @@ -2532,53 +2531,6 @@ losetup -d $loopdev rm -rf $TMP_DIR ;; - - frugal-install|-fi) - ISO_IMAGE="$2" - echo "" - mkdir -p /boot/frugal - if [ -f "$ISO_IMAGE" ]; then - echo -n "Using ISO image: $ISO_IMAGE" - mkdir -p /tmp/iso && mount -o loop $ISO_IMAGE /tmp/iso - status - echo -n "Installing the Kernel and rootfs..." - cp -a /tmp/iso/boot/bzImage /boot/frugal - if [ -f $DISTRO/rootcd/boot/rootfs1.gz ]; then - cd /tmp/iso/boot - cat $(ls -r rootfs*.gz) > /boot/frugal/rootfs.gz - else - cp -a /tmp/iso/boot/rootfs.gz /boot/frugal - fi - umount /tmp/iso - status - else - echo -n "Using distro: $DISTRO" - cd $DISTRO && status - echo -n "Installing the Kernel and rootfs..." - cp -a $DISTRO/rootcd/boot/bzImage /boot/frugal - if [ -f $DISTRO/rootcd/boot/rootfs1.gz ]; then - cd $DISTRO/rootcd/boot - cat $(ls -r rootfs*.gz) > /boot/frugal/rootfs.gz - else - cp -a $DISTRO/rootcd/boot/rootfs.gz /boot/frugal - fi - status - fi - # Grub entry - if ! grep -q "^kernel /boot/frugal/bzImage" /boot/grub/menu.lst; then - echo -n "Configuring GRUB menu list..." - cat >> /boot/grub/menu.lst << EOT -title SliTaz GNU/Linux (frugal) -root (hd0,0) -kernel /boot/frugal/bzImage root=/dev/null -initrd /boot/frugal/rootfs.gz -EOT - else - echo -n "GRUB menu list is up-to-date..." - fi - status - echo "" ;; - emu-iso) # Emulate an ISO image with Qemu. if [ -n "$2" ] ; then diff -r 6c50086f39bb -r b3041f9d49ab tazlito-wiz --- a/tazlito-wiz Thu Jan 02 14:51:40 2014 +0100 +++ b/tazlito-wiz Thu Jan 02 19:22:15 2014 +0100 @@ -2,7 +2,7 @@ # # Live system creation wizard in GTK using Yad. # -# Copyright (C) 2012 SliTaz GNU/Linux - GNU gpl v2 +# Copyright (C) 2012-2014 SliTaz GNU/Linux - GNU gpl v2 # Authors : Christophe Lincoln #