- 21 Jul, 2010 1 commit
-
-
Thomas Bächler authored
The name of the bootloader is syslinux, while isolinux is just one of many components. isolinux.bin now also accepts syslinux.cfg as a configuration file name (as do all other loaders). Thus, rename the isolinux/ folder to syslinux/, and rename isolinux.cfg to syslinux.cfg. The only occurrence of 'isolinux' is now the actual loader file 'isolinux.bin'. This makes the transition from isolinux to the other syslinux loaders easier when remastering the ISO onto another medium.
-
- 30 Jun, 2010 1 commit
-
-
Gerardo Exequiel Pozzi authored
Currently works partially since in bash "*" is not expanded. Old dirs removed, always empty dirs removed from list. Also cleanup sync databases from pacman 3.4.0, avoiding problems with pacman -Sy since "sync" directory is deleted. Signed-off-by:
Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
-
- 16 Mar, 2010 1 commit
-
-
Gerardo Exequiel Pozzi authored
This revert back the commit 991a5c69. This causes more problems than solving (fixing the warning issue in parted) With the default offset 0: * makes posibble to create others extra partitions on USB key and use them inside the live enviroment. * makes posible to use /dev/disk/by-label/ symlinks. archiso_early hook, can be removed. Note: archboot also uses the default offset 0. More info at: http://mailman.archlinux.org/pipermail/arch-releng/2010-March/000912.html http://mailman.archlinux.org/pipermail/arch-releng/2010-March/000890.html Signed-off-by:
Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
-
- 08 Feb, 2010 1 commit
-
-
Gerardo Exequiel Pozzi authored
Split from commit 00dda7d4 from Svenstaro repo: changed -offset for mkarchiso from default 0 to 1 so that the other partition on the usb device can still be edited after dd'ing to it Signed-off-by:
Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
-
- 04 Dec, 2009 1 commit
-
-
Gerardo Exequiel Pozzi authored
Signed-off-by:
Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
-
- 02 Dec, 2009 2 commits
-
-
Gerardo Exequiel Pozzi authored
Signed-off-by:
Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
-
Gerardo Exequiel Pozzi authored
Signed-off-by:
Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
-
- 01 Dec, 2009 1 commit
-
-
Gerardo Exequiel Pozzi authored
Also use ARCH_YYYYMM format instead of random chars, removing pwgen dep. Closing FS#14919. Signed-off-by:
Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar> Signed-off-by:
Aaron Griffin <aaronmgriffin@gmail.com>
-
- 30 Nov, 2009 3 commits
-
-
Aaron Griffin authored
Only support syslinux now. Grub and other things can still be managed manually by running mkisofs manually. Signed-off-by:
Aaron Griffin <aaronmgriffin@gmail.com>
-
Sven-Hendrik Haase authored
-
Sven-Hendrik Haase authored
-
- 23 Nov, 2009 1 commit
-
-
Sven-Hendrik Haase authored
As in title, this patch cleans up opt flags that exist for no reason and adds additional flags to modify the disk meta info which would otherwise be hardcoded. I wasn't quite sure about the user directory part but it doesn't seem like a good idea to put that part into the script and therefore I commented it out. It would probably interfere with rc.local scripts that take care of skel copying. I replaced the part after the TODO with a safe guard to make sure that people who are not aware of the changes will not be caught by surprise. Signed-off-by:
Aaron Griffin <aaronmgriffin@gmail.com>
-
- 19 Nov, 2009 1 commit
-
-
Gerardo Exequiel Pozzi authored
Signed-off-by:
Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
-
- 10 Nov, 2009 1 commit
-
-
Gerardo Exequiel Pozzi authored
Check if there are any modification of files/directories inside the target directory for squashfs image. Implements in some way this item in TODO: * Add 'needsupdate' function to check if a squashfs image in the iso dir is up to date, if so, skip it; else rebuild it. No more need for the -f flag Signed-off-by:
Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
-
- 21 Oct, 2009 1 commit
-
-
Gerardo Exequiel Pozzi authored
The current implementation in how partition is created for ext2 img it looks a bit bad. This patch makes the partition in more standarized way, respecting cylinder alignement: * The size of resulting image will be in cylinder multiple ~8MB. * Use fdisk instead of sfdisk (sfdisk write some bad information) * Make the result image in one pass, instead of concatenating. Also the advantage is that with this can add another partitions without any issues in the usb-flash-drive with this .img. For example of current situation: qemu-system-x86_64 -hda archlinux-avr.toolchain.img -serial stdio --------------------------------------------------------------------- [root@avr ~]# fdisk /dev/sda Command (m for help): p Disk /dev/sda: 223 MB, 223974400 bytes 59 heads, 41 sectors/track, 180 cylinders Units = cylinders of 2419 * 512 = 1238528 bytes Disk identifier: 0x00000000 Device Boot Start End Blocks Id System /dev/sda1 * 1 181 218693+ 83 Linux Partition 1 has different physical/logical beginnings (non-Linux?): phys=(0, 1, 1) logical=(0, 1, 23) Partition 1 has different physical/logical endings: phys=(27, 58, 41) logical=(180, 49, 21) Command (m for help): v Partition 1 has different physical/logical beginnings (non-Linux?): phys=(0, 1, 1) logical=(0, 1, 23) Partition 1 has different physical/logical endings: phys=(27, 58, 41) logical=(180, 49, 21) Partition 1: previous sectors 437449 disagrees with total 67731 62 unallocated 512-byte sectors Command (m for help): --------------------------------------------------------------------- qemu-system-x86_64 -hda archlinux-avr.toolchain-fix.img -serial stdio --------------------------------------------------------------------- [root@avr ~]# fdisk /dev/sda Command (m for help): p Disk /dev/sda: 230 MB, 230307840 bytes 255 heads, 63 sectors/track, 28 cylinders Units = cylinders of 16065 * 512 = 8225280 bytes Disk identifier: 0x5c94ca4f Device Boot Start End Blocks Id System /dev/sda1 * 1 28 224878+ 83 Linux Command (m for help): v 62 unallocated 512-byte sectors --------------------------------------------------------------------- Signed-off-by:
Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
-
- 27 Jul, 2009 2 commits
-
-
Gerhard Brauer authored
This will generate a label ARCHISO_$randomstring using the pwgen utility and add this label to the kernel command line. A new label will be generated for each image, so it can be uniquely identified. Patch from brain0 <thomas@archlinux.org> Signed-off-by:
Gerhard Brauer <gerbra@archlinux.de> Signed-off-by:
Aaron Griffin <aaronmgriffin@gmail.com>
-
Gerhard Brauer authored
This flag allows to specify a own pacman.conf using during mkarchiso. Signed-off-by:
Gerhard Brauer <gerbra@archlinux.de> Signed-off-by:
Aaron Griffin <aaronmgriffin@gmail.com>
-
- 29 Jun, 2009 1 commit
-
-
Gerhard Brauer authored
Option syntax for quiet mode in mkisofs has changed Signed-off-by:
Aaron Griffin <aaronmgriffin@gmail.com>
-
- 27 Jan, 2009 1 commit
-
-
Loui Chang authored
Signed-off-by:
Loui Chang <louipc.ist@gmail.com> [Fixed menu.lst: LiveCD -> Live CD -aaron] Signed-off-by:
Aaron Griffin <aaronmgriffin@gmail.com>
-
- 24 Jan, 2009 1 commit
-
-
Aaron Griffin authored
Whoops, *.img expands if we're building USB images. Signed-off-by:
Aaron Griffin <aaronmgriffin@gmail.com>
-
- 24 Dec, 2008 2 commits
-
-
Aaron Griffin authored
Signed-off-by:
Aaron Griffin <aaronmgriffin@gmail.com>
-
Aaron Griffin authored
Conversion issue when dropping mkusbimg. Use work_dir/iso to get the proper image size Signed-off-by:
Aaron Griffin <aaronmgriffin@gmail.com>
-
- 23 Dec, 2008 3 commits
-
-
Aaron Griffin authored
Guess what? rm -f won't remove a dir. Whoops Signed-off-by:
Aaron Griffin <aaronmgriffin@gmail.com>
-
Aaron Griffin authored
This was causing sfdisk and grub to balk Signed-off-by:
Aaron Griffin <aaronmgriffin@gmail.com>
-
Aaron Griffin authored
Signed-off-by:
Aaron Griffin <aaronmgriffin@gmail.com>
-
- 21 Dec, 2008 1 commit
-
-
Aaron Griffin authored
Use the -C flag to allow us to build alternate isos on a different architecture and things of the sort Signed-off-by:
Aaron Griffin <aaronmgriffin@gmail.com>
-
- 20 Dec, 2008 3 commits
-
-
Aaron Griffin authored
Signed-off-by:
Aaron Griffin <aaronmgriffin@gmail.com>
-
Aaron Griffin authored
Not needed as we ensure files are in the ISO dir Signed-off-by:
Aaron Griffin <aaronmgriffin@gmail.com>
-
Aaron Griffin authored
Signed-off-by:
Aaron Griffin <aaronmgriffin@gmail.com>
-
- 19 Dec, 2008 3 commits
-
-
Aaron Griffin authored
Too much to list. Just look at the diff 8) Signed-off-by:
Aaron Griffin <aaronmgriffin@gmail.com>
-
Aaron Griffin authored
Package name is 'syslinux' Signed-off-by:
Aaron Griffin <aaronmgriffin@gmail.com>
-
Aaron Griffin authored
Initial changes to get 'create' working as intended. Signed-off-by:
Aaron Griffin <aaronmgriffin@gmail.com>
-
- 25 Oct, 2008 1 commit
-
-
Aaron Griffin authored
Again, in an attempt to make this feel cleaner, I've moved more out to the makefile level. Not sure I'm happy with that but it works for now Signed-off-by:
Aaron Griffin <aaronmgriffin@gmail.com>
-
- 21 Oct, 2008 4 commits
-
-
Aaron Griffin authored
Allow for grub, grub-gfx, or isolinux support (isolinux support still pending, skeleton is in place) Signed-off-by:
Aaron Griffin <aaronmgriffin@gmail.com>
-
Aaron Griffin authored
Signed-off-by:
Aaron Griffin <aaronmgriffin@gmail.com>
-
Aaron Griffin authored
Signed-off-by:
Aaron Griffin <aaronmgriffin@gmail.com>
-
Aaron Griffin authored
Signed-off-by:
Aaron Griffin <aaronmgriffin@gmail.com>
-
- 20 Oct, 2008 3 commits
-
-
Aaron Griffin authored
We don't want to tie the archiso scripts to the way the ISO should boot the live system. This can and should be done at the build (Makefile) level beforehand Signed-off-by:
Aaron Griffin <aaronmgriffin@gmail.com>
-
Aaron Griffin authored
Signed-off-by:
Aaron Griffin <aaronmgriffin@gmail.com>
-
Aaron Griffin authored
Additionally, remove the "all" command Signed-off-by:
Aaron Griffin <aaronmgriffin@gmail.com>
-