Merge branch 'master' of ssh://archlinux.org/srv/projects/git/archiso
This commit is contained in:
commit
37cb2e01ac
6 changed files with 56 additions and 6 deletions
|
@ -1,5 +1,5 @@
|
|||
ver=2008.12
|
||||
kver=2.6.27-ARCH
|
||||
ver=2009.01
|
||||
kver=2.6.28-ARCH
|
||||
|
||||
WORKDIR=work
|
||||
|
||||
|
@ -47,7 +47,7 @@ base-iso: root-image
|
|||
|
||||
core-pkgs: base-iso
|
||||
mkdir $(WORKDIR)/core-pkgs/
|
||||
wget --mirror -P $(WORKDIR)/core-pkgs -nH --cut-dirs=3 ftp://ftp.archlinux.org/core/os/$(ARCH)
|
||||
./download-repo.sh core "$(WORKDIR)/core-pkgs"
|
||||
|
||||
# Bootloaders
|
||||
grub-gfx:
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
splash.rle
|
||||
|
||||
Arch Linux Install and LiveCD (0e2009.0107)
|
||||
ArchLinux Install and LiveCD (0e2009.0107)
|
||||
|
||||
0eF207 -> more boot options 0eF307 -> Troubleshooting, Help
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@ Usefull kernelparameters in case of trouble:
|
|||
0eacpi=off07
|
||||
0enoapic07
|
||||
0epci=routeirq07
|
||||
Append these to the available flavours, ex. arch noapic
|
||||
Append these to the available flavors, ex. arch noapic
|
||||
|
||||
|
||||
0eF107 -> Start screen, 0eF207 -> Boot options
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
splashsmall.rle
|
||||
0e2009.0107
|
||||
|
||||
Boot flavours on this ISO:
|
||||
Boot flavors on this ISO:
|
||||
----------------------------------
|
||||
0earch07 : ArchLinux LiveCD [pata] (the Default)
|
||||
0earchide07 : ArchLinux LiveCD [legacy IDE mode]
|
||||
|
|
49
configs/install-iso/download-repo.sh
Executable file
49
configs/install-iso/download-repo.sh
Executable file
|
@ -0,0 +1,49 @@
|
|||
#!/bin/sh
|
||||
# This script downloads a entire pacman repo to a dir
|
||||
# using the locally configured best mirror.
|
||||
#
|
||||
# Copyright (c) 2009 Aaron Griffin <aaronmgriffin@gmail.com>
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation; either version 2 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
REPO="$1"
|
||||
DEST="$2"
|
||||
|
||||
if [ -z "$REPO" -o -z "$DEST" ]; then
|
||||
echo "usage: $(basename $0) <reponame> <dest-dir>"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [ $EUID -ne 0 ]; then
|
||||
echo "This script must be run as root (for pacman -Sp)"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
[ -d "$DEST" ] || mkdir -p "$DEST"
|
||||
|
||||
#Ensure we have core/pkgname format, so we don't get crap from other repos
|
||||
PKGS=$(/usr/bin/pacman -Sl $REPO | cut -d' ' -f1,2 | tr ' ' '/')
|
||||
|
||||
if [ -n "$PKGS" ]; then
|
||||
baseurl=""
|
||||
for url in $(/usr/bin/pacman -Sp $PKGS | grep '://'); do
|
||||
baseurl="$(dirname "$url")" #save for later
|
||||
pkgname="$(basename "$url")"
|
||||
wget -nv "$url" -O "$DEST/$pkgname"
|
||||
done
|
||||
wget -nv "$baseurl/$REPO.db.tar.gz" -O "$DEST/$REPO.db.tar.gz"
|
||||
else
|
||||
echo "No packages to download... what'd you break?"
|
||||
exit 1
|
||||
fi
|
|
@ -1,4 +1,5 @@
|
|||
archlinux-installer
|
||||
aif
|
||||
base
|
||||
dnsutils
|
||||
dosfstools
|
||||
|
|
Loading…
Add table
Reference in a new issue