mirror of
https://github.com/aaru-dps/archaaru.git
synced 2025-12-16 11:14:36 +00:00
Initial commit.
This commit is contained in:
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
out/
|
||||
work/
|
||||
0
archdic-x86/airootfs/etc/fstab
Normal file
0
archdic-x86/airootfs/etc/fstab
Normal file
1
archdic-x86/airootfs/etc/hostname
Normal file
1
archdic-x86/airootfs/etc/hostname
Normal file
@@ -0,0 +1 @@
|
||||
dicarch32
|
||||
1
archdic-x86/airootfs/etc/locale.conf
Normal file
1
archdic-x86/airootfs/etc/locale.conf
Normal file
@@ -0,0 +1 @@
|
||||
LANG=en_US.UTF-8
|
||||
3
archdic-x86/airootfs/etc/lxdm/LoginReady
Executable file
3
archdic-x86/airootfs/etc/lxdm/LoginReady
Executable file
@@ -0,0 +1,3 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Note: this is a sample and will not be run as is.
|
||||
3
archdic-x86/airootfs/etc/lxdm/PostLogin
Executable file
3
archdic-x86/airootfs/etc/lxdm/PostLogin
Executable file
@@ -0,0 +1,3 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Note: this is a sample and will not be run as is.
|
||||
3
archdic-x86/airootfs/etc/lxdm/PostLogout
Executable file
3
archdic-x86/airootfs/etc/lxdm/PostLogout
Executable file
@@ -0,0 +1,3 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Note: this is a sample and will not be run as is.
|
||||
3
archdic-x86/airootfs/etc/lxdm/PreLogin
Executable file
3
archdic-x86/airootfs/etc/lxdm/PreLogin
Executable file
@@ -0,0 +1,3 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Note: this is a sample and will not be run as is.
|
||||
3
archdic-x86/airootfs/etc/lxdm/PreReboot
Executable file
3
archdic-x86/airootfs/etc/lxdm/PreReboot
Executable file
@@ -0,0 +1,3 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Note: this is a sample and will not be run as is.
|
||||
3
archdic-x86/airootfs/etc/lxdm/PreShutdown
Executable file
3
archdic-x86/airootfs/etc/lxdm/PreShutdown
Executable file
@@ -0,0 +1,3 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Note: this is a sample and will not be run as is.
|
||||
71
archdic-x86/airootfs/etc/lxdm/Xsession
Executable file
71
archdic-x86/airootfs/etc/lxdm/Xsession
Executable file
@@ -0,0 +1,71 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# LXDM wrapper to run around X sessions.
|
||||
|
||||
echo "Running X session wrapper"
|
||||
|
||||
if [ $# -eq 1 -a -n "$1" ]; then
|
||||
LXSESSION=$1
|
||||
else
|
||||
# default session
|
||||
LXSESSION=/usr/bin/startlxde
|
||||
fi
|
||||
|
||||
# Load profile
|
||||
for file in "/etc/profile" "$HOME/.profile" "/etc/xprofile" "$HOME/.xprofile"; do
|
||||
if [ -f "$file" ]; then
|
||||
echo "Loading profile from $file";
|
||||
. "$file"
|
||||
fi
|
||||
done
|
||||
|
||||
# Load resources
|
||||
for file in "/etc/X11/Xresources" "$HOME/.Xresources"; do
|
||||
if [ -f "$file" ]; then
|
||||
echo "Loading resource: $file"
|
||||
xrdb -merge "$file"
|
||||
fi
|
||||
done
|
||||
|
||||
# Load keymaps
|
||||
for file in "/etc/X11/Xkbmap" "$HOME/.Xkbmap"; do
|
||||
if [ -f "$file" ]; then
|
||||
echo "Loading keymap: $file"
|
||||
setxkbmap `cat "$file"`
|
||||
XKB_IN_USE=yes
|
||||
fi
|
||||
done
|
||||
|
||||
# Load xmodmap if not using XKB
|
||||
if [ -z "$XKB_IN_USE" ]; then
|
||||
for file in "/etc/X11/Xmodmap" "$HOME/.Xmodmap"; do
|
||||
if [ -f "$file" ]; then
|
||||
echo "Loading modmap: $file"
|
||||
xmodmap "$file"
|
||||
fi
|
||||
done
|
||||
fi
|
||||
|
||||
unset XKB_IN_USE
|
||||
|
||||
# Run all system xinitrc shell scripts
|
||||
xinitdir="/etc/X11/xinit/xinitrc.d"
|
||||
if [ -d "$xinitdir" ]; then
|
||||
for script in $xinitdir/*; do
|
||||
echo "Loading xinit script $script"
|
||||
if [ -x "$script" -a ! -d "$script" ]; then
|
||||
. "$script"
|
||||
fi
|
||||
done
|
||||
fi
|
||||
|
||||
# Run user xsession shell script
|
||||
script="$HOME/.xsession"
|
||||
if [ -x "$script" -a ! -d "$script" ]; then
|
||||
echo "Loading xsession script $script"
|
||||
. "$script"
|
||||
fi
|
||||
|
||||
echo "X session wrapper complete, running session $LXSESSION"
|
||||
|
||||
exec $LXSESSION
|
||||
62
archdic-x86/airootfs/etc/lxdm/lxdm.conf
Executable file
62
archdic-x86/airootfs/etc/lxdm/lxdm.conf
Executable file
@@ -0,0 +1,62 @@
|
||||
[base]
|
||||
## uncomment and set autologin username to enable autologin
|
||||
autologin=root
|
||||
|
||||
## uncomment and set timeout to enable timeout autologin,
|
||||
## the value should >=5
|
||||
# timeout=10
|
||||
|
||||
## default session or desktop used when no systemwide config
|
||||
session=/usr/bin/startlxqt
|
||||
|
||||
## uncomment and set to set numlock on your keyboard
|
||||
numlock=1
|
||||
|
||||
## set this if you don't want to put xauth file at ~/.Xauthority
|
||||
# xauth_path=/tmp
|
||||
|
||||
# not ask password for users who have empty password
|
||||
skip_password=1
|
||||
|
||||
## greeter used to welcome the user
|
||||
greeter=/usr/lib/lxdm/lxdm-greeter-gtk
|
||||
|
||||
[server]
|
||||
## arg used to start xserver, not fully function
|
||||
arg=/usr/bin/X -background vt1
|
||||
# uncomment this if you really want xserver listen to tcp
|
||||
# tcp_listen=1
|
||||
# uncoment this if you want reset the xserver after logou
|
||||
# reset=1
|
||||
|
||||
[display]
|
||||
## gtk theme used by greeter
|
||||
gtk_theme=Adwaita
|
||||
|
||||
## background of the greeter
|
||||
# bg=/usr/share/backgrounds/default.png
|
||||
|
||||
## if show bottom pane
|
||||
bottom_pane=1
|
||||
|
||||
## if show language select control
|
||||
lang=1
|
||||
|
||||
## if show keyboard layout select control
|
||||
keyboard=0
|
||||
|
||||
## the theme of greeter
|
||||
theme=Industrial
|
||||
|
||||
[input]
|
||||
|
||||
[userlist]
|
||||
## if disable the user list control at greeter
|
||||
disable=0
|
||||
|
||||
## whitelist user
|
||||
white=root
|
||||
|
||||
## blacklist user
|
||||
black=
|
||||
|
||||
0
archdic-x86/airootfs/etc/machine-id
Normal file
0
archdic-x86/airootfs/etc/machine-id
Normal file
7
archdic-x86/airootfs/etc/modprobe.d/broadcom-wl.conf
Normal file
7
archdic-x86/airootfs/etc/modprobe.d/broadcom-wl.conf
Normal file
@@ -0,0 +1,7 @@
|
||||
# The broadcom-wl package requires some modules to be disabled in order to use
|
||||
# wl. Since the ISO image needs to cover many hardware cases, this file
|
||||
# overrides the default blacklist in /usr/lib/modprobe.d/
|
||||
#
|
||||
# If you need to use wl, you may need to delete this file, then `rmmod` any
|
||||
# already-loaded modules that are now blacklisted before proceeding to modprobe
|
||||
# wl itself.
|
||||
26
archdic-x86/airootfs/etc/systemd/scripts/choose-mirror
Executable file
26
archdic-x86/airootfs/etc/systemd/scripts/choose-mirror
Executable file
@@ -0,0 +1,26 @@
|
||||
#!/bin/bash
|
||||
|
||||
get_cmdline() {
|
||||
local param
|
||||
for param in $(< /proc/cmdline); do
|
||||
case "${param}" in
|
||||
$1=*) echo "${param##*=}";
|
||||
return 0
|
||||
;;
|
||||
esac
|
||||
done
|
||||
}
|
||||
|
||||
mirror=$(get_cmdline mirror)
|
||||
[[ $mirror = auto ]] && mirror=$(get_cmdline archiso_http_srv)
|
||||
[[ $mirror ]] || exit 0
|
||||
|
||||
mv /etc/pacman.d/mirrorlist /etc/pacman.d/mirrorlist.orig
|
||||
cat >/etc/pacman.d/mirrorlist << EOF
|
||||
#
|
||||
# Arch Linux repository mirrorlist
|
||||
# Generated by archiso
|
||||
#
|
||||
|
||||
Server = ${mirror%%/}/\$repo/os/\$arch
|
||||
EOF
|
||||
@@ -0,0 +1,10 @@
|
||||
[Unit]
|
||||
Description=Choose mirror from the kernel command line
|
||||
ConditionKernelCommandLine=mirror
|
||||
|
||||
[Service]
|
||||
Type=oneshot
|
||||
ExecStart=/etc/systemd/scripts/choose-mirror
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
||||
1
archdic-x86/airootfs/etc/systemd/system/display-manager.service
Symbolic link
1
archdic-x86/airootfs/etc/systemd/system/display-manager.service
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/lib/systemd/system/lxdm.service
|
||||
@@ -0,0 +1,8 @@
|
||||
[Unit]
|
||||
Description=Temporary /etc/pacman.d/gnupg directory
|
||||
|
||||
[Mount]
|
||||
What=tmpfs
|
||||
Where=/etc/pacman.d/gnupg
|
||||
Type=tmpfs
|
||||
Options=mode=0755
|
||||
@@ -0,0 +1,3 @@
|
||||
[Service]
|
||||
ExecStart=
|
||||
ExecStart=-/sbin/agetty --autologin root --noclear %I 38400 linux
|
||||
16
archdic-x86/airootfs/etc/systemd/system/pacman-init.service
Normal file
16
archdic-x86/airootfs/etc/systemd/system/pacman-init.service
Normal file
@@ -0,0 +1,16 @@
|
||||
[Unit]
|
||||
Description=Initializes Pacman keyring
|
||||
Wants=haveged.service
|
||||
After=haveged.service
|
||||
Requires=etc-pacman.d-gnupg.mount
|
||||
After=etc-pacman.d-gnupg.mount
|
||||
|
||||
[Service]
|
||||
Type=oneshot
|
||||
RemainAfterExit=yes
|
||||
ExecStart=/usr/bin/pacman-key --init
|
||||
ExecStart=/usr/bin/pacman-key --populate archlinux
|
||||
ExecStart=/usr/bin/pacman-key --populate archlinux32
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
||||
1
archdic-x86/airootfs/etc/udev/rules.d/81-dhcpcd.rules
Normal file
1
archdic-x86/airootfs/etc/udev/rules.d/81-dhcpcd.rules
Normal file
@@ -0,0 +1 @@
|
||||
ACTION=="add", SUBSYSTEM=="net", ENV{INTERFACE}=="en*|eth*", ENV{SYSTEMD_WANTS}="dhcpcd@$name.service"
|
||||
34
archdic-x86/airootfs/root/.automated_script.sh
Executable file
34
archdic-x86/airootfs/root/.automated_script.sh
Executable file
@@ -0,0 +1,34 @@
|
||||
#!/bin/bash
|
||||
|
||||
script_cmdline ()
|
||||
{
|
||||
local param
|
||||
for param in $(< /proc/cmdline); do
|
||||
case "${param}" in
|
||||
script=*) echo "${param#*=}" ; return 0 ;;
|
||||
esac
|
||||
done
|
||||
}
|
||||
|
||||
automated_script ()
|
||||
{
|
||||
local script rt
|
||||
script="$(script_cmdline)"
|
||||
if [[ -n "${script}" && ! -x /tmp/startup_script ]]; then
|
||||
if [[ "${script}" =~ ^http:// || "${script}" =~ ^ftp:// ]]; then
|
||||
wget "${script}" --retry-connrefused -q -O /tmp/startup_script >/dev/null
|
||||
rt=$?
|
||||
else
|
||||
cp "${script}" /tmp/startup_script
|
||||
rt=$?
|
||||
fi
|
||||
if [[ ${rt} -eq 0 ]]; then
|
||||
chmod +x /tmp/startup_script
|
||||
/tmp/startup_script
|
||||
fi
|
||||
fi
|
||||
}
|
||||
|
||||
if [[ $(tty) == "/dev/tty1" ]]; then
|
||||
automated_script
|
||||
fi
|
||||
1
archdic-x86/airootfs/root/.zlogin
Normal file
1
archdic-x86/airootfs/root/.zlogin
Normal file
@@ -0,0 +1 @@
|
||||
~/.automated_script.sh
|
||||
23
archdic-x86/airootfs/root/customize_airootfs.sh
Executable file
23
archdic-x86/airootfs/root/customize_airootfs.sh
Executable file
@@ -0,0 +1,23 @@
|
||||
#!/bin/bash
|
||||
|
||||
set -e -u
|
||||
|
||||
sed -i 's/#\(en_US\.UTF-8\)/\1/' /etc/locale.gen
|
||||
locale-gen
|
||||
|
||||
ln -sf /usr/share/zoneinfo/UTC /etc/localtime
|
||||
|
||||
usermod -s /usr/bin/zsh root
|
||||
cp -aT /etc/skel/ /root/
|
||||
chmod 700 /root
|
||||
|
||||
sed -i 's/#\(PermitRootLogin \).\+/\1yes/' /etc/ssh/sshd_config
|
||||
sed -i "s/#Server/Server/g" /etc/pacman.d/mirrorlist
|
||||
sed -i 's/#\(Storage=\)auto/\1volatile/' /etc/systemd/journald.conf
|
||||
|
||||
sed -i 's/#\(HandleSuspendKey=\)suspend/\1ignore/' /etc/systemd/logind.conf
|
||||
sed -i 's/#\(HandleHibernateKey=\)hibernate/\1ignore/' /etc/systemd/logind.conf
|
||||
sed -i 's/#\(HandleLidSwitch=\)suspend/\1ignore/' /etc/systemd/logind.conf
|
||||
|
||||
systemctl enable pacman-init.service choose-mirror.service
|
||||
systemctl set-default graphical.target
|
||||
3
archdic-x86/airootfs/root/install.txt
Normal file
3
archdic-x86/airootfs/root/install.txt
Normal file
@@ -0,0 +1,3 @@
|
||||
View this installation guide online at
|
||||
https://wiki.archlinux.org/index.php/Installation_Guide
|
||||
|
||||
288
archdic-x86/build.sh
Executable file
288
archdic-x86/build.sh
Executable file
@@ -0,0 +1,288 @@
|
||||
#!/bin/bash
|
||||
|
||||
set -e -u
|
||||
|
||||
iso_name=archlinux
|
||||
iso_label="ARCH_$(date +%Y%m)"
|
||||
iso_publisher="Arch Linux <http://www.archlinux.org>"
|
||||
iso_application="Arch Linux Live/Rescue CD"
|
||||
iso_version=$(date +%Y.%m.%d)
|
||||
install_dir=arch
|
||||
work_dir=work
|
||||
out_dir=out
|
||||
gpg_key=
|
||||
|
||||
arch=$(uname -m)
|
||||
verbose=""
|
||||
script_path=$(readlink -f ${0%/*})
|
||||
|
||||
umask 0022
|
||||
|
||||
_usage ()
|
||||
{
|
||||
echo "usage ${0} [options]"
|
||||
echo
|
||||
echo " General options:"
|
||||
echo " -N <iso_name> Set an iso filename (prefix)"
|
||||
echo " Default: ${iso_name}"
|
||||
echo " -V <iso_version> Set an iso version (in filename)"
|
||||
echo " Default: ${iso_version}"
|
||||
echo " -L <iso_label> Set an iso label (disk label)"
|
||||
echo " Default: ${iso_label}"
|
||||
echo " -P <publisher> Set a publisher for the disk"
|
||||
echo " Default: '${iso_publisher}'"
|
||||
echo " -A <application> Set an application name for the disk"
|
||||
echo " Default: '${iso_application}'"
|
||||
echo " -D <install_dir> Set an install_dir (directory inside iso)"
|
||||
echo " Default: ${install_dir}"
|
||||
echo " -w <work_dir> Set the working directory"
|
||||
echo " Default: ${work_dir}"
|
||||
echo " -o <out_dir> Set the output directory"
|
||||
echo " Default: ${out_dir}"
|
||||
echo " -v Enable verbose output"
|
||||
echo " -h This help message"
|
||||
exit ${1}
|
||||
}
|
||||
|
||||
# Helper function to run make_*() only one time per architecture.
|
||||
run_once() {
|
||||
if [[ ! -e ${work_dir}/build.${1}_${arch} ]]; then
|
||||
$1
|
||||
touch ${work_dir}/build.${1}_${arch}
|
||||
fi
|
||||
}
|
||||
|
||||
# Setup custom pacman.conf with current cache directories and custom mirrorlist.
|
||||
make_pacman_conf() {
|
||||
local _cache_dirs
|
||||
_cache_dirs=($(pacman -v 2>&1 | grep '^Cache Dirs:' | sed 's/Cache Dirs:\s*//g'))
|
||||
sed -r "s|^#?\\s*CacheDir.+|CacheDir = $(echo -n ${_cache_dirs[@]})|g" ${script_path}/pacman.conf > ${work_dir}/pacman-x86_64.conf
|
||||
sed '
|
||||
s@/var/cache/pacman/pkg/@/var/cache/archbuild32/@
|
||||
s@Include = /etc/pacman\.d/mirrorlist$@\032@
|
||||
' ${work_dir}/pacman-x86_64.conf > ${work_dir}/pacman-i686.conf
|
||||
}
|
||||
|
||||
# Base installation, plus needed packages (airootfs)
|
||||
make_basefs() {
|
||||
setarch ${arch} mkarchiso ${verbose} -w "${work_dir}/${arch}" -C "${work_dir}/pacman-${arch}.conf" -D "${install_dir}" init
|
||||
setarch ${arch} mkarchiso ${verbose} -w "${work_dir}/${arch}" -C "${work_dir}/pacman-${arch}.conf" -D "${install_dir}" -p "haveged intel-ucode amd-ucode memtest86+ mkinitcpio-nfs-utils nbd zsh efitools" install
|
||||
}
|
||||
|
||||
# Additional packages (airootfs)
|
||||
make_packages() {
|
||||
setarch ${arch} mkarchiso ${verbose} -w "${work_dir}/${arch}" -C "${work_dir}/pacman-${arch}.conf" -D "${install_dir}" -p "$(grep -h -v ^# ${script_path}/packages.{both,${arch}})" install
|
||||
}
|
||||
|
||||
# Needed packages for x86_64 EFI boot
|
||||
make_packages_efi() {
|
||||
setarch ${arch} mkarchiso ${verbose} -w "${work_dir}/${arch}" -C "${work_dir}/pacman-${arch}.conf" -D "${install_dir}" -p "efitools" install
|
||||
}
|
||||
|
||||
# Copy mkinitcpio archiso hooks and build initramfs (airootfs)
|
||||
make_setup_mkinitcpio() {
|
||||
local _hook
|
||||
mkdir -p ${work_dir}/${arch}/airootfs/etc/initcpio/hooks
|
||||
mkdir -p ${work_dir}/${arch}/airootfs/etc/initcpio/install
|
||||
for _hook in archiso archiso_shutdown archiso_pxe_common archiso_pxe_nbd archiso_pxe_http archiso_pxe_nfs archiso_loop_mnt; do
|
||||
cp /usr/lib/initcpio/hooks/${_hook} ${work_dir}/${arch}/airootfs/etc/initcpio/hooks
|
||||
cp /usr/lib/initcpio/install/${_hook} ${work_dir}/${arch}/airootfs/etc/initcpio/install
|
||||
done
|
||||
sed -i "s|/usr/lib/initcpio/|/etc/initcpio/|g" ${work_dir}/${arch}/airootfs/etc/initcpio/install/archiso_shutdown
|
||||
cp /usr/lib/initcpio/install/archiso_kms ${work_dir}/${arch}/airootfs/etc/initcpio/install
|
||||
cp /usr/lib/initcpio/archiso_shutdown ${work_dir}/${arch}/airootfs/etc/initcpio
|
||||
cp ${script_path}/mkinitcpio.conf ${work_dir}/${arch}/airootfs/etc/mkinitcpio-archiso.conf
|
||||
gnupg_fd=
|
||||
if [[ ${gpg_key} ]]; then
|
||||
gpg --export ${gpg_key} >${work_dir}/gpgkey
|
||||
exec 17<>${work_dir}/gpgkey
|
||||
fi
|
||||
ARCHISO_GNUPG_FD=${gpg_key:+17} setarch ${arch} mkarchiso ${verbose} -w "${work_dir}/${arch}" -C "${work_dir}/pacman-${arch}.conf" -D "${install_dir}" -r 'mkinitcpio -c /etc/mkinitcpio-archiso.conf -k /boot/vmlinuz-linux -g /boot/archiso.img' run
|
||||
if [[ ${gpg_key} ]]; then
|
||||
exec 17<&-
|
||||
fi
|
||||
}
|
||||
|
||||
# Customize installation (airootfs)
|
||||
make_customize_airootfs() {
|
||||
cp -af ${script_path}/airootfs ${work_dir}/${arch}
|
||||
|
||||
cp ${script_path}/pacman.conf ${work_dir}/${arch}/airootfs/etc
|
||||
|
||||
curl -o ${work_dir}/${arch}/airootfs/etc/pacman.d/mirrorlist 'https://git.archlinux32.org/archlinux32/packages/raw/branch/master/core/pacman-mirrorlist/mirrorlist'
|
||||
|
||||
lynx -dump -nolist 'https://wiki.archlinux.org/index.php/Installation_Guide?action=render' >> ${work_dir}/${arch}/airootfs/root/install.txt
|
||||
|
||||
setarch ${arch} mkarchiso ${verbose} -w "${work_dir}/${arch}" -C "${work_dir}/pacman-${arch}.conf" -D "${install_dir}" -r '/root/customize_airootfs.sh' run
|
||||
rm ${work_dir}/${arch}/airootfs/root/customize_airootfs.sh
|
||||
}
|
||||
|
||||
# Prepare kernel/initramfs ${install_dir}/boot/
|
||||
make_boot() {
|
||||
mkdir -p ${work_dir}/iso/${install_dir}/boot/${arch}
|
||||
cp ${work_dir}/${arch}/airootfs/boot/archiso.img ${work_dir}/iso/${install_dir}/boot/${arch}/archiso.img
|
||||
cp ${work_dir}/${arch}/airootfs/boot/vmlinuz-linux ${work_dir}/iso/${install_dir}/boot/${arch}/vmlinuz
|
||||
}
|
||||
|
||||
# Add other aditional/extra files to ${install_dir}/boot/
|
||||
make_boot_extra() {
|
||||
cp ${work_dir}/${arch}/airootfs/boot/memtest86+/memtest.bin ${work_dir}/iso/${install_dir}/boot/memtest
|
||||
cp ${work_dir}/${arch}/airootfs/usr/share/licenses/common/GPL2/license.txt ${work_dir}/iso/${install_dir}/boot/memtest.COPYING
|
||||
cp ${work_dir}/${arch}/airootfs/boot/intel-ucode.img ${work_dir}/iso/${install_dir}/boot/intel_ucode.img
|
||||
cp ${work_dir}/${arch}/airootfs/usr/share/licenses/intel-ucode/LICENSE ${work_dir}/iso/${install_dir}/boot/intel_ucode.LICENSE
|
||||
cp ${work_dir}/${arch}/airootfs/boot/amd-ucode.img ${work_dir}/iso/${install_dir}/boot/amd_ucode.img
|
||||
cp ${work_dir}/${arch}/airootfs/usr/share/licenses/amd-ucode/LICENSE ${work_dir}/iso/${install_dir}/boot/amd_ucode.LICENSE
|
||||
}
|
||||
|
||||
# Prepare /${install_dir}/boot/syslinux
|
||||
make_syslinux() {
|
||||
_uname_r=$(file -b ${work_dir}/${arch}/airootfs/boot/vmlinuz-linux| awk 'f{print;f=0} /version/{f=1}' RS=' ')
|
||||
mkdir -p ${work_dir}/iso/${install_dir}/boot/syslinux
|
||||
for _cfg in ${script_path}/syslinux/*.cfg; do
|
||||
sed "s|%ARCHISO_LABEL%|${iso_label}|g;
|
||||
s|%INSTALL_DIR%|${install_dir}|g" ${_cfg} > ${work_dir}/iso/${install_dir}/boot/syslinux/${_cfg##*/}
|
||||
done
|
||||
cp ${script_path}/syslinux/splash.png ${work_dir}/iso/${install_dir}/boot/syslinux
|
||||
cp ${work_dir}/${arch}/airootfs/usr/lib/syslinux/bios/*.c32 ${work_dir}/iso/${install_dir}/boot/syslinux
|
||||
cp ${work_dir}/${arch}/airootfs/usr/lib/syslinux/bios/lpxelinux.0 ${work_dir}/iso/${install_dir}/boot/syslinux
|
||||
cp ${work_dir}/${arch}/airootfs/usr/lib/syslinux/bios/memdisk ${work_dir}/iso/${install_dir}/boot/syslinux
|
||||
mkdir -p ${work_dir}/iso/${install_dir}/boot/syslinux/hdt
|
||||
gzip -c -9 ${work_dir}/${arch}/airootfs/usr/share/hwdata/pci.ids > ${work_dir}/iso/${install_dir}/boot/syslinux/hdt/pciids.gz
|
||||
gzip -c -9 ${work_dir}/${arch}/airootfs/usr/lib/modules/${_uname_r}/modules.alias > ${work_dir}/iso/${install_dir}/boot/syslinux/hdt/modalias.gz
|
||||
}
|
||||
|
||||
# Prepare /isolinux
|
||||
make_isolinux() {
|
||||
mkdir -p ${work_dir}/iso/isolinux
|
||||
sed "s|%INSTALL_DIR%|${install_dir}|g" ${script_path}/isolinux/isolinux.cfg > ${work_dir}/iso/isolinux/isolinux.cfg
|
||||
cp ${work_dir}/${arch}/airootfs/usr/lib/syslinux/bios/isolinux.bin ${work_dir}/iso/isolinux/
|
||||
cp ${work_dir}/${arch}/airootfs/usr/lib/syslinux/bios/isohdpfx.bin ${work_dir}/iso/isolinux/
|
||||
cp ${work_dir}/${arch}/airootfs/usr/lib/syslinux/bios/ldlinux.c32 ${work_dir}/iso/isolinux/
|
||||
}
|
||||
|
||||
# Prepare /EFI
|
||||
make_efi() {
|
||||
mkdir -p ${work_dir}/iso/EFI/boot
|
||||
cp ${work_dir}/i686/airootfs/usr/share/efitools/efi/HashTool.efi ${work_dir}/iso/EFI/boot/
|
||||
|
||||
mkdir -p ${work_dir}/iso/loader/entries
|
||||
cp ${script_path}/efiboot/loader/loader.conf ${work_dir}/iso/loader/
|
||||
cp ${script_path}/efiboot/loader/entries/uefi-shell-v2-x86_64.conf ${work_dir}/iso/loader/entries/
|
||||
cp ${script_path}/efiboot/loader/entries/uefi-shell-v1-x86_64.conf ${work_dir}/iso/loader/entries/
|
||||
|
||||
sed "s|%ARCHISO_LABEL%|${iso_label}|g;
|
||||
s|%INSTALL_DIR%|${install_dir}|g" \
|
||||
${script_path}/efiboot/loader/entries/archiso-x86_64-usb.conf > ${work_dir}/iso/loader/entries/archiso-x86_64.conf
|
||||
|
||||
# EFI Shell 2.0 for UEFI 2.3+
|
||||
curl -o ${work_dir}/iso/EFI/shellx64_v2.efi https://raw.githubusercontent.com/tianocore/edk2/master/ShellBinPkg/UefiShell/X64/Shell.efi
|
||||
# EFI Shell 1.0 for non UEFI 2.3+
|
||||
curl -o ${work_dir}/iso/EFI/shellx64_v1.efi https://raw.githubusercontent.com/tianocore/edk2/UDK2018/EdkShellBinPkg/FullShell/X64/Shell_Full.efi
|
||||
}
|
||||
|
||||
# Prepare efiboot.img::/EFI for "El Torito" EFI boot mode
|
||||
make_efiboot() {
|
||||
mkdir -p ${work_dir}/iso/EFI/archiso
|
||||
truncate -s 64M ${work_dir}/iso/EFI/archiso/efiboot.img
|
||||
mkfs.fat -n ARCHISO_EFI ${work_dir}/iso/EFI/archiso/efiboot.img
|
||||
|
||||
mkdir -p ${work_dir}/efiboot
|
||||
mount ${work_dir}/iso/EFI/archiso/efiboot.img ${work_dir}/efiboot
|
||||
|
||||
mkdir -p ${work_dir}/efiboot/EFI/archiso
|
||||
cp ${work_dir}/iso/${install_dir}/boot/i686/vmlinuz ${work_dir}/efiboot/EFI/archiso/vmlinuz.efi
|
||||
cp ${work_dir}/iso/${install_dir}/boot/i686/archiso.img ${work_dir}/efiboot/EFI/archiso/archiso.img
|
||||
|
||||
cp ${work_dir}/iso/${install_dir}/boot/intel_ucode.img ${work_dir}/efiboot/EFI/archiso/intel_ucode.img
|
||||
cp ${work_dir}/iso/${install_dir}/boot/amd_ucode.img ${work_dir}/efiboot/EFI/archiso/amd_ucode.img
|
||||
|
||||
mkdir -p ${work_dir}/efiboot/EFI/boot
|
||||
cp ${work_dir}/i686/airootfs/usr/share/efitools/efi/HashTool.efi ${work_dir}/efiboot/EFI/boot/
|
||||
|
||||
mkdir -p ${work_dir}/efiboot/loader/entries
|
||||
cp ${script_path}/efiboot/loader/loader.conf ${work_dir}/efiboot/loader/
|
||||
cp ${script_path}/efiboot/loader/entries/uefi-shell-v2-x86_64.conf ${work_dir}/efiboot/loader/entries/
|
||||
cp ${script_path}/efiboot/loader/entries/uefi-shell-v1-x86_64.conf ${work_dir}/efiboot/loader/entries/
|
||||
|
||||
sed "s|%ARCHISO_LABEL%|${iso_label}|g;
|
||||
s|%INSTALL_DIR%|${install_dir}|g" \
|
||||
${script_path}/efiboot/loader/entries/archiso-x86_64-cd.conf > ${work_dir}/efiboot/loader/entries/archiso-x86_64.conf
|
||||
|
||||
cp ${work_dir}/iso/EFI/shellx64_v2.efi ${work_dir}/efiboot/EFI/
|
||||
cp ${work_dir}/iso/EFI/shellx64_v1.efi ${work_dir}/efiboot/EFI/
|
||||
|
||||
umount -d ${work_dir}/efiboot
|
||||
}
|
||||
|
||||
# Build airootfs filesystem image
|
||||
make_prepare() {
|
||||
cp -a -l -f ${work_dir}/${arch}/airootfs ${work_dir}
|
||||
setarch ${arch} mkarchiso ${verbose} -w "${work_dir}" -D "${install_dir}" pkglist
|
||||
setarch ${arch} mkarchiso ${verbose} -w "${work_dir}" -D "${install_dir}" ${gpg_key:+-g ${gpg_key}} prepare
|
||||
rm -rf ${work_dir}/airootfs
|
||||
# rm -rf ${work_dir}/${arch}/airootfs (if low space, this helps)
|
||||
}
|
||||
|
||||
# Build ISO
|
||||
make_iso() {
|
||||
mkarchiso ${verbose} -w "${work_dir}" -D "${install_dir}" -L "${iso_label}" -P "${iso_publisher}" -A "${iso_application}" -o "${out_dir}" iso "${iso_name}-${iso_version}-i686.iso"
|
||||
}
|
||||
|
||||
if [[ ${EUID} -ne 0 ]]; then
|
||||
echo "This script must be run as root."
|
||||
_usage 1
|
||||
fi
|
||||
|
||||
while getopts 'N:V:L:P:A:D:w:o:g:vh' arg; do
|
||||
case "${arg}" in
|
||||
N) iso_name="${OPTARG}" ;;
|
||||
V) iso_version="${OPTARG}" ;;
|
||||
L) iso_label="${OPTARG}" ;;
|
||||
P) iso_publisher="${OPTARG}" ;;
|
||||
A) iso_application="${OPTARG}" ;;
|
||||
D) install_dir="${OPTARG}" ;;
|
||||
w) work_dir="${OPTARG}" ;;
|
||||
o) out_dir="${OPTARG}" ;;
|
||||
g) gpg_key="${OPTARG}" ;;
|
||||
v) verbose="-v" ;;
|
||||
h) _usage 0 ;;
|
||||
*)
|
||||
echo "Invalid argument '${arg}'"
|
||||
_usage 1
|
||||
;;
|
||||
esac
|
||||
done
|
||||
|
||||
mkdir -p ${work_dir}
|
||||
|
||||
run_once make_pacman_conf
|
||||
|
||||
# Do all stuff for each airootfs
|
||||
for arch in i686; do
|
||||
run_once make_basefs
|
||||
run_once make_packages
|
||||
done
|
||||
|
||||
run_once make_packages_efi
|
||||
|
||||
for arch in i686; do
|
||||
run_once make_setup_mkinitcpio
|
||||
run_once make_customize_airootfs
|
||||
done
|
||||
|
||||
for arch in i686; do
|
||||
run_once make_boot
|
||||
done
|
||||
|
||||
# Do all stuff for "iso"
|
||||
run_once make_boot_extra
|
||||
run_once make_syslinux
|
||||
run_once make_isolinux
|
||||
run_once make_efi
|
||||
run_once make_efiboot
|
||||
|
||||
for arch in i686; do
|
||||
run_once make_prepare
|
||||
done
|
||||
|
||||
run_once make_iso
|
||||
@@ -0,0 +1,6 @@
|
||||
title DiscImageChef's Arch Linux archiso x86_64 UEFI CD
|
||||
linux /EFI/archiso/vmlinuz.efi
|
||||
initrd /EFI/archiso/intel_ucode.img
|
||||
initrd /EFI/archiso/amd_ucode.img
|
||||
initrd /EFI/archiso/archiso.img
|
||||
options archisobasedir=%INSTALL_DIR% archisolabel=%ARCHISO_LABEL%
|
||||
@@ -0,0 +1,6 @@
|
||||
title DiscImageChef's Arch Linux archiso x86_64 UEFI USB
|
||||
linux /%INSTALL_DIR%/boot/x86_64/vmlinuz
|
||||
initrd /%INSTALL_DIR%/boot/intel_ucode.img
|
||||
initrd /%INSTALL_DIR%/boot/amd_ucode.img
|
||||
initrd /%INSTALL_DIR%/boot/x86_64/archiso.img
|
||||
options archisobasedir=%INSTALL_DIR% archisolabel=%ARCHISO_LABEL%
|
||||
@@ -0,0 +1,2 @@
|
||||
title UEFI Shell x86_64 v1
|
||||
efi /EFI/shellx64_v1.efi
|
||||
@@ -0,0 +1,2 @@
|
||||
title UEFI Shell x86_64 v2
|
||||
efi /EFI/shellx64_v2.efi
|
||||
2
archdic-x86/efiboot/loader/loader.conf
Normal file
2
archdic-x86/efiboot/loader/loader.conf
Normal file
@@ -0,0 +1,2 @@
|
||||
timeout 3
|
||||
default archiso-x86_64
|
||||
6
archdic-x86/isolinux/isolinux.cfg
Normal file
6
archdic-x86/isolinux/isolinux.cfg
Normal file
@@ -0,0 +1,6 @@
|
||||
PATH /%INSTALL_DIR%/boot/syslinux/
|
||||
DEFAULT loadconfig
|
||||
|
||||
LABEL loadconfig
|
||||
CONFIG /%INSTALL_DIR%/boot/syslinux/archiso.cfg
|
||||
APPEND /%INSTALL_DIR%/
|
||||
2
archdic-x86/mkinitcpio.conf
Normal file
2
archdic-x86/mkinitcpio.conf
Normal file
@@ -0,0 +1,2 @@
|
||||
HOOKS=(base udev memdisk archiso_shutdown archiso archiso_loop_mnt archiso_pxe_common archiso_pxe_nbd archiso_pxe_http archiso_pxe_nfs archiso_kms block filesystems keyboard)
|
||||
COMPRESSION="xz"
|
||||
216
archdic-x86/packages.both
Normal file
216
archdic-x86/packages.both
Normal file
@@ -0,0 +1,216 @@
|
||||
aircrack-ng
|
||||
alsa
|
||||
alsa-firmware
|
||||
arch-install-scripts
|
||||
aria2
|
||||
aspell
|
||||
b43-fwcutter
|
||||
base
|
||||
base-devel
|
||||
bash-completion
|
||||
blueman
|
||||
bluez-cups
|
||||
bluez-hid2hci
|
||||
bluez-libs
|
||||
bluez-tools
|
||||
bluez-utils
|
||||
breeze
|
||||
breeze-gtk
|
||||
breeze-icons
|
||||
broadcom-wl
|
||||
brotli
|
||||
btrfs-progs
|
||||
cabextract
|
||||
cdparanoia
|
||||
cdrdao
|
||||
cdrkit
|
||||
chromaprint
|
||||
cifs-utils
|
||||
clonezilla
|
||||
convmv
|
||||
crda
|
||||
cryptsetup
|
||||
ctags
|
||||
cvs
|
||||
darkhttpd
|
||||
ddrescue
|
||||
dhclient
|
||||
dialog
|
||||
discimagechef
|
||||
dmidecode
|
||||
dmraid
|
||||
dnsmasq
|
||||
dnsutils
|
||||
dosfstools
|
||||
dstat
|
||||
e2fsprogs
|
||||
easy-rsa
|
||||
efibootmgr
|
||||
elinks
|
||||
encfs
|
||||
ethtool
|
||||
exfat-utils
|
||||
f2fs-tools
|
||||
fatresize
|
||||
ffmpeg
|
||||
firefox
|
||||
fortune-mod
|
||||
fsarchiver
|
||||
fuse2
|
||||
fuse3
|
||||
gd
|
||||
geoip2-database
|
||||
git
|
||||
gnu-netcat
|
||||
gpart
|
||||
gparted
|
||||
gpm
|
||||
gptfdisk
|
||||
grml-zsh-config
|
||||
grub
|
||||
gtk2
|
||||
gzip
|
||||
hdparm
|
||||
htop
|
||||
i2c-tools
|
||||
ifplugd
|
||||
ifuse
|
||||
iperf3
|
||||
iproute2
|
||||
ipw2100-fw
|
||||
ipw2200-fw
|
||||
irssi
|
||||
iwd
|
||||
java-rhino
|
||||
jfsutils
|
||||
joyutils
|
||||
jre11-openjdk
|
||||
lftp
|
||||
libcdio
|
||||
libdc1394
|
||||
libdvdcss
|
||||
libdvdnav
|
||||
libdvdread
|
||||
libheif
|
||||
libisoburn
|
||||
libmtp
|
||||
libnfs
|
||||
libpulse
|
||||
libraw
|
||||
libshout
|
||||
libstatgrab
|
||||
libsysstat
|
||||
libusb-compat
|
||||
libva-intel-driver
|
||||
libva-mesa-driver
|
||||
libva-vdpau-driver
|
||||
libwmf
|
||||
linux-atm
|
||||
linux-firmware
|
||||
lirc
|
||||
live-media
|
||||
lm_sensors
|
||||
lsof
|
||||
lsscsi
|
||||
ltrace
|
||||
lxdm
|
||||
lxqt
|
||||
lz4
|
||||
lzip
|
||||
lzo
|
||||
lzop
|
||||
mc
|
||||
mesa-vdpau
|
||||
modemmanager
|
||||
mono
|
||||
mpg123
|
||||
mtools
|
||||
ndisc6
|
||||
networkmanager
|
||||
nfs-utils
|
||||
nilfs-utils
|
||||
nmap
|
||||
noto-fonts
|
||||
noto-fonts-cjk
|
||||
noto-fonts-emoji
|
||||
noto-fonts-extra
|
||||
ntfs-3g
|
||||
ntp
|
||||
opencl-driver
|
||||
openconnect
|
||||
openexr
|
||||
openssh
|
||||
openvpn
|
||||
openvswitch
|
||||
os-prober
|
||||
p7zip
|
||||
partclone
|
||||
parted
|
||||
partimage
|
||||
pcsclite
|
||||
polkit
|
||||
poppler-data
|
||||
ppp
|
||||
pptpclient
|
||||
protobuf
|
||||
pulseaudio
|
||||
pulseaudio-bluetooth
|
||||
pulseaudio-qt
|
||||
pygtk
|
||||
python
|
||||
python2
|
||||
qt
|
||||
read-edid
|
||||
refind-efi
|
||||
reiserfsprogs
|
||||
rp-pppoe
|
||||
rsync
|
||||
samba
|
||||
sbsigntools
|
||||
sdparm
|
||||
sg3_utils
|
||||
smartmontools
|
||||
smbclient
|
||||
strace
|
||||
sudo
|
||||
sysstat
|
||||
tcpdump
|
||||
testdisk
|
||||
truecrypt
|
||||
ttf-liberation
|
||||
ttf-roboto
|
||||
twolame
|
||||
udftools
|
||||
unace
|
||||
unarchiver
|
||||
unarj
|
||||
unichrome-dri
|
||||
unrar
|
||||
upx
|
||||
usb_modeswitch
|
||||
vcdimager
|
||||
veracrypt
|
||||
vim-minimal
|
||||
vlc
|
||||
vnstat
|
||||
vpnc
|
||||
vulkan-driver
|
||||
wget
|
||||
wireless-regdb
|
||||
wireless_tools
|
||||
wpa_actiond
|
||||
wpa_supplicant
|
||||
wvdial
|
||||
xdg-utils
|
||||
xfsprogs
|
||||
xl2tpd
|
||||
xorg
|
||||
xorg-apps
|
||||
xorg-drivers
|
||||
xorg-fonts
|
||||
xz
|
||||
zaproxy
|
||||
zip
|
||||
zopfli
|
||||
zstd
|
||||
zvbi
|
||||
0
archdic-x86/packages.i686
Normal file
0
archdic-x86/packages.i686
Normal file
0
archdic-x86/packages.x86_64
Normal file
0
archdic-x86/packages.x86_64
Normal file
105
archdic-x86/pacman.conf
Normal file
105
archdic-x86/pacman.conf
Normal file
@@ -0,0 +1,105 @@
|
||||
#
|
||||
# /etc/pacman.conf
|
||||
#
|
||||
# See the pacman.conf(5) manpage for option and repository directives
|
||||
|
||||
#
|
||||
# GENERAL OPTIONS
|
||||
#
|
||||
[options]
|
||||
# The following paths are commented out with their default values listed.
|
||||
# If you wish to use different paths, uncomment and update the paths.
|
||||
#RootDir = /
|
||||
#DBPath = /var/lib/pacman/
|
||||
#CacheDir = /var/cache/pacman/pkg/
|
||||
#LogFile = /var/log/pacman.log
|
||||
#GPGDir = /etc/pacman.d/gnupg/
|
||||
#HookDir = /etc/pacman.d/hooks/
|
||||
HoldPkg = pacman glibc
|
||||
#XferCommand = /usr/bin/curl -C - -f %u > %o
|
||||
#XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
|
||||
#CleanMethod = KeepInstalled
|
||||
#UseDelta = 0.7
|
||||
Architecture = auto
|
||||
|
||||
# Pacman won't upgrade packages listed in IgnorePkg and members of IgnoreGroup
|
||||
#IgnorePkg =
|
||||
#IgnoreGroup =
|
||||
|
||||
#NoUpgrade =
|
||||
#NoExtract =
|
||||
|
||||
# Misc options
|
||||
#UseSyslog
|
||||
#Color
|
||||
#TotalDownload
|
||||
# We cannot check disk space from within a chroot environment
|
||||
#CheckSpace
|
||||
#VerbosePkgLists
|
||||
|
||||
# By default, pacman accepts packages signed by keys that its local keyring
|
||||
# trusts (see pacman-key and its man page), as well as unsigned packages.
|
||||
SigLevel = Required DatabaseOptional
|
||||
LocalFileSigLevel = Optional
|
||||
#RemoteFileSigLevel = Required
|
||||
|
||||
# NOTE: You must run `pacman-key --init` before first using pacman; the local
|
||||
# keyring can then be populated with the keys of all official Arch Linux
|
||||
# packagers with `pacman-key --populate archlinux`.
|
||||
|
||||
#
|
||||
# REPOSITORIES
|
||||
# - can be defined here or included from another file
|
||||
# - pacman will search repositories in the order defined here
|
||||
# - local/custom mirrors can be added here or in separate files
|
||||
# - repositories listed first will take precedence when packages
|
||||
# have identical names, regardless of version number
|
||||
# - URLs will have $repo replaced by the name of the current repo
|
||||
# - URLs will have $arch replaced by the name of the architecture
|
||||
#
|
||||
# Repository entries are of the format:
|
||||
# [repo-name]
|
||||
# Server = ServerName
|
||||
# Include = IncludePath
|
||||
#
|
||||
# The header [repo-name] is crucial - it must be present and
|
||||
# uncommented to enable the repo.
|
||||
#
|
||||
|
||||
# The testing repositories are disabled by default. To enable, uncomment the
|
||||
# repo name header and Include lines. You can add preferred servers immediately
|
||||
# after the header, and they will be used before the default mirrors.
|
||||
|
||||
#[testing]
|
||||
#Server = https://mirror.math.princeton.edu/pub/archlinux32/$arch/$repo/
|
||||
|
||||
[core]
|
||||
Server = https://mirror.math.princeton.edu/pub/archlinux32/$arch/$repo/
|
||||
|
||||
[extra]
|
||||
Server = https://mirror.math.princeton.edu/pub/archlinux32/$arch/$repo/
|
||||
|
||||
#[community-testing]
|
||||
#Server = https://mirror.math.princeton.edu/pub/archlinux32/$arch/$repo/
|
||||
|
||||
[community]
|
||||
Server = https://mirror.math.princeton.edu/pub/archlinux32/$arch/$repo/
|
||||
|
||||
# If you want to run 32 bit applications on your x86_64 system,
|
||||
# enable the multilib repositories as required here.
|
||||
|
||||
#[multilib-testing]
|
||||
#Server = https://mirror.math.princeton.edu/pub/archlinux32/$arch/$repo/
|
||||
|
||||
#[multilib]
|
||||
#Server = https://mirror.math.princeton.edu/pub/archlinux32/$arch/$repo/
|
||||
|
||||
# An example of a custom package repository. See the pacman manpage for
|
||||
# tips on creating your own repositories.
|
||||
#[custom]
|
||||
#SigLevel = Optional TrustAll
|
||||
#Server = file:///home/custompkgs
|
||||
|
||||
[discimagechef]
|
||||
Server = file:///home/claunia/Development/DiscImageChef/archdic/repo
|
||||
SigLevel = Optional TrustAll
|
||||
11
archdic-x86/syslinux/archiso.cfg
Normal file
11
archdic-x86/syslinux/archiso.cfg
Normal file
@@ -0,0 +1,11 @@
|
||||
DEFAULT select
|
||||
|
||||
LABEL select
|
||||
COM32 boot/syslinux/whichsys.c32
|
||||
APPEND -pxe- pxe -sys- sys -iso- sys
|
||||
|
||||
LABEL pxe
|
||||
CONFIG boot/syslinux/archiso_pxe.cfg
|
||||
|
||||
LABEL sys
|
||||
CONFIG boot/syslinux/archiso_sys.cfg
|
||||
25
archdic-x86/syslinux/archiso_head.cfg
Normal file
25
archdic-x86/syslinux/archiso_head.cfg
Normal file
@@ -0,0 +1,25 @@
|
||||
SERIAL 0 38400
|
||||
UI boot/syslinux/vesamenu.c32
|
||||
MENU TITLE Arch Linux
|
||||
MENU BACKGROUND boot/syslinux/splash.png
|
||||
|
||||
MENU WIDTH 78
|
||||
MENU MARGIN 4
|
||||
MENU ROWS 7
|
||||
MENU VSHIFT 10
|
||||
MENU TABMSGROW 14
|
||||
MENU CMDLINEROW 14
|
||||
MENU HELPMSGROW 16
|
||||
MENU HELPMSGENDROW 29
|
||||
|
||||
# Refer to http://syslinux.zytor.com/wiki/index.php/Doc/menu
|
||||
|
||||
MENU COLOR border 30;44 #40ffffff #a0000000 std
|
||||
MENU COLOR title 1;36;44 #9033ccff #a0000000 std
|
||||
MENU COLOR sel 7;37;40 #e0ffffff #20ffffff all
|
||||
MENU COLOR unsel 37;44 #50ffffff #a0000000 std
|
||||
MENU COLOR help 37;40 #c0ffffff #a0000000 std
|
||||
MENU COLOR timeout_msg 37;40 #80ffffff #00000000 std
|
||||
MENU COLOR timeout 1;37;40 #c0ffffff #00000000 std
|
||||
MENU COLOR msg07 37;40 #90ffffff #a0000000 std
|
||||
MENU COLOR tabmsg 31;40 #30ffffff #00000000 std
|
||||
36
archdic-x86/syslinux/archiso_pxe.cfg
Normal file
36
archdic-x86/syslinux/archiso_pxe.cfg
Normal file
@@ -0,0 +1,36 @@
|
||||
INCLUDE boot/syslinux/archiso_head.cfg
|
||||
|
||||
LABEL arch32_nbd
|
||||
TEXT HELP
|
||||
Boot the DiscImageChef's Arch Linux (i686) live medium (Using NBD).
|
||||
It allows you to install Arch Linux or perform system maintenance.
|
||||
ENDTEXT
|
||||
MENU LABEL Boot Arch Linux (i686) (NBD)
|
||||
LINUX boot/i686/vmlinuz
|
||||
INITRD boot/intel_ucode.img,boot/amd_ucode.img,boot/i686/archiso.img
|
||||
APPEND archisobasedir=%INSTALL_DIR% archisolabel=%ARCHISO_LABEL% archiso_nbd_srv=${pxeserver}
|
||||
SYSAPPEND 3
|
||||
|
||||
LABEL arch32_nfs
|
||||
TEXT HELP
|
||||
Boot the DiscImageChef's Arch Linux (i686) live medium (Using NFS).
|
||||
It allows you to install Arch Linux or perform system maintenance.
|
||||
ENDTEXT
|
||||
MENU LABEL Boot Arch Linux (i686) (NFS)
|
||||
LINUX boot/i686/vmlinuz
|
||||
INITRD boot/intel_ucode.img,boot/amd_ucode.img,boot/i686/archiso.img
|
||||
APPEND archisobasedir=%INSTALL_DIR% archiso_nfs_srv=${pxeserver}:/run/archiso/bootmnt
|
||||
SYSAPPEND 3
|
||||
|
||||
LABEL arch32_http
|
||||
TEXT HELP
|
||||
Boot the DiscImageChef's Arch Linux (i686) live medium (Using HTTP).
|
||||
It allows you to install Arch Linux or perform system maintenance.
|
||||
ENDTEXT
|
||||
MENU LABEL Boot Arch Linux (i686) (HTTP)
|
||||
LINUX boot/i686/vmlinuz
|
||||
INITRD boot/intel_ucode.img,boot/amd_ucode.img,boot/i686/archiso.img
|
||||
APPEND archisobasedir=%INSTALL_DIR% archiso_http_srv=http://${pxeserver}/
|
||||
SYSAPPEND 3
|
||||
|
||||
INCLUDE boot/syslinux/archiso_tail.cfg
|
||||
3
archdic-x86/syslinux/archiso_pxe_32_inc.cfg
Normal file
3
archdic-x86/syslinux/archiso_pxe_32_inc.cfg
Normal file
@@ -0,0 +1,3 @@
|
||||
INCLUDE boot/syslinux/archiso_head.cfg
|
||||
INCLUDE boot/syslinux/archiso_pxe32.cfg
|
||||
INCLUDE boot/syslinux/archiso_tail.cfg
|
||||
13
archdic-x86/syslinux/archiso_sys.cfg
Normal file
13
archdic-x86/syslinux/archiso_sys.cfg
Normal file
@@ -0,0 +1,13 @@
|
||||
INCLUDE boot/syslinux/archiso_head.cfg
|
||||
|
||||
LABEL arch32
|
||||
TEXT HELP
|
||||
Boot the DiscImageChef's Arch Linux (i686) live medium.
|
||||
It allows you to install Arch Linux or perform system maintenance.
|
||||
ENDTEXT
|
||||
MENU LABEL Boot Arch Linux (i686)
|
||||
LINUX boot/i686/vmlinuz
|
||||
INITRD boot/intel_ucode.img,boot/amd_ucode.img,boot/i686/archiso.img
|
||||
APPEND archisobasedir=%INSTALL_DIR% archisolabel=%ARCHISO_LABEL%
|
||||
|
||||
INCLUDE boot/syslinux/archiso_tail.cfg
|
||||
3
archdic-x86/syslinux/archiso_sys_32_inc.cfg
Normal file
3
archdic-x86/syslinux/archiso_sys_32_inc.cfg
Normal file
@@ -0,0 +1,3 @@
|
||||
INCLUDE boot/syslinux/archiso_head.cfg
|
||||
INCLUDE boot/syslinux/archiso_sys32.cfg
|
||||
INCLUDE boot/syslinux/archiso_tail.cfg
|
||||
27
archdic-x86/syslinux/archiso_tail.cfg
Normal file
27
archdic-x86/syslinux/archiso_tail.cfg
Normal file
@@ -0,0 +1,27 @@
|
||||
LABEL existing
|
||||
TEXT HELP
|
||||
Boot an existing operating system.
|
||||
Press TAB to edit the disk and partition number to boot.
|
||||
ENDTEXT
|
||||
MENU LABEL Boot existing OS
|
||||
COM32 boot/syslinux/chain.c32
|
||||
APPEND hd0 0
|
||||
|
||||
# http://www.memtest.org/
|
||||
LABEL memtest
|
||||
MENU LABEL Run Memtest86+ (RAM test)
|
||||
LINUX boot/memtest
|
||||
|
||||
# http://hdt-project.org/
|
||||
LABEL hdt
|
||||
MENU LABEL Hardware Information (HDT)
|
||||
COM32 boot/syslinux/hdt.c32
|
||||
APPEND modules_alias=boot/syslinux/hdt/modalias.gz pciids=boot/syslinux/hdt/pciids.gz
|
||||
|
||||
LABEL reboot
|
||||
MENU LABEL Reboot
|
||||
COM32 boot/syslinux/reboot.c32
|
||||
|
||||
LABEL poweroff
|
||||
MENU LABEL Power Off
|
||||
COM32 boot/syslinux/poweroff.c32
|
||||
BIN
archdic-x86/syslinux/splash.png
Normal file
BIN
archdic-x86/syslinux/splash.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 44 KiB |
5
archdic-x86/syslinux/syslinux.cfg
Normal file
5
archdic-x86/syslinux/syslinux.cfg
Normal file
@@ -0,0 +1,5 @@
|
||||
DEFAULT loadconfig
|
||||
|
||||
LABEL loadconfig
|
||||
CONFIG archiso.cfg
|
||||
APPEND ../../
|
||||
0
archdic-x86_64/airootfs/etc/fstab
Normal file
0
archdic-x86_64/airootfs/etc/fstab
Normal file
1
archdic-x86_64/airootfs/etc/hostname
Normal file
1
archdic-x86_64/airootfs/etc/hostname
Normal file
@@ -0,0 +1 @@
|
||||
dicarch64
|
||||
1
archdic-x86_64/airootfs/etc/locale.conf
Normal file
1
archdic-x86_64/airootfs/etc/locale.conf
Normal file
@@ -0,0 +1 @@
|
||||
LANG=en_US.UTF-8
|
||||
3
archdic-x86_64/airootfs/etc/lxdm/LoginReady
Executable file
3
archdic-x86_64/airootfs/etc/lxdm/LoginReady
Executable file
@@ -0,0 +1,3 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Note: this is a sample and will not be run as is.
|
||||
3
archdic-x86_64/airootfs/etc/lxdm/PostLogin
Executable file
3
archdic-x86_64/airootfs/etc/lxdm/PostLogin
Executable file
@@ -0,0 +1,3 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Note: this is a sample and will not be run as is.
|
||||
3
archdic-x86_64/airootfs/etc/lxdm/PostLogout
Executable file
3
archdic-x86_64/airootfs/etc/lxdm/PostLogout
Executable file
@@ -0,0 +1,3 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Note: this is a sample and will not be run as is.
|
||||
3
archdic-x86_64/airootfs/etc/lxdm/PreLogin
Executable file
3
archdic-x86_64/airootfs/etc/lxdm/PreLogin
Executable file
@@ -0,0 +1,3 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Note: this is a sample and will not be run as is.
|
||||
3
archdic-x86_64/airootfs/etc/lxdm/PreReboot
Executable file
3
archdic-x86_64/airootfs/etc/lxdm/PreReboot
Executable file
@@ -0,0 +1,3 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Note: this is a sample and will not be run as is.
|
||||
3
archdic-x86_64/airootfs/etc/lxdm/PreShutdown
Executable file
3
archdic-x86_64/airootfs/etc/lxdm/PreShutdown
Executable file
@@ -0,0 +1,3 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Note: this is a sample and will not be run as is.
|
||||
71
archdic-x86_64/airootfs/etc/lxdm/Xsession
Executable file
71
archdic-x86_64/airootfs/etc/lxdm/Xsession
Executable file
@@ -0,0 +1,71 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# LXDM wrapper to run around X sessions.
|
||||
|
||||
echo "Running X session wrapper"
|
||||
|
||||
if [ $# -eq 1 -a -n "$1" ]; then
|
||||
LXSESSION=$1
|
||||
else
|
||||
# default session
|
||||
LXSESSION=/usr/bin/startlxde
|
||||
fi
|
||||
|
||||
# Load profile
|
||||
for file in "/etc/profile" "$HOME/.profile" "/etc/xprofile" "$HOME/.xprofile"; do
|
||||
if [ -f "$file" ]; then
|
||||
echo "Loading profile from $file";
|
||||
. "$file"
|
||||
fi
|
||||
done
|
||||
|
||||
# Load resources
|
||||
for file in "/etc/X11/Xresources" "$HOME/.Xresources"; do
|
||||
if [ -f "$file" ]; then
|
||||
echo "Loading resource: $file"
|
||||
xrdb -merge "$file"
|
||||
fi
|
||||
done
|
||||
|
||||
# Load keymaps
|
||||
for file in "/etc/X11/Xkbmap" "$HOME/.Xkbmap"; do
|
||||
if [ -f "$file" ]; then
|
||||
echo "Loading keymap: $file"
|
||||
setxkbmap `cat "$file"`
|
||||
XKB_IN_USE=yes
|
||||
fi
|
||||
done
|
||||
|
||||
# Load xmodmap if not using XKB
|
||||
if [ -z "$XKB_IN_USE" ]; then
|
||||
for file in "/etc/X11/Xmodmap" "$HOME/.Xmodmap"; do
|
||||
if [ -f "$file" ]; then
|
||||
echo "Loading modmap: $file"
|
||||
xmodmap "$file"
|
||||
fi
|
||||
done
|
||||
fi
|
||||
|
||||
unset XKB_IN_USE
|
||||
|
||||
# Run all system xinitrc shell scripts
|
||||
xinitdir="/etc/X11/xinit/xinitrc.d"
|
||||
if [ -d "$xinitdir" ]; then
|
||||
for script in $xinitdir/*; do
|
||||
echo "Loading xinit script $script"
|
||||
if [ -x "$script" -a ! -d "$script" ]; then
|
||||
. "$script"
|
||||
fi
|
||||
done
|
||||
fi
|
||||
|
||||
# Run user xsession shell script
|
||||
script="$HOME/.xsession"
|
||||
if [ -x "$script" -a ! -d "$script" ]; then
|
||||
echo "Loading xsession script $script"
|
||||
. "$script"
|
||||
fi
|
||||
|
||||
echo "X session wrapper complete, running session $LXSESSION"
|
||||
|
||||
exec $LXSESSION
|
||||
62
archdic-x86_64/airootfs/etc/lxdm/lxdm.conf
Executable file
62
archdic-x86_64/airootfs/etc/lxdm/lxdm.conf
Executable file
@@ -0,0 +1,62 @@
|
||||
[base]
|
||||
## uncomment and set autologin username to enable autologin
|
||||
autologin=root
|
||||
|
||||
## uncomment and set timeout to enable timeout autologin,
|
||||
## the value should >=5
|
||||
# timeout=10
|
||||
|
||||
## default session or desktop used when no systemwide config
|
||||
session=/usr/bin/startlxqt
|
||||
|
||||
## uncomment and set to set numlock on your keyboard
|
||||
numlock=1
|
||||
|
||||
## set this if you don't want to put xauth file at ~/.Xauthority
|
||||
# xauth_path=/tmp
|
||||
|
||||
# not ask password for users who have empty password
|
||||
skip_password=1
|
||||
|
||||
## greeter used to welcome the user
|
||||
greeter=/usr/lib/lxdm/lxdm-greeter-gtk
|
||||
|
||||
[server]
|
||||
## arg used to start xserver, not fully function
|
||||
arg=/usr/bin/X -background vt1
|
||||
# uncomment this if you really want xserver listen to tcp
|
||||
# tcp_listen=1
|
||||
# uncoment this if you want reset the xserver after logou
|
||||
# reset=1
|
||||
|
||||
[display]
|
||||
## gtk theme used by greeter
|
||||
gtk_theme=Adwaita
|
||||
|
||||
## background of the greeter
|
||||
# bg=/usr/share/backgrounds/default.png
|
||||
|
||||
## if show bottom pane
|
||||
bottom_pane=1
|
||||
|
||||
## if show language select control
|
||||
lang=1
|
||||
|
||||
## if show keyboard layout select control
|
||||
keyboard=0
|
||||
|
||||
## the theme of greeter
|
||||
theme=Industrial
|
||||
|
||||
[input]
|
||||
|
||||
[userlist]
|
||||
## if disable the user list control at greeter
|
||||
disable=0
|
||||
|
||||
## whitelist user
|
||||
white=root
|
||||
|
||||
## blacklist user
|
||||
black=
|
||||
|
||||
0
archdic-x86_64/airootfs/etc/machine-id
Normal file
0
archdic-x86_64/airootfs/etc/machine-id
Normal file
7
archdic-x86_64/airootfs/etc/modprobe.d/broadcom-wl.conf
Normal file
7
archdic-x86_64/airootfs/etc/modprobe.d/broadcom-wl.conf
Normal file
@@ -0,0 +1,7 @@
|
||||
# The broadcom-wl package requires some modules to be disabled in order to use
|
||||
# wl. Since the ISO image needs to cover many hardware cases, this file
|
||||
# overrides the default blacklist in /usr/lib/modprobe.d/
|
||||
#
|
||||
# If you need to use wl, you may need to delete this file, then `rmmod` any
|
||||
# already-loaded modules that are now blacklisted before proceeding to modprobe
|
||||
# wl itself.
|
||||
26
archdic-x86_64/airootfs/etc/systemd/scripts/choose-mirror
Executable file
26
archdic-x86_64/airootfs/etc/systemd/scripts/choose-mirror
Executable file
@@ -0,0 +1,26 @@
|
||||
#!/bin/bash
|
||||
|
||||
get_cmdline() {
|
||||
local param
|
||||
for param in $(< /proc/cmdline); do
|
||||
case "${param}" in
|
||||
$1=*) echo "${param##*=}";
|
||||
return 0
|
||||
;;
|
||||
esac
|
||||
done
|
||||
}
|
||||
|
||||
mirror=$(get_cmdline mirror)
|
||||
[[ $mirror = auto ]] && mirror=$(get_cmdline archiso_http_srv)
|
||||
[[ $mirror ]] || exit 0
|
||||
|
||||
mv /etc/pacman.d/mirrorlist /etc/pacman.d/mirrorlist.orig
|
||||
cat >/etc/pacman.d/mirrorlist << EOF
|
||||
#
|
||||
# Arch Linux repository mirrorlist
|
||||
# Generated by archiso
|
||||
#
|
||||
|
||||
Server = ${mirror%%/}/\$repo/os/\$arch
|
||||
EOF
|
||||
@@ -0,0 +1,10 @@
|
||||
[Unit]
|
||||
Description=Choose mirror from the kernel command line
|
||||
ConditionKernelCommandLine=mirror
|
||||
|
||||
[Service]
|
||||
Type=oneshot
|
||||
ExecStart=/etc/systemd/scripts/choose-mirror
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
||||
@@ -0,0 +1 @@
|
||||
/usr/lib/systemd/system/lxdm.service
|
||||
@@ -0,0 +1,8 @@
|
||||
[Unit]
|
||||
Description=Temporary /etc/pacman.d/gnupg directory
|
||||
|
||||
[Mount]
|
||||
What=tmpfs
|
||||
Where=/etc/pacman.d/gnupg
|
||||
Type=tmpfs
|
||||
Options=mode=0755
|
||||
@@ -0,0 +1,3 @@
|
||||
[Service]
|
||||
ExecStart=
|
||||
ExecStart=-/sbin/agetty --autologin root --noclear %I 38400 linux
|
||||
@@ -0,0 +1,15 @@
|
||||
[Unit]
|
||||
Description=Initializes Pacman keyring
|
||||
Wants=haveged.service
|
||||
After=haveged.service
|
||||
Requires=etc-pacman.d-gnupg.mount
|
||||
After=etc-pacman.d-gnupg.mount
|
||||
|
||||
[Service]
|
||||
Type=oneshot
|
||||
RemainAfterExit=yes
|
||||
ExecStart=/usr/bin/pacman-key --init
|
||||
ExecStart=/usr/bin/pacman-key --populate archlinux
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
||||
1
archdic-x86_64/airootfs/etc/udev/rules.d/81-dhcpcd.rules
Normal file
1
archdic-x86_64/airootfs/etc/udev/rules.d/81-dhcpcd.rules
Normal file
@@ -0,0 +1 @@
|
||||
ACTION=="add", SUBSYSTEM=="net", ENV{INTERFACE}=="en*|eth*", ENV{SYSTEMD_WANTS}="dhcpcd@$name.service"
|
||||
34
archdic-x86_64/airootfs/root/.automated_script.sh
Executable file
34
archdic-x86_64/airootfs/root/.automated_script.sh
Executable file
@@ -0,0 +1,34 @@
|
||||
#!/bin/bash
|
||||
|
||||
script_cmdline ()
|
||||
{
|
||||
local param
|
||||
for param in $(< /proc/cmdline); do
|
||||
case "${param}" in
|
||||
script=*) echo "${param#*=}" ; return 0 ;;
|
||||
esac
|
||||
done
|
||||
}
|
||||
|
||||
automated_script ()
|
||||
{
|
||||
local script rt
|
||||
script="$(script_cmdline)"
|
||||
if [[ -n "${script}" && ! -x /tmp/startup_script ]]; then
|
||||
if [[ "${script}" =~ ^http:// || "${script}" =~ ^ftp:// ]]; then
|
||||
wget "${script}" --retry-connrefused -q -O /tmp/startup_script >/dev/null
|
||||
rt=$?
|
||||
else
|
||||
cp "${script}" /tmp/startup_script
|
||||
rt=$?
|
||||
fi
|
||||
if [[ ${rt} -eq 0 ]]; then
|
||||
chmod +x /tmp/startup_script
|
||||
/tmp/startup_script
|
||||
fi
|
||||
fi
|
||||
}
|
||||
|
||||
if [[ $(tty) == "/dev/tty1" ]]; then
|
||||
automated_script
|
||||
fi
|
||||
1
archdic-x86_64/airootfs/root/.zlogin
Normal file
1
archdic-x86_64/airootfs/root/.zlogin
Normal file
@@ -0,0 +1 @@
|
||||
~/.automated_script.sh
|
||||
23
archdic-x86_64/airootfs/root/customize_airootfs.sh
Executable file
23
archdic-x86_64/airootfs/root/customize_airootfs.sh
Executable file
@@ -0,0 +1,23 @@
|
||||
#!/bin/bash
|
||||
|
||||
set -e -u
|
||||
|
||||
sed -i 's/#\(en_US\.UTF-8\)/\1/' /etc/locale.gen
|
||||
locale-gen
|
||||
|
||||
ln -sf /usr/share/zoneinfo/UTC /etc/localtime
|
||||
|
||||
usermod -s /usr/bin/zsh root
|
||||
cp -aT /etc/skel/ /root/
|
||||
chmod 700 /root
|
||||
|
||||
sed -i 's/#\(PermitRootLogin \).\+/\1yes/' /etc/ssh/sshd_config
|
||||
sed -i "s/#Server/Server/g" /etc/pacman.d/mirrorlist
|
||||
sed -i 's/#\(Storage=\)auto/\1volatile/' /etc/systemd/journald.conf
|
||||
|
||||
sed -i 's/#\(HandleSuspendKey=\)suspend/\1ignore/' /etc/systemd/logind.conf
|
||||
sed -i 's/#\(HandleHibernateKey=\)hibernate/\1ignore/' /etc/systemd/logind.conf
|
||||
sed -i 's/#\(HandleLidSwitch=\)suspend/\1ignore/' /etc/systemd/logind.conf
|
||||
|
||||
systemctl enable pacman-init.service choose-mirror.service
|
||||
systemctl set-default graphical.target
|
||||
3
archdic-x86_64/airootfs/root/install.txt
Normal file
3
archdic-x86_64/airootfs/root/install.txt
Normal file
@@ -0,0 +1,3 @@
|
||||
View this installation guide online at
|
||||
https://wiki.archlinux.org/index.php/Installation_Guide
|
||||
|
||||
266
archdic-x86_64/build.sh
Executable file
266
archdic-x86_64/build.sh
Executable file
@@ -0,0 +1,266 @@
|
||||
#!/bin/bash
|
||||
|
||||
set -e -u
|
||||
|
||||
iso_name=archlinux
|
||||
iso_label="ARCH_$(date +%Y%m)"
|
||||
iso_publisher="Arch Linux <http://www.archlinux.org>"
|
||||
iso_application="Arch Linux Live/Rescue CD"
|
||||
iso_version=$(date +%Y.%m.%d)
|
||||
install_dir=arch
|
||||
work_dir=work
|
||||
out_dir=out
|
||||
gpg_key=
|
||||
|
||||
verbose=""
|
||||
script_path=$(readlink -f ${0%/*})
|
||||
|
||||
umask 0022
|
||||
|
||||
_usage ()
|
||||
{
|
||||
echo "usage ${0} [options]"
|
||||
echo
|
||||
echo " General options:"
|
||||
echo " -N <iso_name> Set an iso filename (prefix)"
|
||||
echo " Default: ${iso_name}"
|
||||
echo " -V <iso_version> Set an iso version (in filename)"
|
||||
echo " Default: ${iso_version}"
|
||||
echo " -L <iso_label> Set an iso label (disk label)"
|
||||
echo " Default: ${iso_label}"
|
||||
echo " -P <publisher> Set a publisher for the disk"
|
||||
echo " Default: '${iso_publisher}'"
|
||||
echo " -A <application> Set an application name for the disk"
|
||||
echo " Default: '${iso_application}'"
|
||||
echo " -D <install_dir> Set an install_dir (directory inside iso)"
|
||||
echo " Default: ${install_dir}"
|
||||
echo " -w <work_dir> Set the working directory"
|
||||
echo " Default: ${work_dir}"
|
||||
echo " -o <out_dir> Set the output directory"
|
||||
echo " Default: ${out_dir}"
|
||||
echo " -v Enable verbose output"
|
||||
echo " -h This help message"
|
||||
exit ${1}
|
||||
}
|
||||
|
||||
# Helper function to run make_*() only one time per architecture.
|
||||
run_once() {
|
||||
if [[ ! -e ${work_dir}/build.${1} ]]; then
|
||||
$1
|
||||
touch ${work_dir}/build.${1}
|
||||
fi
|
||||
}
|
||||
|
||||
# Setup custom pacman.conf with current cache directories.
|
||||
make_pacman_conf() {
|
||||
local _cache_dirs
|
||||
_cache_dirs=($(pacman -v 2>&1 | grep '^Cache Dirs:' | sed 's/Cache Dirs:\s*//g'))
|
||||
sed -r "s|^#?\\s*CacheDir.+|CacheDir = $(echo -n ${_cache_dirs[@]})|g" ${script_path}/pacman.conf > ${work_dir}/pacman.conf
|
||||
}
|
||||
|
||||
# Base installation, plus needed packages (airootfs)
|
||||
make_basefs() {
|
||||
mkarchiso ${verbose} -w "${work_dir}/x86_64" -C "${work_dir}/pacman.conf" -D "${install_dir}" init
|
||||
mkarchiso ${verbose} -w "${work_dir}/x86_64" -C "${work_dir}/pacman.conf" -D "${install_dir}" -p "haveged intel-ucode amd-ucode memtest86+ mkinitcpio-nfs-utils nbd zsh efitools" install
|
||||
}
|
||||
|
||||
# Additional packages (airootfs)
|
||||
make_packages() {
|
||||
mkarchiso ${verbose} -w "${work_dir}/x86_64" -C "${work_dir}/pacman.conf" -D "${install_dir}" -p "$(grep -h -v ^# ${script_path}/packages.x86_64)" install
|
||||
}
|
||||
|
||||
# Copy mkinitcpio archiso hooks and build initramfs (airootfs)
|
||||
make_setup_mkinitcpio() {
|
||||
local _hook
|
||||
mkdir -p ${work_dir}/x86_64/airootfs/etc/initcpio/hooks
|
||||
mkdir -p ${work_dir}/x86_64/airootfs/etc/initcpio/install
|
||||
for _hook in archiso archiso_shutdown archiso_pxe_common archiso_pxe_nbd archiso_pxe_http archiso_pxe_nfs archiso_loop_mnt; do
|
||||
cp /usr/lib/initcpio/hooks/${_hook} ${work_dir}/x86_64/airootfs/etc/initcpio/hooks
|
||||
cp /usr/lib/initcpio/install/${_hook} ${work_dir}/x86_64/airootfs/etc/initcpio/install
|
||||
done
|
||||
sed -i "s|/usr/lib/initcpio/|/etc/initcpio/|g" ${work_dir}/x86_64/airootfs/etc/initcpio/install/archiso_shutdown
|
||||
cp /usr/lib/initcpio/install/archiso_kms ${work_dir}/x86_64/airootfs/etc/initcpio/install
|
||||
cp /usr/lib/initcpio/archiso_shutdown ${work_dir}/x86_64/airootfs/etc/initcpio
|
||||
cp ${script_path}/mkinitcpio.conf ${work_dir}/x86_64/airootfs/etc/mkinitcpio-archiso.conf
|
||||
gnupg_fd=
|
||||
if [[ ${gpg_key} ]]; then
|
||||
gpg --export ${gpg_key} >${work_dir}/gpgkey
|
||||
exec 17<>${work_dir}/gpgkey
|
||||
fi
|
||||
ARCHISO_GNUPG_FD=${gpg_key:+17} mkarchiso ${verbose} -w "${work_dir}/x86_64" -C "${work_dir}/pacman.conf" -D "${install_dir}" -r 'mkinitcpio -c /etc/mkinitcpio-archiso.conf -k /boot/vmlinuz-linux -g /boot/archiso.img' run
|
||||
if [[ ${gpg_key} ]]; then
|
||||
exec 17<&-
|
||||
fi
|
||||
}
|
||||
|
||||
# Customize installation (airootfs)
|
||||
make_customize_airootfs() {
|
||||
cp -af ${script_path}/airootfs ${work_dir}/x86_64
|
||||
|
||||
cp ${script_path}/pacman.conf ${work_dir}/x86_64/airootfs/etc
|
||||
|
||||
curl -o ${work_dir}/x86_64/airootfs/etc/pacman.d/mirrorlist 'https://www.archlinux.org/mirrorlist/?country=all&protocol=http&use_mirror_status=on'
|
||||
|
||||
lynx -dump -nolist 'https://wiki.archlinux.org/index.php/Installation_Guide?action=render' >> ${work_dir}/x86_64/airootfs/root/install.txt
|
||||
|
||||
mkarchiso ${verbose} -w "${work_dir}/x86_64" -C "${work_dir}/pacman.conf" -D "${install_dir}" -r '/root/customize_airootfs.sh' run
|
||||
rm ${work_dir}/x86_64/airootfs/root/customize_airootfs.sh
|
||||
}
|
||||
|
||||
# Prepare kernel/initramfs ${install_dir}/boot/
|
||||
make_boot() {
|
||||
mkdir -p ${work_dir}/iso/${install_dir}/boot/x86_64
|
||||
cp ${work_dir}/x86_64/airootfs/boot/archiso.img ${work_dir}/iso/${install_dir}/boot/x86_64/archiso.img
|
||||
cp ${work_dir}/x86_64/airootfs/boot/vmlinuz-linux ${work_dir}/iso/${install_dir}/boot/x86_64/vmlinuz
|
||||
}
|
||||
|
||||
# Add other aditional/extra files to ${install_dir}/boot/
|
||||
make_boot_extra() {
|
||||
cp ${work_dir}/x86_64/airootfs/boot/memtest86+/memtest.bin ${work_dir}/iso/${install_dir}/boot/memtest
|
||||
cp ${work_dir}/x86_64/airootfs/usr/share/licenses/common/GPL2/license.txt ${work_dir}/iso/${install_dir}/boot/memtest.COPYING
|
||||
cp ${work_dir}/x86_64/airootfs/boot/intel-ucode.img ${work_dir}/iso/${install_dir}/boot/intel_ucode.img
|
||||
cp ${work_dir}/x86_64/airootfs/usr/share/licenses/intel-ucode/LICENSE ${work_dir}/iso/${install_dir}/boot/intel_ucode.LICENSE
|
||||
cp ${work_dir}/x86_64/airootfs/boot/amd-ucode.img ${work_dir}/iso/${install_dir}/boot/amd_ucode.img
|
||||
cp ${work_dir}/x86_64/airootfs/usr/share/licenses/amd-ucode/LICENSE ${work_dir}/iso/${install_dir}/boot/amd_ucode.LICENSE
|
||||
}
|
||||
|
||||
# Prepare /${install_dir}/boot/syslinux
|
||||
make_syslinux() {
|
||||
_uname_r=$(file -b ${work_dir}/x86_64/airootfs/boot/vmlinuz-linux| awk 'f{print;f=0} /version/{f=1}' RS=' ')
|
||||
mkdir -p ${work_dir}/iso/${install_dir}/boot/syslinux
|
||||
for _cfg in ${script_path}/syslinux/*.cfg; do
|
||||
sed "s|%ARCHISO_LABEL%|${iso_label}|g;
|
||||
s|%INSTALL_DIR%|${install_dir}|g" ${_cfg} > ${work_dir}/iso/${install_dir}/boot/syslinux/${_cfg##*/}
|
||||
done
|
||||
cp ${script_path}/syslinux/splash.png ${work_dir}/iso/${install_dir}/boot/syslinux
|
||||
cp ${work_dir}/x86_64/airootfs/usr/lib/syslinux/bios/*.c32 ${work_dir}/iso/${install_dir}/boot/syslinux
|
||||
cp ${work_dir}/x86_64/airootfs/usr/lib/syslinux/bios/lpxelinux.0 ${work_dir}/iso/${install_dir}/boot/syslinux
|
||||
cp ${work_dir}/x86_64/airootfs/usr/lib/syslinux/bios/memdisk ${work_dir}/iso/${install_dir}/boot/syslinux
|
||||
mkdir -p ${work_dir}/iso/${install_dir}/boot/syslinux/hdt
|
||||
gzip -c -9 ${work_dir}/x86_64/airootfs/usr/share/hwdata/pci.ids > ${work_dir}/iso/${install_dir}/boot/syslinux/hdt/pciids.gz
|
||||
gzip -c -9 ${work_dir}/x86_64/airootfs/usr/lib/modules/${_uname_r}/modules.alias > ${work_dir}/iso/${install_dir}/boot/syslinux/hdt/modalias.gz
|
||||
}
|
||||
|
||||
# Prepare /isolinux
|
||||
make_isolinux() {
|
||||
mkdir -p ${work_dir}/iso/isolinux
|
||||
sed "s|%INSTALL_DIR%|${install_dir}|g" ${script_path}/isolinux/isolinux.cfg > ${work_dir}/iso/isolinux/isolinux.cfg
|
||||
cp ${work_dir}/x86_64/airootfs/usr/lib/syslinux/bios/isolinux.bin ${work_dir}/iso/isolinux/
|
||||
cp ${work_dir}/x86_64/airootfs/usr/lib/syslinux/bios/isohdpfx.bin ${work_dir}/iso/isolinux/
|
||||
cp ${work_dir}/x86_64/airootfs/usr/lib/syslinux/bios/ldlinux.c32 ${work_dir}/iso/isolinux/
|
||||
}
|
||||
|
||||
# Prepare /EFI
|
||||
make_efi() {
|
||||
mkdir -p ${work_dir}/iso/EFI/boot
|
||||
cp ${work_dir}/x86_64/airootfs/usr/share/efitools/efi/PreLoader.efi ${work_dir}/iso/EFI/boot/bootx64.efi
|
||||
cp ${work_dir}/x86_64/airootfs/usr/share/efitools/efi/HashTool.efi ${work_dir}/iso/EFI/boot/
|
||||
|
||||
cp ${work_dir}/x86_64/airootfs/usr/lib/systemd/boot/efi/systemd-bootx64.efi ${work_dir}/iso/EFI/boot/loader.efi
|
||||
|
||||
mkdir -p ${work_dir}/iso/loader/entries
|
||||
cp ${script_path}/efiboot/loader/loader.conf ${work_dir}/iso/loader/
|
||||
cp ${script_path}/efiboot/loader/entries/uefi-shell-v2-x86_64.conf ${work_dir}/iso/loader/entries/
|
||||
cp ${script_path}/efiboot/loader/entries/uefi-shell-v1-x86_64.conf ${work_dir}/iso/loader/entries/
|
||||
|
||||
sed "s|%ARCHISO_LABEL%|${iso_label}|g;
|
||||
s|%INSTALL_DIR%|${install_dir}|g" \
|
||||
${script_path}/efiboot/loader/entries/archiso-x86_64-usb.conf > ${work_dir}/iso/loader/entries/archiso-x86_64.conf
|
||||
|
||||
# EFI Shell 2.0 for UEFI 2.3+
|
||||
curl -o ${work_dir}/iso/EFI/shellx64_v2.efi https://raw.githubusercontent.com/tianocore/edk2/UDK2018/ShellBinPkg/UefiShell/X64/Shell.efi
|
||||
# EFI Shell 1.0 for non UEFI 2.3+
|
||||
curl -o ${work_dir}/iso/EFI/shellx64_v1.efi https://raw.githubusercontent.com/tianocore/edk2/UDK2018/EdkShellBinPkg/FullShell/X64/Shell_Full.efi
|
||||
}
|
||||
|
||||
# Prepare efiboot.img::/EFI for "El Torito" EFI boot mode
|
||||
make_efiboot() {
|
||||
mkdir -p ${work_dir}/iso/EFI/archiso
|
||||
truncate -s 64M ${work_dir}/iso/EFI/archiso/efiboot.img
|
||||
mkfs.fat -n ARCHISO_EFI ${work_dir}/iso/EFI/archiso/efiboot.img
|
||||
|
||||
mkdir -p ${work_dir}/efiboot
|
||||
mount ${work_dir}/iso/EFI/archiso/efiboot.img ${work_dir}/efiboot
|
||||
|
||||
mkdir -p ${work_dir}/efiboot/EFI/archiso
|
||||
cp ${work_dir}/iso/${install_dir}/boot/x86_64/vmlinuz ${work_dir}/efiboot/EFI/archiso/vmlinuz.efi
|
||||
cp ${work_dir}/iso/${install_dir}/boot/x86_64/archiso.img ${work_dir}/efiboot/EFI/archiso/archiso.img
|
||||
|
||||
cp ${work_dir}/iso/${install_dir}/boot/intel_ucode.img ${work_dir}/efiboot/EFI/archiso/intel_ucode.img
|
||||
cp ${work_dir}/iso/${install_dir}/boot/amd_ucode.img ${work_dir}/efiboot/EFI/archiso/amd_ucode.img
|
||||
|
||||
mkdir -p ${work_dir}/efiboot/EFI/boot
|
||||
cp ${work_dir}/x86_64/airootfs/usr/share/efitools/efi/PreLoader.efi ${work_dir}/efiboot/EFI/boot/bootx64.efi
|
||||
cp ${work_dir}/x86_64/airootfs/usr/share/efitools/efi/HashTool.efi ${work_dir}/efiboot/EFI/boot/
|
||||
|
||||
cp ${work_dir}/x86_64/airootfs/usr/lib/systemd/boot/efi/systemd-bootx64.efi ${work_dir}/efiboot/EFI/boot/loader.efi
|
||||
|
||||
mkdir -p ${work_dir}/efiboot/loader/entries
|
||||
cp ${script_path}/efiboot/loader/loader.conf ${work_dir}/efiboot/loader/
|
||||
cp ${script_path}/efiboot/loader/entries/uefi-shell-v2-x86_64.conf ${work_dir}/efiboot/loader/entries/
|
||||
cp ${script_path}/efiboot/loader/entries/uefi-shell-v1-x86_64.conf ${work_dir}/efiboot/loader/entries/
|
||||
|
||||
sed "s|%ARCHISO_LABEL%|${iso_label}|g;
|
||||
s|%INSTALL_DIR%|${install_dir}|g" \
|
||||
${script_path}/efiboot/loader/entries/archiso-x86_64-cd.conf > ${work_dir}/efiboot/loader/entries/archiso-x86_64.conf
|
||||
|
||||
cp ${work_dir}/iso/EFI/shellx64_v2.efi ${work_dir}/efiboot/EFI/
|
||||
cp ${work_dir}/iso/EFI/shellx64_v1.efi ${work_dir}/efiboot/EFI/
|
||||
|
||||
umount -d ${work_dir}/efiboot
|
||||
}
|
||||
|
||||
# Build airootfs filesystem image
|
||||
make_prepare() {
|
||||
cp -a -l -f ${work_dir}/x86_64/airootfs ${work_dir}
|
||||
mkarchiso ${verbose} -w "${work_dir}" -D "${install_dir}" pkglist
|
||||
mkarchiso ${verbose} -w "${work_dir}" -D "${install_dir}" ${gpg_key:+-g ${gpg_key}} prepare
|
||||
rm -rf ${work_dir}/airootfs
|
||||
# rm -rf ${work_dir}/x86_64/airootfs (if low space, this helps)
|
||||
}
|
||||
|
||||
# Build ISO
|
||||
make_iso() {
|
||||
mkarchiso ${verbose} -w "${work_dir}" -D "${install_dir}" -L "${iso_label}" -P "${iso_publisher}" -A "${iso_application}" -o "${out_dir}" iso "${iso_name}-${iso_version}-x86_64.iso"
|
||||
}
|
||||
|
||||
if [[ ${EUID} -ne 0 ]]; then
|
||||
echo "This script must be run as root."
|
||||
_usage 1
|
||||
fi
|
||||
|
||||
while getopts 'N:V:L:P:A:D:w:o:g:vh' arg; do
|
||||
case "${arg}" in
|
||||
N) iso_name="${OPTARG}" ;;
|
||||
V) iso_version="${OPTARG}" ;;
|
||||
L) iso_label="${OPTARG}" ;;
|
||||
P) iso_publisher="${OPTARG}" ;;
|
||||
A) iso_application="${OPTARG}" ;;
|
||||
D) install_dir="${OPTARG}" ;;
|
||||
w) work_dir="${OPTARG}" ;;
|
||||
o) out_dir="${OPTARG}" ;;
|
||||
g) gpg_key="${OPTARG}" ;;
|
||||
v) verbose="-v" ;;
|
||||
h) _usage 0 ;;
|
||||
*)
|
||||
echo "Invalid argument '${arg}'"
|
||||
_usage 1
|
||||
;;
|
||||
esac
|
||||
done
|
||||
|
||||
mkdir -p ${work_dir}
|
||||
|
||||
run_once make_pacman_conf
|
||||
run_once make_basefs
|
||||
run_once make_packages
|
||||
run_once make_setup_mkinitcpio
|
||||
run_once make_customize_airootfs
|
||||
run_once make_boot
|
||||
run_once make_boot_extra
|
||||
run_once make_syslinux
|
||||
run_once make_isolinux
|
||||
run_once make_efi
|
||||
run_once make_efiboot
|
||||
run_once make_prepare
|
||||
run_once make_iso
|
||||
@@ -0,0 +1,6 @@
|
||||
title DiscImageChef's Arch Linux archiso x86_64 UEFI CD
|
||||
linux /EFI/archiso/vmlinuz.efi
|
||||
initrd /EFI/archiso/intel_ucode.img
|
||||
initrd /EFI/archiso/amd_ucode.img
|
||||
initrd /EFI/archiso/archiso.img
|
||||
options archisobasedir=%INSTALL_DIR% archisolabel=%ARCHISO_LABEL%
|
||||
@@ -0,0 +1,6 @@
|
||||
title DiscImageChef's Arch Linux archiso x86_64 UEFI USB
|
||||
linux /%INSTALL_DIR%/boot/x86_64/vmlinuz
|
||||
initrd /%INSTALL_DIR%/boot/intel_ucode.img
|
||||
initrd /%INSTALL_DIR%/boot/amd_ucode.img
|
||||
initrd /%INSTALL_DIR%/boot/x86_64/archiso.img
|
||||
options archisobasedir=%INSTALL_DIR% archisolabel=%ARCHISO_LABEL%
|
||||
@@ -0,0 +1,2 @@
|
||||
title UEFI Shell x86_64 v1
|
||||
efi /EFI/shellx64_v1.efi
|
||||
@@ -0,0 +1,2 @@
|
||||
title UEFI Shell x86_64 v2
|
||||
efi /EFI/shellx64_v2.efi
|
||||
2
archdic-x86_64/efiboot/loader/loader.conf
Normal file
2
archdic-x86_64/efiboot/loader/loader.conf
Normal file
@@ -0,0 +1,2 @@
|
||||
timeout 3
|
||||
default archiso-x86_64
|
||||
6
archdic-x86_64/isolinux/isolinux.cfg
Normal file
6
archdic-x86_64/isolinux/isolinux.cfg
Normal file
@@ -0,0 +1,6 @@
|
||||
PATH /%INSTALL_DIR%/boot/syslinux/
|
||||
DEFAULT loadconfig
|
||||
|
||||
LABEL loadconfig
|
||||
CONFIG /%INSTALL_DIR%/boot/syslinux/archiso.cfg
|
||||
APPEND /%INSTALL_DIR%/
|
||||
2
archdic-x86_64/mkinitcpio.conf
Normal file
2
archdic-x86_64/mkinitcpio.conf
Normal file
@@ -0,0 +1,2 @@
|
||||
HOOKS=(base udev memdisk archiso_shutdown archiso archiso_loop_mnt archiso_pxe_common archiso_pxe_nbd archiso_pxe_http archiso_pxe_nfs archiso_kms block filesystems keyboard)
|
||||
COMPRESSION="xz"
|
||||
217
archdic-x86_64/packages.x86_64
Normal file
217
archdic-x86_64/packages.x86_64
Normal file
@@ -0,0 +1,217 @@
|
||||
aircrack-ng
|
||||
alsa
|
||||
alsa-firmware
|
||||
arch-install-scripts
|
||||
aria2
|
||||
aspell
|
||||
atom
|
||||
b43-fwcutter
|
||||
base
|
||||
base-devel
|
||||
bash-completion
|
||||
blueman
|
||||
bluez-cups
|
||||
bluez-hid2hci
|
||||
bluez-libs
|
||||
bluez-tools
|
||||
bluez-utils
|
||||
breeze
|
||||
breeze-gtk
|
||||
breeze-icons
|
||||
broadcom-wl
|
||||
brotli
|
||||
btrfs-progs
|
||||
cabextract
|
||||
cdparanoia
|
||||
cdrdao
|
||||
cdrkit
|
||||
chromaprint
|
||||
cifs-utils
|
||||
clonezilla
|
||||
convmv
|
||||
crda
|
||||
cryptsetup
|
||||
ctags
|
||||
cvs
|
||||
ddrescue
|
||||
dhclient
|
||||
dialog
|
||||
discimagechef-git
|
||||
dmidecode
|
||||
dmraid
|
||||
dnsmasq
|
||||
dnsutils
|
||||
dosfstools
|
||||
dotnet-runtime
|
||||
dstat
|
||||
e2fsprogs
|
||||
easy-rsa
|
||||
efibootmgr
|
||||
elinks
|
||||
encfs
|
||||
ethtool
|
||||
exfat-utils
|
||||
f2fs-tools
|
||||
fatresize
|
||||
ffmpeg
|
||||
firefox
|
||||
fortune-mod
|
||||
fsarchiver
|
||||
fuse2
|
||||
fuse3
|
||||
gd
|
||||
geoip2-database
|
||||
git
|
||||
gnu-netcat
|
||||
gpart
|
||||
gparted
|
||||
gpm
|
||||
gptfdisk
|
||||
grml-zsh-config
|
||||
grub
|
||||
gtk2
|
||||
gzip
|
||||
hdparm
|
||||
htop
|
||||
i2c-tools
|
||||
ifplugd
|
||||
ifuse
|
||||
intel-media-driver
|
||||
iperf3
|
||||
iproute2
|
||||
ipw2100-fw
|
||||
ipw2200-fw
|
||||
irssi
|
||||
iwd
|
||||
java-rhino
|
||||
jfsutils
|
||||
joyutils
|
||||
jre11-openjdk
|
||||
lftp
|
||||
libcdio
|
||||
libdc1394
|
||||
libdvdcss
|
||||
libdvdnav
|
||||
libdvdread
|
||||
libheif
|
||||
libisoburn
|
||||
libmtp
|
||||
libnfs
|
||||
libpulse
|
||||
libraw
|
||||
libshout
|
||||
libstatgrab
|
||||
libsysstat
|
||||
libusb-compat
|
||||
libva-intel-driver
|
||||
libva-mesa-driver
|
||||
libva-vdpau-driver
|
||||
libwmf
|
||||
linux-atm
|
||||
linux-firmware
|
||||
lirc
|
||||
live-media
|
||||
lm_sensors
|
||||
lsof
|
||||
lsscsi
|
||||
ltrace
|
||||
lxdm
|
||||
lxqt
|
||||
lz4
|
||||
lzip
|
||||
lzo
|
||||
lzop
|
||||
mc
|
||||
mesa-vdpau
|
||||
modemmanager
|
||||
mono
|
||||
mpg123
|
||||
mtools
|
||||
ndisc6
|
||||
networkmanager
|
||||
nfs-utils
|
||||
nilfs-utils
|
||||
nmap
|
||||
noto-fonts
|
||||
noto-fonts-cjk
|
||||
noto-fonts-emoji
|
||||
noto-fonts-extra
|
||||
ntfs-3g
|
||||
ntp
|
||||
opencl-driver
|
||||
openconnect
|
||||
openexr
|
||||
openssh
|
||||
openvpn
|
||||
openvswitch
|
||||
os-prober
|
||||
p7zip
|
||||
partclone
|
||||
parted
|
||||
partimage
|
||||
pcsclite
|
||||
polkit
|
||||
poppler-data
|
||||
ppp
|
||||
pptpclient
|
||||
protobuf
|
||||
pulseaudio
|
||||
pulseaudio-bluetooth
|
||||
pulseaudio-qt
|
||||
pygtk
|
||||
python
|
||||
python2
|
||||
qt
|
||||
read-edid
|
||||
refind-efi
|
||||
reiserfsprogs
|
||||
rp-pppoe
|
||||
rsync
|
||||
samba
|
||||
sbsigntools
|
||||
sdparm
|
||||
sg3_utils
|
||||
smartmontools
|
||||
smbclient
|
||||
strace
|
||||
sudo
|
||||
sysstat
|
||||
tcpdump
|
||||
testdisk
|
||||
truecrypt
|
||||
ttf-liberation
|
||||
ttf-roboto
|
||||
twolame
|
||||
udftools
|
||||
unace
|
||||
unarchiver
|
||||
unarj
|
||||
unichrome-dri
|
||||
unrar
|
||||
upx
|
||||
usb_modeswitch
|
||||
vcdimager
|
||||
veracrypt
|
||||
vim-minimal
|
||||
vlc
|
||||
vnstat
|
||||
vpnc
|
||||
vulkan-driver
|
||||
wget
|
||||
wireless-regdb
|
||||
wireless_tools
|
||||
wpa_supplicant
|
||||
wvdial
|
||||
xdg-utils
|
||||
xfsprogs
|
||||
xl2tpd
|
||||
xorg
|
||||
xorg-apps
|
||||
xorg-drivers
|
||||
xorg-fonts
|
||||
xz
|
||||
zaproxy
|
||||
zip
|
||||
zopfli
|
||||
zstd
|
||||
zvbi
|
||||
105
archdic-x86_64/pacman.conf
Normal file
105
archdic-x86_64/pacman.conf
Normal file
@@ -0,0 +1,105 @@
|
||||
#
|
||||
# /etc/pacman.conf
|
||||
#
|
||||
# See the pacman.conf(5) manpage for option and repository directives
|
||||
|
||||
#
|
||||
# GENERAL OPTIONS
|
||||
#
|
||||
[options]
|
||||
# The following paths are commented out with their default values listed.
|
||||
# If you wish to use different paths, uncomment and update the paths.
|
||||
#RootDir = /
|
||||
#DBPath = /var/lib/pacman/
|
||||
#CacheDir = /var/cache/pacman/pkg/
|
||||
#LogFile = /var/log/pacman.log
|
||||
#GPGDir = /etc/pacman.d/gnupg/
|
||||
#HookDir = /etc/pacman.d/hooks/
|
||||
HoldPkg = pacman glibc
|
||||
#XferCommand = /usr/bin/curl -C - -f %u > %o
|
||||
#XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
|
||||
#CleanMethod = KeepInstalled
|
||||
#UseDelta = 0.7
|
||||
Architecture = auto
|
||||
|
||||
# Pacman won't upgrade packages listed in IgnorePkg and members of IgnoreGroup
|
||||
#IgnorePkg =
|
||||
#IgnoreGroup =
|
||||
|
||||
#NoUpgrade =
|
||||
#NoExtract =
|
||||
|
||||
# Misc options
|
||||
#UseSyslog
|
||||
#Color
|
||||
#TotalDownload
|
||||
# We cannot check disk space from within a chroot environment
|
||||
#CheckSpace
|
||||
#VerbosePkgLists
|
||||
|
||||
# By default, pacman accepts packages signed by keys that its local keyring
|
||||
# trusts (see pacman-key and its man page), as well as unsigned packages.
|
||||
SigLevel = Required DatabaseOptional
|
||||
LocalFileSigLevel = Optional
|
||||
#RemoteFileSigLevel = Required
|
||||
|
||||
# NOTE: You must run `pacman-key --init` before first using pacman; the local
|
||||
# keyring can then be populated with the keys of all official Arch Linux
|
||||
# packagers with `pacman-key --populate archlinux`.
|
||||
|
||||
#
|
||||
# REPOSITORIES
|
||||
# - can be defined here or included from another file
|
||||
# - pacman will search repositories in the order defined here
|
||||
# - local/custom mirrors can be added here or in separate files
|
||||
# - repositories listed first will take precedence when packages
|
||||
# have identical names, regardless of version number
|
||||
# - URLs will have $repo replaced by the name of the current repo
|
||||
# - URLs will have $arch replaced by the name of the architecture
|
||||
#
|
||||
# Repository entries are of the format:
|
||||
# [repo-name]
|
||||
# Server = ServerName
|
||||
# Include = IncludePath
|
||||
#
|
||||
# The header [repo-name] is crucial - it must be present and
|
||||
# uncommented to enable the repo.
|
||||
#
|
||||
|
||||
# The testing repositories are disabled by default. To enable, uncomment the
|
||||
# repo name header and Include lines. You can add preferred servers immediately
|
||||
# after the header, and they will be used before the default mirrors.
|
||||
|
||||
#[testing]
|
||||
#Include = /etc/pacman.d/mirrorlist
|
||||
|
||||
[core]
|
||||
Include = /etc/pacman.d/mirrorlist
|
||||
|
||||
[extra]
|
||||
Include = /etc/pacman.d/mirrorlist
|
||||
|
||||
#[community-testing]
|
||||
#Include = /etc/pacman.d/mirrorlist
|
||||
|
||||
[community]
|
||||
Include = /etc/pacman.d/mirrorlist
|
||||
|
||||
# If you want to run 32 bit applications on your x86_64 system,
|
||||
# enable the multilib repositories as required here.
|
||||
|
||||
#[multilib-testing]
|
||||
#Include = /etc/pacman.d/mirrorlist
|
||||
|
||||
#[multilib]
|
||||
#Include = /etc/pacman.d/mirrorlist
|
||||
|
||||
# An example of a custom package repository. See the pacman manpage for
|
||||
# tips on creating your own repositories.
|
||||
#[custom]
|
||||
#SigLevel = Optional TrustAll
|
||||
#Server = file:///home/custompkgs
|
||||
|
||||
[discimagechef]
|
||||
Server = file:///home/claunia/Development/DiscImageChef/archdic/repo
|
||||
SigLevel = Optional TrustAll
|
||||
11
archdic-x86_64/syslinux/archiso.cfg
Normal file
11
archdic-x86_64/syslinux/archiso.cfg
Normal file
@@ -0,0 +1,11 @@
|
||||
DEFAULT select
|
||||
|
||||
LABEL select
|
||||
COM32 boot/syslinux/whichsys.c32
|
||||
APPEND -pxe- pxe -sys- sys -iso- sys
|
||||
|
||||
LABEL pxe
|
||||
CONFIG boot/syslinux/archiso_pxe.cfg
|
||||
|
||||
LABEL sys
|
||||
CONFIG boot/syslinux/archiso_sys.cfg
|
||||
25
archdic-x86_64/syslinux/archiso_head.cfg
Normal file
25
archdic-x86_64/syslinux/archiso_head.cfg
Normal file
@@ -0,0 +1,25 @@
|
||||
SERIAL 0 38400
|
||||
UI boot/syslinux/vesamenu.c32
|
||||
MENU TITLE DiscImageChef's Arch Linux
|
||||
MENU BACKGROUND boot/syslinux/splash.png
|
||||
|
||||
MENU WIDTH 78
|
||||
MENU MARGIN 4
|
||||
MENU ROWS 7
|
||||
MENU VSHIFT 10
|
||||
MENU TABMSGROW 14
|
||||
MENU CMDLINEROW 14
|
||||
MENU HELPMSGROW 16
|
||||
MENU HELPMSGENDROW 29
|
||||
|
||||
# Refer to http://syslinux.zytor.com/wiki/index.php/Doc/menu
|
||||
|
||||
MENU COLOR border 30;44 #40ffffff #a0000000 std
|
||||
MENU COLOR title 1;36;44 #9033ccff #a0000000 std
|
||||
MENU COLOR sel 7;37;40 #e0ffffff #20ffffff all
|
||||
MENU COLOR unsel 37;44 #50ffffff #a0000000 std
|
||||
MENU COLOR help 37;40 #c0ffffff #a0000000 std
|
||||
MENU COLOR timeout_msg 37;40 #80ffffff #00000000 std
|
||||
MENU COLOR timeout 1;37;40 #c0ffffff #00000000 std
|
||||
MENU COLOR msg07 37;40 #90ffffff #a0000000 std
|
||||
MENU COLOR tabmsg 31;40 #30ffffff #00000000 std
|
||||
36
archdic-x86_64/syslinux/archiso_pxe.cfg
Normal file
36
archdic-x86_64/syslinux/archiso_pxe.cfg
Normal file
@@ -0,0 +1,36 @@
|
||||
INCLUDE boot/syslinux/archiso_head.cfg
|
||||
|
||||
LABEL arch64_nbd
|
||||
TEXT HELP
|
||||
Boot the DiscImageChef's Arch Linux (x86_64) live medium (Using NBD).
|
||||
It allows you to install Arch Linux or perform system maintenance.
|
||||
ENDTEXT
|
||||
MENU LABEL Boot Arch Linux (x86_64) (NBD)
|
||||
LINUX boot/x86_64/vmlinuz
|
||||
INITRD boot/intel_ucode.img,boot/amd_ucode.img,boot/x86_64/archiso.img
|
||||
APPEND archisobasedir=%INSTALL_DIR% archisolabel=%ARCHISO_LABEL% archiso_nbd_srv=${pxeserver}
|
||||
SYSAPPEND 3
|
||||
|
||||
LABEL arch64_nfs
|
||||
TEXT HELP
|
||||
Boot the DiscImageChef's Arch Linux (x86_64) live medium (Using NFS).
|
||||
It allows you to install Arch Linux or perform system maintenance.
|
||||
ENDTEXT
|
||||
MENU LABEL Boot Arch Linux (x86_64) (NFS)
|
||||
LINUX boot/x86_64/vmlinuz
|
||||
INITRD boot/intel_ucode.img,boot/amd_ucode.img,boot/x86_64/archiso.img
|
||||
APPEND archisobasedir=%INSTALL_DIR% archiso_nfs_srv=${pxeserver}:/run/archiso/bootmnt
|
||||
SYSAPPEND 3
|
||||
|
||||
LABEL arch64_http
|
||||
TEXT HELP
|
||||
Boot the DiscImageChef's Arch Linux (x86_64) live medium (Using HTTP).
|
||||
It allows you to install Arch Linux or perform system maintenance.
|
||||
ENDTEXT
|
||||
MENU LABEL Boot Arch Linux (x86_64) (HTTP)
|
||||
LINUX boot/x86_64/vmlinuz
|
||||
INITRD boot/intel_ucode.img,boot/amd_ucode.img,boot/x86_64/archiso.img
|
||||
APPEND archisobasedir=%INSTALL_DIR% archiso_http_srv=http://${pxeserver}/
|
||||
SYSAPPEND 3
|
||||
|
||||
INCLUDE boot/syslinux/archiso_tail.cfg
|
||||
13
archdic-x86_64/syslinux/archiso_sys.cfg
Normal file
13
archdic-x86_64/syslinux/archiso_sys.cfg
Normal file
@@ -0,0 +1,13 @@
|
||||
INCLUDE boot/syslinux/archiso_head.cfg
|
||||
|
||||
LABEL arch64
|
||||
TEXT HELP
|
||||
Boot the DiscImageChef's Arch Linux (x86_64) live medium.
|
||||
It allows you to install Arch Linux or perform system maintenance.
|
||||
ENDTEXT
|
||||
MENU LABEL Boot Arch Linux (x86_64)
|
||||
LINUX boot/x86_64/vmlinuz
|
||||
INITRD boot/intel_ucode.img,boot/amd_ucode.img,boot/x86_64/archiso.img
|
||||
APPEND archisobasedir=%INSTALL_DIR% archisolabel=%ARCHISO_LABEL%
|
||||
|
||||
INCLUDE boot/syslinux/archiso_tail.cfg
|
||||
27
archdic-x86_64/syslinux/archiso_tail.cfg
Normal file
27
archdic-x86_64/syslinux/archiso_tail.cfg
Normal file
@@ -0,0 +1,27 @@
|
||||
LABEL existing
|
||||
TEXT HELP
|
||||
Boot an existing operating system.
|
||||
Press TAB to edit the disk and partition number to boot.
|
||||
ENDTEXT
|
||||
MENU LABEL Boot existing OS
|
||||
COM32 boot/syslinux/chain.c32
|
||||
APPEND hd0 0
|
||||
|
||||
# http://www.memtest.org/
|
||||
LABEL memtest
|
||||
MENU LABEL Run Memtest86+ (RAM test)
|
||||
LINUX boot/memtest
|
||||
|
||||
# http://hdt-project.org/
|
||||
LABEL hdt
|
||||
MENU LABEL Hardware Information (HDT)
|
||||
COM32 boot/syslinux/hdt.c32
|
||||
APPEND modules_alias=boot/syslinux/hdt/modalias.gz pciids=boot/syslinux/hdt/pciids.gz
|
||||
|
||||
LABEL reboot
|
||||
MENU LABEL Reboot
|
||||
COM32 boot/syslinux/reboot.c32
|
||||
|
||||
LABEL poweroff
|
||||
MENU LABEL Power Off
|
||||
COM32 boot/syslinux/poweroff.c32
|
||||
BIN
archdic-x86_64/syslinux/splash.png
Normal file
BIN
archdic-x86_64/syslinux/splash.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 44 KiB |
5
archdic-x86_64/syslinux/syslinux.cfg
Normal file
5
archdic-x86_64/syslinux/syslinux.cfg
Normal file
@@ -0,0 +1,5 @@
|
||||
DEFAULT loadconfig
|
||||
|
||||
LABEL loadconfig
|
||||
CONFIG archiso.cfg
|
||||
APPEND ../../
|
||||
BIN
repo/discimagechef-4.5.1.1692-1-any.pkg.tar.xz
Normal file
BIN
repo/discimagechef-4.5.1.1692-1-any.pkg.tar.xz
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
1
repo/discimagechef.db
Symbolic link
1
repo/discimagechef.db
Symbolic link
@@ -0,0 +1 @@
|
||||
discimagechef.db.tar.xz
|
||||
BIN
repo/discimagechef.db.tar.xz
Normal file
BIN
repo/discimagechef.db.tar.xz
Normal file
Binary file not shown.
1
repo/discimagechef.files
Symbolic link
1
repo/discimagechef.files
Symbolic link
@@ -0,0 +1 @@
|
||||
discimagechef.files.tar.xz
|
||||
BIN
repo/discimagechef.files.tar.xz
Normal file
BIN
repo/discimagechef.files.tar.xz
Normal file
Binary file not shown.
Reference in New Issue
Block a user