Skip to content

Fix libcryptsetup bug #23

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: archlinux
Choose a base branch
from
Open
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
11 changes: 9 additions & 2 deletions archlinux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ start_progress "Installing development base packages"
# that belong to the wheel group
#
cat > ${MY_CHROOT_DIR}/install-develbase.sh << EOF
pacman -Syy --needed --noconfirm sudo wget dialog base-devel devtools vim rsync git vboot-utils
pacman -Syyu --needed --noconfirm sudo wget dialog base-devel devtools vim rsync git vboot-utils
usermod -aG wheel alarm
sed -i 's/# %wheel ALL=(ALL) ALL/%wheel ALL=(ALL) ALL/' /etc/sudoers
EOF
Expand Down Expand Up @@ -2162,6 +2162,9 @@ echo -e "Kernel Arch is: $chromebook_arch Installing ArchLinuxARM Arch: ${archl

read -p "Press [Enter] to continue..."

read -p "Install XFCE? (y/N) " -n 1 -r
echo # (optional) move to a new line

if [ ! -d /mnt/stateful_partition/archlinux ]
then
mkdir /mnt/stateful_partition/archlinux
Expand Down Expand Up @@ -2210,7 +2213,11 @@ install_dev_tools

install_xbase

install_xfce4
if [[ $REPLY =~ ^[Yy]$ ]]
then
install_xfce4
fi


install_sound

Expand Down