archboot/install.conf
2008-10-20 22:39:25 +02:00

72 lines
2.6 KiB
Bash

# vim:set ft=sh:
# Created by Tobias Powalowski <tpowa@archlinux.org>
# For more information on how using mkinitcpio please refer to the main config file
# or check the wiki.
MODULES=""
BINARIES=""
FILES=""
# SETUP
# You can choose between 2 types of install media:
# arch_core_install --> creates core install media
# arch_ftp_install --> creates ftp install media
#
# default is set to ftp install media
#
# Please change the other hooks only if you know what you are doing.
HOOKS="arch_ftp_install arch_installer arch_tz arch_keymap arch_acpi arch_bootmessage arch_motd arch_memtest arch_pam arch_shadow arch_base arch_intel_wireless arch_hwdetect arch_udev ide pata scsi sata arch_cdrom arch_net arch_isdn arch_pcmcia arch_rtc arch_sound usb usbinput arch_fw arch_floppy arch_raid arch_dmraid arch_lvm2 arch_encrypt arch_filesystems arch_remote arch_cpufreq arch_fb arch_links arch_naim arch_pacman arch_kexec arch_ppp arch_pppoe arch_lilo arch_grub arch_iptables arch_capi4k arch_pciutils arch_usbutils arch_openvpn arch_vpnc arch_pptpclient arch_licenses arch_wireless arch_linux_atm arch_tiacx_wireless arch_netcfg arch_addons"
#
# adding pxelinux hook if mkpxelinux is used.
if [ "${RUNPROGRAM}" = "mkpxelinux" ]; then
HOOKS="$HOOKS arch_pxelinux"
fi
#
### NETWORK SETUP
# the default install media creating process, uses latest files from svn!
#
# SVN SERVER
SVNSETUP="svn://archlinux.org/home/svn-packages/"
###### LOCAL SETUP
# only needed if you want to build custom install media
# disabled by default you can ignore all those parameters below
# if you don't set LOCALSETUP="yes"
#
# Set this switch to "yes" if you want a custom install media
LOCALSETUP="no"
#### NOTES:
# To get the svn tree use these commands:
# - change to your dir you want to hold the files and execute the script below
# Example Script:
# ---------------
# #!/bin/sh
# ### general setup stuff
# SVNSETUP="svn://archlinux.org/home/svn-packages/"
# # generate base
# BASE=""
# for i in $(pacman -Sg base | sed -e "s/base//g"); do
# BASE="$BASE $(echo $i)"
# done
# # generate base-devel
# DEVEL=""
# for i in $(pacman -Sg base-devel | sed -e "s/base-devel//g"); do
# DEVEL="$DEVEL $(echo $i)"
# done
# SUPPORT="$(echo -n $(pacman -Ss | grep -e ^core | grep -v '(' | sed -e 's/\ .*/ /g' -e 's#core/##g'))"
# for i in base devel support; do
# mkdir $i
# svn co -N ${SVNSETUP} $i
# done
# cd base; svn up $BASE; cd ..
# cd devel; svn up $DEVEL; cd ..
# cd support; svn up $SUPPORT; cd ..
# ---------------
# Now you can start to modify this tree to your needs.
### GENERAL REMASTER PARAMETERS
# enter here your custom/modified svn tree
SVNTREE=""
# name of the release
ARCHVERSION="Nepal"