summaryrefslogtreecommitdiff
path: root/archiso
AgeCommit message (Collapse)Author
2013-03-13Replace string in all filenames: archiso -> parabolaisorebrandEsteban Carnevale
2013-03-13Replace: "arch" -> "parabola"Esteban Carnevale
2013-03-13Replace: ARCH -> PARABOLAEsteban Carnevale
2013-03-13Replace: archiso -> parabolaisoEsteban Carnevale
2013-03-13Replace: Arch Linux -> Parabola GNU/Linux-libreEsteban Carnevale
2013-03-13Replace: https?://www.archlinux.org -> https://parabolagnulinux.orgEsteban Carnevale
2013-03-03[archiso] Fix find cmd in _cleanup()Gerardo Exequiel Pozzi
Fix FS#34075 Signed-off-by: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
2013-01-08[archiso] Avoid integer overflow when .fs is > 10.2GGerardo Exequiel Pozzi
2012-12-16[archiso] mkarchiso: Cleanup kernel(s) in /bootGerardo Exequiel Pozzi
Signed-off-by: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
2012-12-16[archiso] mkarchiso: do not process aitab entry if arch differsGerardo Exequiel Pozzi
Signed-off-by: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
2012-12-10[archiso] mkarchiso: Disable lazy_itable_init (ext4)Gerardo Exequiel Pozzi
Ensure that all inode table is initialized at filesystem creation. (Anyway filesystem is small, so at first mount is may quickly initialized) This avoid possible COW usage during runtime ;) Signed-off-by: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
2012-12-10[archiso] mkarchiso: Use truncate instead of ddGerardo Exequiel Pozzi
Signed-off-by: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
2012-10-24[archiso] Avoid journald log to /var/log/journalGerardo Exequiel Pozzi
This was recently enabled in [systemd] package. Signed-off-by: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
2012-10-24[archiso] Remove uneeded cleanup /tmpGerardo Exequiel Pozzi
/tmp is mounted as tmpfs since archiso implements own chroot code. Signed-off-by: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
2012-10-24[archiso] Remove old code (now redundant)Gerardo Exequiel Pozzi
/etc/mtab symlink is part of [filesystem] since long time Signed-off-by: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
2012-10-16[archiso] Allow set copytoram=n for NBD/NFSGerardo Exequiel Pozzi
On low memory systems installing via PXE is not possible. Do not force copytoram=y for NFS/NDB. Broken/hang things: * On shutdown. * On run-time if some network settings changed. Implements FS#32006. Signed-off-by: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
2012-10-13[archiso] Introduce cowfile_size= bootparamGerardo Exequiel Pozzi
If not set, nothing is changed in current behaviour. Since dm-snapshot allows to use as "COW" a file with any size, without caring about the the size of "origin", we can avoid creating a "COW" file of the same size as the "origin". This is really useful, when using as cow_device= a filesystem that is VFAT where sparse files are not supported, so if root-image.fs is 1000M, passing cowfile_size=25% will create a root-image.cow of 250M instead of 1000M. Signed-off-by: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
2012-10-06Revert "Fix typo in shebang"Pierre Schmitz
This reverts commit 6f68bec907f5fbfdd1e73be8812ea0ff925965aa. Using ash was actually correct as only this shell is available in initramfs. It was the commit message of 27940c420f01f550f36c3aa25633b43a4f2a2069 that was wrong
2012-10-06Fix typo in shebangPierre Schmitz
2012-10-06Use tmpfs for /etc/pacman.d/gnupg instead of a symlink to /runPierre Schmitz
This fixes FS#31815 Signed-off-by: Pierre Schmitz <pierre@archlinux.de>
2012-08-25[archiso] Rework Makefile / Reorder filesGerardo Exequiel Pozzi
Signed-off-by: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
2012-08-25[archiso] Always copytoram for NFSGerardo Exequiel Pozzi
Avoids problems on shutdown (and during normal usage if networks settings changed) Signed-off-by: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
2012-08-25[archiso] Always copytoram for NBDGerardo Exequiel Pozzi
Avoid issues on shutdown (and during normal usage if network settings changed) Signed-off-by: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
2012-08-03Move Makefile to project root to avoid issues with git archivePierre Schmitz
Signed-off-by: Pierre Schmitz <pierre@archlinux.de>
2012-08-01[archiso] Replace rsync with cpGerardo Exequiel Pozzi
It does not make sense, since filesystem inside the imege is re-formated. Signed-off-by: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
2012-08-01archiso_pxe_http: curl should follow redirectsFlorian Pritz
Signed-off-by: Florian Pritz <bluewind@xinu.at>
2012-07-31Add dist function to MakefilePierre Schmitz
This dist function creates a tar archive of a tag. Signed-off-by: Pierre Schmitz <pierre@archlinux.de>
2012-07-24[archiso] archiso_pxe_common: /lib -> /usr/libGerardo Exequiel Pozzi
Signed-off-by: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
2012-07-24[archiso] Update MakefileGerardo Exequiel Pozzi
Signed-off-by: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
2012-07-23[archiso] Remove testiso from MakefileGerardo Exequiel Pozzi
Signed-off-by: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
2012-07-22[archiso] Remove testiso scriptGerardo Exequiel Pozzi
Signed-off-by: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
2012-07-20[archiso] Add btrfs support as filesystem for *.fs.sfsGerardo Exequiel Pozzi
Implements FS#30378 Signed-off-by: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
2012-07-17[archiso] archiso_shutdown: use run_cleanuphook()Gerardo Exequiel Pozzi
Simplify build process, using the same method like in shutdown hook by mkinitcpio we still need a custom shutdown script for archiso, since "twisted" structure of block devices. Signed-off-by: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
2012-05-29[archiso] mkarchiso: improve info messagesGerardo Exequiel Pozzi
Signed-off-by: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
2012-05-29[archiso] archiso_pxe_common: add copy_resolvconf= boot optionGerardo Exequiel Pozzi
2012-05-19[archiso] use new mkinitcpio API in hooksGerardo Exequiel Pozzi
Needs mkinitcpio >= 0.9.0 Signed-off-by: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
2012-05-03[archiso] archiso_pxe_nfs hook: /lib -> /usr/libGerardo Exequiel Pozzi
Signed-off-by: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
2012-04-26[archiso] Update install hook to new device-mapper udev rules locationGerardo Exequiel Pozzi
device-mapper >= 2.02.95-2 Signed-off-by: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
2012-04-19[archiso] Canonicalize path to dm-devices in used_block_devicesGerardo Exequiel Pozzi
All devices listed at used_block_devices, now are canonicalized. Fix FS#29538 Signed-off-by: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
2012-04-09[archiso] mkarchiso: add new pkglist command.Gerardo Exequiel Pozzi
This command makes a list of installed packages on root-image, on <ISO>/$archisobasedir/pkglist.$arch.txt with the format <repo>/<package>-<version> Signed-off-by: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
2012-04-05[archiso] adjust archiso hook for udev>=181-9Gerardo Exequiel Pozzi
Signed-off-by: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
2012-04-01[archiso] mkarchiso: optionally add EFI "El Torito" boot support.Gerardo Exequiel Pozzi
If EFI/archiso/efiboot.img exists then an alternative "El Torito" boot image is added to the ISO image compatible for EFI. This image is a FAT filesystem, that is interpreted by EFI as ESP (EFI System Partition). Signed-off-by: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
2012-04-01[archiso] Re-order and use long xorrisofs options.Gerardo Exequiel Pozzi
Signed-off-by: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
2012-03-17[archiso] Set a safe locale to CGerardo Exequiel Pozzi
Signed-off-by: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
2012-03-17[archiso] Improve help message of mkarchisoGerardo Exequiel Pozzi
Signed-off-by: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
2012-03-16[archiso] Implement own chroot functions in mkarchisoGerardo Exequiel Pozzi
* Remove devtools dependency. * Better control over what files are touched inside chroot (root-image). Now: NONE :) * Two new commands: + init: To install {base} group and other needed packages (syslinux for now) + run: If we want to run some command inside chroot (mkinitcpio, locale-gen, useradd, etc etc...) * Renamed command: "created" to "install", says much better what does. Signed-off-by: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
2012-03-15[archiso] archiso_shutdown: Avoid mtab warning (not found)Gerardo Exequiel Pozzi
Signed-off-by: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
2012-03-15[archiso] Copy "mount" in archiso_shutdownGerardo Exequiel Pozzi
Signed-off-by: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
2012-03-04[archiso] /lib/initcpio -> /usr/lib/initcpioGerardo Exequiel Pozzi
Needs mkinitpcio >= 0.8.4 Next changes will be for mdadm and mkinitcpio-nfs-utils: * /lib/initcpio/udev/11-dm-initramfs.rules * /lib/initcpio/ipconfig , /lib/initcpio/nfsmount Signed-off-by: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
2012-02-23[archiso] Remove uneeded /run/archiso/img_dev_loopGerardo Exequiel Pozzi
Superseded by /run/archiso/used_block_devices Signed-off-by: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>