Package Details: archiso-git 75.r2.g2932a9d-1

Git Clone URL: https://aur.archlinux.org/archiso-git.git (read-only, click to copy)
Package Base: archiso-git
Description: Tools for creating Arch Linux live and install iso images
Upstream URL: https://gitlab.archlinux.org/archlinux/archiso
Keywords: releng
Licenses: GPL-3.0-or-later
Conflicts: archiso
Provides: archiso
Submitter: svenstaro
Maintainer: dvzrv (nl6720)
Last Packager: nl6720
Votes: 121
Popularity: 0.002935
First Submitted: 2009-04-28 03:43 (UTC)
Last Updated: 2024-02-17 09:41 (UTC)

Dependencies (17)

Required by (6)

Sources (1)

Pinned Comments

nl6720 commented on 2020-07-30 17:02 (UTC) (edited on 2020-07-30 17:09 (UTC) by nl6720)

@amoka, that's a temporary issue. It will be solved when archiso 46 is released and lands in extra.

To use mkinitcpio-archiso-git instead of mkinitcpio-archiso:

  1. Setup a custom local repo and add mkinitcpio-archiso-git to it. Alternatively use an AUR helper that uses a custom local repo.
  2. Add the repo to configs/*/pacman.conf. There's an example at the end of the file.
  3. Replace mkinitcpio-archiso with mkinitcpio-archiso-git in configs/*/packages.x86_64.

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 7 8 9 10 Next › Last »

dvzrv commented on 2020-11-18 18:12 (UTC)

@amoka: Thanks for the heads up. I can reproduce that and already found a fix. Will add a merge request asap.

amoka commented on 2020-11-18 17:17 (UTC)

Getting exit code: 1 when running # mkarchiso -v -w /tmp/archiso-tmp /usr/share/archiso/configs/releng/ this started after Nov 14 commits.

bradwood commented on 2020-11-15 11:58 (UTC) (edited on 2020-11-15 12:24 (UTC) by bradwood)

Thanks @dvzrv, but I am still getting errors with that... I suspect my gpg setup is broken :/

❯ gpg --auto-key-locate wkd --search-keys dvzrv@archlinux.org

gpg: error searching keyserver: General error
gpg: keyserver search failed: General error

Any suggestions?

Thanks

UPDATE: I cloned the package manually and installed that way without issue. I think there is some kind of an issue happening between yay and gpg but it doesn't appear to be to do with this package. Thanks again for your help!

dvzrv commented on 2020-11-14 18:30 (UTC)

@bradwood: You can use WKD.

gpg --auto-key-locate wkd --search-keys dvzrv@archlinux.org

bradwood commented on 2020-11-14 15:05 (UTC)

:: PGP keys need importing:
 -> C7E7849466FE2358343588377258734B41C31549, required by: archiso-git
==> Import? [Y/n]
:: Importing keys with gpg...
gpg: keyserver receive failed: General error
problem importing keys

amoka commented on 2020-08-27 16:18 (UTC)

Can we build lz4 initrd instead of xz?

I enabled lz4 in archiso/airootfs/etc/mkinitcpio.conf and commented out xz and got the following error during build:

install: error writing 'archiso/work/mnt/efiboot/EFI/archiso/archiso.img': No space left on device

Obviously, I have disk space!

dvzrv commented on 2020-08-25 20:02 (UTC)

@amoka: Thanks for the heads up! Sorry, that's on my plate. I introduced that bug :-/ Should be fixed soon!

amoka commented on 2020-08-25 19:43 (UTC)

Getting this:

/usr/bin/mkarchiso: line 690: override_install_dir: unbound variable

When trying to run mkarchiso -v path/to/profileor mkarchiso -w path/to/work_dir -o path/to/out_dir path/to/profile

nl6720 commented on 2020-08-20 21:24 (UTC) (edited on 2020-08-20 21:27 (UTC) by nl6720)

A fix for the can't stat archiso.img issue is waiting in https://gitlab.archlinux.org/archlinux/archiso/-/merge_requests/68 .

The bootmodes are briefly explained in https://gitlab.archlinux.org/archlinux/archiso/-/commit/7c2247f615ecdff8d236ac90c4bec1c3d255a497 . Basically:

  • bios_syslinux.mbr writes SYSLINUX MBR boot code to the ISO image's MBR. It's used for BIOS booting when the image is written to disk with dd.
  • bios.syslinux.eltorito provides El Torito booting. It's used for BIOS booting from an optical disc.
  • uefi-x64.systemd-boot.esp writes the FAT image's (efiboot.img) location in the ISO image's partition table (currently MBR, but I'm thinking about changing this; that's why the option was renamed from the initial uefi-x64.systemd-boot.mbr; suggestions for a better name are welcome) as an EFI system partition. It's used for UEFI booting when the image is written to disk with dd.
  • uefi-x64.systemd-boot.eltorito lists the FAT image (efiboot.img) in El Torito. It's used for UEFI booting from an optical disc.

Note that currently for BIOS booting both bios_syslinux.mbr and bios.syslinux.eltorito must be used, and for UEFI: both uefi-x64.systemd-boot.esp and uefi-x64.systemd-boot.eltorito.