git-svn-id: http://phraktured.net/archiso@12 00a9fe69-e71b-0410-bb23-df0e5024db41
This commit is contained in:
parent
8660ae6b5a
commit
59ddc5be61
@ -6,6 +6,6 @@ cmdline_param ()
|
||||
$1=*) echo "${param##*=}"; break ;;
|
||||
*) continue ;;
|
||||
esac
|
||||
echo "${2}"
|
||||
done < read /proc/cmdline
|
||||
echo "${2}"
|
||||
}
|
||||
|
@ -1,6 +1,7 @@
|
||||
#!/bin/sh
|
||||
|
||||
. /etc/archiso/functions
|
||||
|
||||
shell="$(cmdline_param shell)"
|
||||
[ -n "${shell}" ] && shell="/bin/bash"
|
||||
[ ! -e "${shell}" ] && shell="/bin/sh"
|
||||
|
@ -7,3 +7,5 @@ none /dev/shm tmpfs defaults 0 0
|
||||
tmpfs /tmp tmpfs defaults 0 0
|
||||
|
||||
/dev/cdrom /bootcd iso9660 ro,user,noauto 0 0
|
||||
|
||||
### Auto generated entries get added here:
|
||||
|
@ -20,3 +20,4 @@ ROUTES=()
|
||||
|
||||
#TODO add more auto-daemons here, especially the live-cd specific stuff
|
||||
DAEMONS=(syslog-ng network crond)
|
||||
#TODO: auto-network find-disks find-user-home
|
||||
|
@ -1,9 +1,20 @@
|
||||
# vim: set ft=sh:
|
||||
. /etc/rc.conf
|
||||
. /etc/rc.d/functions
|
||||
. /etc/archiso/functions # above goes in this file...
|
||||
. /etc/archiso/functions
|
||||
|
||||
do_mounts ()
|
||||
|
||||
scan_network ()
|
||||
{
|
||||
netparam () { echo ${2} | sed "s|.*${1}\([^ ]*\).*|\1|gi"; }
|
||||
#
|
||||
netdevs=$(cat /proc/net/dev | grep ':' | cut -d':' -f1)
|
||||
for net in ${netdev}; do
|
||||
stats=$(ifconfig ${net} | tr -s "\n" " ")
|
||||
|
||||
}
|
||||
|
||||
scan_mount_pts ()
|
||||
{
|
||||
#iterate over all block devices
|
||||
stat_busy "Scanning local block devices"
|
||||
@ -27,12 +38,7 @@ do_mounts ()
|
||||
stat_done
|
||||
}
|
||||
|
||||
do_locale ()
|
||||
{
|
||||
#copy from rc.sysinit - use cmdline_param locale (or lang ?)
|
||||
}
|
||||
|
||||
do_swap ()
|
||||
scan_swap ()
|
||||
{
|
||||
#Archie finds a pagefile.sys for windows/dos machines... may add later
|
||||
stat_busy "Finding existing swap partitions"
|
||||
|
@ -2,6 +2,8 @@
|
||||
# we need a proxy script here to convert some /proc/cmdline
|
||||
# parameters to rc.conf settings.
|
||||
|
||||
. /etc/archlive/functions
|
||||
|
||||
LOCALE_DEFAULT="en_US.UTF-8"
|
||||
TIMEZONE_DEFAULT="America/Chicago"
|
||||
KEYMAP_DEFAULT="us"
|
||||
|
Loading…
Reference in New Issue
Block a user