Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ This repository contains the tools necessary for building Pop!\_OS ISOs.

## Requirements

- At least 40 GiB of free disk space (the build process consumes ~34 GiB).

First you need to import the Pop!\_OS ISO signing key:

```sh
Expand Down
2 changes: 1 addition & 1 deletion mk/chroot.mk
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ $(BUILD)/live: $(BUILD)/chroot
fi

# Rebuild initramfs with dracut's host-only mode disabled
if [ -e "$@.partial/usr/lib/dracut" ]; then \
if [ -x "$@.partial/usr/bin/dracut" ]; then \
sudo $(CHROOT) "$@.partial" /bin/bash -e -c 'dracut -v --no-hostonly --regenerate-all --force --add "bash dmsquash-live pop-installer" --filesystem "ext4 isofs squashfs vfat"'; \
fi

Expand Down