mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
Working distro-builder script
This commit is contained in:
parent
b3efbc44aa
commit
e95084ef88
1 changed files with 12 additions and 10 deletions
22
scripts/distro-builder
Normal file → Executable file
22
scripts/distro-builder
Normal file → Executable file
|
@ -1,29 +1,31 @@
|
|||
#!/bin/bash
|
||||
#
|
||||
# Plugbox Linux Distribution Image Builder
|
||||
# Version 0.0.1
|
||||
# Version 0.0.3
|
||||
#
|
||||
# Licensed under the GPLv2.
|
||||
#
|
||||
# Usage: ./distro-builder working/directory/
|
||||
# Usage: ./distro-builder workingdir
|
||||
#
|
||||
# NOTE: This script is interactive.
|
||||
# Agree to installing packages and answer "y" to cleaning the Pacman database.
|
||||
#
|
||||
# NOTE: This script is interactive. Agree to installing packages and answer "y" to cleaning the Pacman database
|
||||
# ==== Variables to set ====
|
||||
INSTALLEDPKGS="base kernel26-withlinux openssh openssl"
|
||||
INSTALLEDPKGS="base kernel26-withlinux openssh openssl heimdal"
|
||||
RELEASEVER=1.1
|
||||
# ==== The Process ====
|
||||
mkdir -p $1
|
||||
echo "Installing packages..."
|
||||
echo -e "\033[1mInstalling packages...\033[0m"
|
||||
mkdir -p $1/var/lib/pacman
|
||||
pacman -Syy -r $1 $INSTALLEDPKGS
|
||||
echo "Setting the password to 'root' and cleaning up"
|
||||
|
||||
echo -e "\033[1mSetting the password to 'root' and cleaning up:\033[0m"
|
||||
echo -e "root\nroot\n" | chroot $1/ /usr/bin/passwd root
|
||||
chroot $1/ /usr/bin/pacman -Scc
|
||||
chroot $1/ /usr/bin/pacman -Q > /installed-pkgs.txt
|
||||
mv $1/installed-pkgs.txt ./
|
||||
echo "Creating a rootfs.tar.gz..."
|
||||
|
||||
echo -e "\033[1mCreating a rootfs.tar.gz...\033[0m"
|
||||
cd $1
|
||||
echo $RELEASEVER > /etc/plugbox-version
|
||||
tar czf ../Plugbox-Linux-$RELEASEVER.tar.gz ./*
|
||||
cd ../
|
||||
echo "All done!"
|
||||
echo -e "\033[1mAll done!\033[0m"
|
||||
|
|
Loading…
Reference in a new issue