rootskel/0000755000000000000000000000000012276466026007621 5ustar rootskel/src/0000755000000000000000000000000011620774740010405 5ustar rootskel/src/init0000755000000000000000000000071011567470011011266 0ustar #!/bin/sh -e # used for initramfs export PATH . /lib/debian-installer/init-debug debugshell "just booted" mount /run mkdir -p /run/lock mount /proc mount /sys /lib/debian-installer/start-udev init='/bin/busybox init' for i in $(cat /proc/cmdline); do case $i in init=/init|init=init) # Avoid endless loop : ;; init=*) init=${i#init=} ;; noshell) sed -i '/^tty[23]/s/^/#/' /etc/inittab ;; esac done debugshell "before init" exec $init rootskel/src/etc/0000755000000000000000000000000012276465774011174 5ustar rootskel/src/etc/fstab-kfreebsd0000644000000000000000000000023111516122665013756 0ustar none /dev devfs defaults 0 0 none /dev/fd fdescfs defaults 0 0 none /proc linprocfs defaults 0 0 none /sys linsysfs defaults 0 0 rootskel/src/etc/nsswitch.conf0000644000000000000000000000005111516122665013662 0ustar passwd: files group: files shadow: files rootskel/src/etc/modules.conf0000644000000000000000000000010111516122665013464 0ustar alias net-pf-1 unix alias nls_iso8859-1 off alias nls_cp437 off rootskel/src/etc/passwd0000644000000000000000000000011311516122665012374 0ustar root:*:0:0:root:/:/bin/sh installer:x:0:0:installer:/:/bin/network-console rootskel/src/etc/Makefile0000644000000000000000000000056612276465774012643 0ustar DEB_HOST_ARCH_OS ?= $(shell dpkg-architecture -qDEB_HOST_ARCH_OS 2>/dev/null) dir = etc # backward compatibility subdirs_empty = rcS.d files = \ fstab:fstab-$(DEB_HOST_ARCH_OS) \ group \ inittab:inittab-$(DEB_HOST_ARCH_OS) \ modules.conf \ nsswitch.conf \ passwd \ profile install-local:: $(outdir) ln -fs /proc/mounts $(outdir)/mtab include ../../Makefile.inc rootskel/src/etc/profile0000644000000000000000000000043212146241244012532 0ustar # Set UTF-8 mode if needed if [ -f /var/lib/UTF-8 ]; then echo -ne "\033%G" kbd-mode -u >/dev/null 2>&1 || true fi # Set up the console if console-setup-udeb is installed if type setupcon >/dev/null 2>&1 && [ -f /etc/default/keyboard ]; then setupcon >/dev/null 2>&1 || true fi rootskel/src/etc/inittab-linux0000644000000000000000000000075411516122665013675 0ustar # /etc/inittab # busybox init configuration for debian-installer # main rc script ::sysinit:/sbin/reopen-console /sbin/debian-installer-startup # main setup program ::respawn:/sbin/reopen-console /sbin/debian-installer # convenience shells tty2::askfirst:-/bin/sh tty3::askfirst:-/bin/sh # logging tty4::respawn:/usr/bin/tail -f /var/log/syslog # Stuff to do before rebooting ::ctrlaltdel:/sbin/shutdown > /dev/null 2>&1 # re-exec init on receipt of SIGHUP/SIGUSR1 ::restart:/sbin/init rootskel/src/etc/fstab-hurd0000644000000000000000000000000011516122665013125 0ustar rootskel/src/etc/inittab-hurd0000644000000000000000000000075411516122665013500 0ustar # /etc/inittab # busybox init configuration for debian-installer # main rc script ::sysinit:/sbin/reopen-console /sbin/debian-installer-startup # main setup program ::respawn:/sbin/reopen-console /sbin/debian-installer # convenience shells tty2::askfirst:-/bin/sh tty3::askfirst:-/bin/sh # logging tty4::respawn:/usr/bin/tail -f /var/log/syslog # Stuff to do before rebooting ::ctrlaltdel:/sbin/shutdown > /dev/null 2>&1 # re-exec init on receipt of SIGHUP/SIGUSR1 ::restart:/sbin/init rootskel/src/etc/inittab-kfreebsd0000644000000000000000000000075711516122665014326 0ustar # /etc/inittab # busybox init configuration for debian-installer # main rc script ::sysinit:/sbin/reopen-console /sbin/debian-installer-startup # main setup program ::respawn:/sbin/reopen-console /sbin/debian-installer # convenience shells ttyv1::askfirst:-/bin/sh ttyv2::askfirst:-/bin/sh # logging ttyv3::respawn:/usr/bin/tail -f /var/log/syslog # Stuff to do before rebooting ::ctrlaltdel:/sbin/shutdown > /dev/null 2>&1 # re-exec init on receipt of SIGHUP/SIGUSR1 ::restart:/sbin/init rootskel/src/etc/group0000644000000000000000000000002511567470011012226 0ustar root:x:0: audio:x:1: rootskel/src/etc/fstab-linux0000644000000000000000000000023511567470011013331 0ustar none /dev/pts devpts defaults 0 0 none /run tmpfs nosuid,size=10%,mode=755 0 0 none /proc proc defaults 0 0 none /sys sysfs noauto 0 0 rootskel/src/Makefile0000644000000000000000000000046111567470011012040 0ustar DEB_HOST_ARCH_OS ?= $(shell dpkg-architecture -qDEB_HOST_ARCH_OS 2>/dev/null) dir = subdirs = \ etc \ lib \ sbin \ var subdirs_empty = \ dev \ media \ initrd \ mnt \ proc \ sys ifeq ($(DEB_HOST_ARCH_OS),linux) files_exec = \ init subdirs_empty += \ run endif include ../Makefile.inc rootskel/src/sbin/0000755000000000000000000000000011774542724011345 5ustar rootskel/src/sbin/init-linux0000755000000000000000000000127111516122665013364 0ustar #!/bin/sh -e # Set up filesystem as root and pivot into it. export PATH . /lib/debian-installer/init-debug debugshell "just booted" echo "Setting up filesystem, please wait ..." mount /proc umount initrd 2>/dev/null || true if mount -t tmpfs -o size=100M tmpfs /mnt ; then : elif mount -t shm shm mnt; then : else mount -t ramfs ramfs /mnt fi umount /proc cp -a $(ls -1 / | grep -v '\(lost+found\|mnt\|proc\)') /mnt cd /mnt pivot_root . initrd mkdir -p /proc mount /proc mkdir -p /sys mount /sys /lib/debian-installer/start-udev # Close all open files on the initrd, and run busybox init. debugshell "before init" exec /usr/sbin/chroot . /bin/busybox init < /dev/console > /dev/console 2>&1 rootskel/src/sbin/init-kfreebsd0000755000000000000000000000246611774542723014030 0ustar #!/bin/sh # Set up filesystem as root, parse the kernel arguments export PATH=/sbin:/bin:/usr/sbin:/usr/bin exec < /dev/console > /dev/console 2> /dev/console trap "echo \"Something wicked happened. Press enter for rescue shell.\" ; read NULL ; exec sh" 0 set -e . /lib/debian-installer/init-debug debugshell "just booted" echo "Setting default module loading path" sysctl "kern.module_path=/lib/modules/`uname -r`;/boot/kernel" > /dev/null echo "Setting up filesystem, please wait ..." mount -o remount,rw -t ufs /dev/md0 / mount /dev mount /dev/fd mount /proc mount /sys ln -s /var/run/log /dev/log # Get all kernel parameters that can be exported as environment variables envvars="$(kenv | egrep '^[-_/[:alnum:]]+=".*"$' || true)" # Parse kernel parameters init='/bin/busybox init' for i in $envvars ; do case "$i" in init="/sbin/init"|init="init") # Avoid endless loop : ;; init=*) init=${i#init=} ;; noshell=*) sed -i '/^ttyv[12]/s/^/#/' /etc/inittab ;; esac done # Start devd to process all pending events before init (see #493865) devd # Close all open files on the initrd, export kernel parameters and run # busybox init debugshell "before init" eval exec env - $envvars $init < /dev/console > /dev/console 2>&1 rootskel/src/sbin/reopen-console-linux0000755000000000000000000000361611557464705015367 0ustar #!/bin/sh # In order to give proper access to the tty, we need to locate the device # corresponding to the console we are actually using. NL=" " console= if ! [ -f /var/run/console-device ]; then # If the kernel emitted a "handover" message, then it's the one case $(uname -r) in 2.6.2*|2.6.3[01]*) console="$(dmesg -s 262143 | sed -n -r -e 's/(.*\])? *console handover: boot \[.*\] -> real \[(.*)\]$/\2/p')" ;; 2.6.3[234567]*) console="$(dmesg -s 262143 | sed -n -r -e 's/(.*\])? *console \[(.*)\] enabled, bootconsole disabled$/\2/p')" ;; *) # >= 2.6.38 console_major_minor="$(get-real-console-linux)" console_raw="$(readlink "/sys/dev/char/${console_major_minor}")" console="${console_raw##*/}" ;; esac # Except if it is the wrong type... if [ "$console" ] && [ "$(console-type)" = serial ] && \ expr "$console" : "tty[0-9]" >/dev/null; then console= fi consoles= if [ -z "$console" ]; then # Retrieve all enabled consoles from boot log; ignore those # for which no device file exists for cons in $(dmesg -s 262143 | sed -n -r -e 's/(.*\])? *console \[(.*)\] enabled/\2/p') do if [ -e "/dev/$cons" ]; then consoles="${consoles:+$consoles$NL}$cons" fi done # Only one console? Then we are good. if [ $(echo "$consoles" | wc -l) -eq 1 ]; then console="$consoles" fi fi if [ -z "$console" ]; then # Locate the last enabled console present on the command line for arg in $(cat /proc/cmdline); do case $arg in console=*) arg=${arg#console=} cons=${arg%%,*} if echo "$consoles" | grep -q "^$cons$"; then console=$cons fi ;; esac done fi if [ -z "$console" ]; then # Still nothing? Default to /dev/console. console=console fi echo /dev/$console > /var/run/console-device fi # Some other session may have it as ctty. Steal it from them exec /sbin/steal-ctty $(cat /var/run/console-device) "$@" rootskel/src/sbin/reopen-console-hurd0000755000000000000000000000053111516122665015152 0ustar #!/bin/sh # In order to give proper access to the tty, we need to locate the device # corresponding to the console we are actually using. console= if ! [ -f /var/run/console-device ]; then tty > /var/run/console-device fi # Some other session may have it as ctty. Steal it from them exec /sbin/steal-ctty $(cat /var/run/console-device) "$@" rootskel/src/sbin/steal-ctty.c0000644000000000000000000000127411516122665013576 0ustar /* * Licensed under GPLv2 * * Adapted for Debian Installer by Jérémy Bobbio from * cttyhack from busybox 1.11, which is * * Copyright (c) 2007 Denys Vlasenko */ #include #include #include #include #include #include int main(int argc, char ** argv) { int fd; if (-1 == (fd = open(argv[1], O_RDWR))) { perror("steal-ctty"); return 1; } dup2(fd, 0); dup2(fd, 1); dup2(fd, 2); while (fd > 2) { close(fd--); } ioctl(0, TIOCSCTTY, (char *) 1); execvp(argv[2], &argv[2]); /* never reached. */ return 0; } rootskel/src/sbin/shutdown0000755000000000000000000000014711516122665013140 0ustar #!/bin/sh # # Stuff to do when rebooting /bin/umount -a -r /sbin/swapoff -a sync; sync; sync reboot rootskel/src/sbin/debian-installer-startup0000755000000000000000000000033711516122665016203 0ustar #! /bin/sh # This script is called at system startup for script in /lib/debian-installer-startup.d/S[0-9][0-9]* /etc/rcS.d/S[0-9][0-9]*; do if [ -x $script ]; then $script elif [ -e $script ]; then . $script fi done rootskel/src/sbin/Makefile0000644000000000000000000000144511557464705013012 0ustar DEB_HOST_ARCH_OS ?= $(shell dpkg-architecture -qDEB_HOST_ARCH_OS 2>/dev/null) dir = sbin files_exec = \ debian-installer \ debian-installer-startup \ shutdown \ init:init-$(DEB_HOST_ARCH_OS) \ reopen-console:reopen-console-$(DEB_HOST_ARCH_OS) \ steal-ctty ifeq ($(DEB_HOST_ARCH_OS),linux) files_exec += \ console-type \ get-real-console-linux endif console-type: console-type.c gcc -Os -Wall console-type.c -o console-type get-real-console-linux: gcc -Os -Wall get-real-console-linux.c -o get-real-console-linux steal-ctty: steal-ctty.c gcc -Os -Wall steal-ctty.c -o steal-ctty ifeq ($(DEB_HOST_ARCH_OS),linux) build: console-type get-real-console-linux steal-ctty else build: steal-ctty endif clean: rm -f console-type get-real-console-linux steal-ctty include ../../Makefile.inc rootskel/src/sbin/console-type.c0000644000000000000000000000147611516122665014132 0ustar /* * Licensed under GPLv2 * * Adapted for Debian Installer by Frans Pop from * cttyhack from busybox 1.11, which is * * Copyright (c) 2007 Denys Vlasenko */ #include #include enum { VT_GETSTATE = 0x5603 }; /* get global vt state info */ int main(int argc, char ** argv) { /* * Use an (oversized) dummy buffer as we're not interested in * returned values. * TIOCGSERIAL normally uses serial_struct from * VT_GETSTATE normally uses vt_stat from */ char buffer[1024]; /* filled by ioctl */ if (ioctl(0, TIOCGSERIAL, buffer) == 0) { /* this is a serial console */ printf("serial\n"); } else if (ioctl(0, VT_GETSTATE, buffer) == 0) { /* this is linux virtual tty */ printf("virtual\n"); } return 0; } rootskel/src/sbin/get-real-console-linux.c0000644000000000000000000000121011557464705016001 0ustar /* * Licensed under GPLv2 * * Print out major:minor number of the real console device, * using the TIOCGDEV ioctl (only works on kernels >= 2.6.38). * * Copyright (c) 2011 Jurij Smakov */ #include #include #include #include #include int main() { int fd = 0; unsigned int dev; fd = open("/dev/console", O_WRONLY, 0); if (fd < 0) { perror("open"); return(1); } if (ioctl(fd, TIOCGDEV, &dev) < 0) { perror("ioctl"); return(2); } printf("%d:%d\n", major(dev), minor(dev)); return(0); } rootskel/src/sbin/reopen-console-kfreebsd0000755000000000000000000000217411764423673016012 0ustar #!/bin/sh # In order to give proper access to the tty, we need to locate the device # corresponding to the console we are actually using. console= if ! [ -f /var/run/console-device ]; then # Get the configure consoles using sysctl # 's#^.*: ##' : remove the prompt # 's#/.*$##' : remove unconfigured devices # 's#dcons,##g' : remove dcons # 's#,# #g' : separate consoles with spaces instead of commas consoles=$(sysctl "kern.console" | sed -e 's#^.*: ##' \ -e 's#/.*$##' \ -e 's#dcons,##g' \ -e 's#,# #g') for c in $consoles ; do case $c in # Serial devices ttyu*|cuau*) console="$c" break ;; # Virtual consoles ttyv*) console=$c break ;; consolectl*) console="ttyv0" break ;; # Unknown consoles, ignore them *) ;; esac done if [ -z "$console" ]; then # Still nothing? Default to /dev/console. console="console" fi echo /dev/$console > /var/run/console-device fi # Some other session may have it as ctty. Steal it from them exec /sbin/steal-ctty $(cat /var/run/console-device) "$@" rootskel/src/sbin/debian-installer0000755000000000000000000000030711516122665014500 0ustar #! /bin/sh # This is where the installer actually interacts with the user set -e export MENU=${MENU:-${1:-/usr/bin/main-menu}} for script in /lib/debian-installer.d/S[0-9][0-9]*; do . $script done rootskel/src/lib/0000755000000000000000000000000011516122665011150 5ustar rootskel/src/lib/debian-installer.d/0000755000000000000000000000000012043457100014576 5ustar rootskel/src/lib/debian-installer.d/S60frontend0000644000000000000000000000246212043457100016635 0ustar get_mem () { local ram=$(grep ^MemTotal: /proc/meminfo | { read x y z; echo $y; }) || true # in kilobytes if [ -z "$ram" ]; then echo "Cannot determine system memory" >&2 ram=0 else ram=$(expr "$ram" / 1024) # convert to megabytes fi echo $ram } check_gtk () { if [ -n "$LIVE_INSTALLER_MODE" ]; then return 0 fi OS="$(udpkg --print-os)" if [ "$OS" = linux -a -z "$TERM_FRAMEBUFFER" ] ; then echo "Framebuffer not available; disabling graphical frontend" >&2 return 1 fi if [ "$OS" = hurd -a "$TERM" != hurd ] ; then echo "Hurd console not started; disabling graphical frontend" >&2 return 1 fi if [ "$GTK_NOVESA" ]; then echo "No VESA framebuffer available; disabling graphical frontend" >&2 return 1 fi case "$(archdetect)" in # Tested with Uyghur powerpc/*|amd64/*) local MEMLIMIT=164 ;; # is 170 MiB *) local MEMLIMIT=134 ;; # is 140 MiB esac if [ $(get_mem) -lt $MEMLIMIT ] ; then echo "Insufficient memory for graphical frontend; disabling" >&2 return 1 fi return 0 } if [ -z "$DEBIAN_FRONTEND" ] ; then for frontend in gtk newt slang text ; do if [ -e "/usr/lib/cdebconf/frontend/$frontend.so" ]; then if [ "$frontend" = gtk ] ; then check_gtk || continue fi DEBIAN_FRONTEND=$frontend break fi done fi export DEBIAN_FRONTEND rootskel/src/lib/debian-installer.d/S72menu-exit0000644000000000000000000000015011516122665016735 0ustar case "$EXIT" in 0) ;; 12) exec /lib/debian-installer/exit ;; *) # error message ;; esac rootskel/src/lib/debian-installer.d/S20speakup0000644000000000000000000000020612043457100016454 0ustar if lsmod | grep -q "speakup_"; then DEBIAN_FRONTEND=text export DEBIAN_FRONTEND DEBCONF_TEXT_HORIZ=1 export DEBCONF_TEXT_HORIZ fi rootskel/src/lib/debian-installer.d/S40term-hurd0000644000000000000000000000035611647040464016735 0ustar export LANG=C if [ "$TERM" = hurd ] || [ "$TERM" = xterm ] || [ "$TERM" = linux ] ; then # Enable UTF-8 locale if it is available if [ -d /usr/lib/locale/C.UTF-8 ]; then TERM_UTF8=yes : >/var/lib/UTF-8 export LANG=C.UTF-8 fi fi rootskel/src/lib/debian-installer.d/Makefile0000644000000000000000000000221611647040464016251 0ustar dir = lib/debian-installer.d DEB_HOST_ARCH_CPU := $(shell dpkg-architecture -qDEB_HOST_ARCH_CPU 2>/dev/null) DEB_HOST_ARCH_OS := $(shell dpkg-architecture -qDEB_HOST_ARCH_OS 2>/dev/null) # Take account of old dpkg-architecture output. ifeq ($(DEB_HOST_ARCH_CPU),) DEB_HOST_ARCH_CPU := $(shell dpkg-architecture -qDEB_HOST_GNU_CPU) ifeq ($(DEB_HOST_ARCH_CPU),x86_64) DEB_HOST_ARCH_CPU := amd64 endif endif ifeq ($(DEB_HOST_ARCH_OS),) DEB_HOST_ARCH_OS := $(shell dpkg-architecture -qDEB_HOST_GNU_SYSTEM) endif files += \ S30term \ S60frontend \ S65theme \ S70menu \ S72menu-exit ifeq ($(DEB_HOST_ARCH_CPU),sparc) files += \ S34framebuffer-linux-sparc endif ifeq ($(DEB_HOST_ARCH_OS),linux) FRAMEBUFFER = 1 ifeq ($(DEB_HOST_ARCH_CPU),s390) FRAMEBUFFER = 0 endif ifeq ($(DEB_HOST_ARCH_CPU),s390x) FRAMEBUFFER = 0 endif ifneq ($(FRAMEBUFFER),0) files += \ S35framebuffer-linux endif files += \ S20speakup \ S40term-linux endif ifeq ($(DEB_HOST_ARCH_OS),kfreebsd) files += \ S40term-kfreebsd endif ifeq ($(DEB_HOST_ARCH_OS),hurd) files += \ S40term-hurd endif include ../../../Makefile.inc rootskel/src/lib/debian-installer.d/S40term-kfreebsd0000644000000000000000000000055411764423673017567 0ustar export LANG=C if [ "$TERM" = cons25 ] || [ "$TERM" = xterm ] || [ "$TERM" = linux ] ; then # Enable UTF-8 locale if it is available if [ -d /usr/lib/locale/C.UTF-8 ]; then TERM_UTF8=yes : >/var/lib/UTF-8 export LANG=C.UTF-8 fi fi case $(tty) in /dev/ttyv[0-f]*|/dev/ttyu[0-f]*|/dev/cuau[0-f]*) sysctl "kern.consmute=1" > /dev/null ;; *) ;; esac rootskel/src/lib/debian-installer.d/S40term-linux0000644000000000000000000000056611516122665017134 0ustar export LANG=C if [ "$TERM" = linux ] ; then if [ "$TERM_TYPE" = virtual ]; then echo -ne "\033[9;0]" # Turn off console blanking. fi # Enable UTF-8 locale if it is available if [ -d /usr/lib/locale/C.UTF-8 ]; then TERM_UTF8=yes : >/var/lib/UTF-8 export LANG=C.UTF-8 if [ "$TERM_TYPE" = virtual ]; then echo -ne "\033%G" # Enable UTF-8 console fi fi fi rootskel/src/lib/debian-installer.d/S30term0000644000000000000000000000011711540671447015772 0ustar . /lib/debian-installer/detect-console setvtrgb /etc/vtrgb 2>/dev/null || true rootskel/src/lib/debian-installer.d/S70menu0000644000000000000000000000053611516122665015774 0ustar bterm=/usr/bin/bterm font=/lib/unifont.bgf if [ -x "$bterm" ] && [ -e "$font" ] && [ -n "$TERM_UTF8" ] && [ -n "$TERM_FRAMEBUFFER" ] && [ "$DEBIAN_FRONTEND" != gtk ]; then TERM=bterm export TERM set +e $bterm -f $font -l $LANG /lib/debian-installer/menu EXIT=$? set -e else rm -f $font set +e /lib/debian-installer/menu EXIT=$? set -e fi rootskel/src/lib/debian-installer.d/S35framebuffer-linux0000644000000000000000000000023411516122665020445 0ustar if [ -n "$TERM_FRAMEBUFFER_TRY" ] && [ -e /dev/fb0 ] && \ [ "$(debconf-get debian-installer/framebuffer)" = true ]; then export TERM_FRAMEBUFFER=yes fi rootskel/src/lib/debian-installer.d/S34framebuffer-linux-sparc0000644000000000000000000000063111516122665021553 0ustar # Framebuffer is disabled by default on sparc; enable for known good cards if ! grep -q "\(framebuffer\|fb\)=" /proc/cmdline; then if [ -f /proc/fb ]; then # Hack because direct grep on /proc/fb fails (#388815) _FB="$(dd if=/proc/fb bs=16 2>/dev/null)" if [ $(echo "$_FB" | wc -l) -eq 1 ] && \ echo "$_FB" | grep -q "ATY Mach64"; then debconf-set debian-installer/framebuffer true fi fi fi rootskel/src/lib/debian-installer.d/S65theme0000644000000000000000000000032511516122665016132 0ustar theme="$(debconf-get debian-installer/theme)" if [ "$theme" ]; then case "$DEBIAN_FRONTEND" in newt|text) export FRONTEND_BACKGROUND="$theme" ;; gtk) gtk-set-theme "$theme" || true ;; esac fi rootskel/src/lib/Makefile0000644000000000000000000000017111516122665012607 0ustar dir = lib subdirs = \ debian-installer \ debian-installer.d \ debian-installer-startup.d include ../../Makefile.inc rootskel/src/lib/debian-installer-startup.d/0000755000000000000000000000000012276465774016326 5ustar rootskel/src/lib/debian-installer-startup.d/S02module-params0000644000000000000000000000117611516122665021272 0ustar # Before udev is started, parse kernel command word for module params of # the form module.param=value and register them so they will be used when # modules are loaded. Also check for modules to be blacklisted. for word in $(cat /proc/cmdline); do var="${word%%=*}" val="${word#[!=]*=}" # grep out the normal variables with no dots varnodot="${var##*.*}" if [ "$var" ] && [ -z "$varnodot" ]; then module="${var%.*}" param="${var#[!.]*.}" if [ "$module" ] && [ "$param" ]; then if [ "$param" = blacklist ]; then register-module -b "$module" else register-module -p -a "$module" "$param=$val" fi fi fi done rootskel/src/lib/debian-installer-startup.d/S37speakup0000644000000000000000000000032111516122665020173 0ustar SYNTH=$(sed < /proc/cmdline -n -e 's/.*speakup\.synth=\([^ ]*\).*/\1/p') if [ -n "$SYNTH" ]; then modprobe speakup_$SYNTH debconf-set debian-installer/framebuffer false register-module -i speakup_$SYNTH fi rootskel/src/lib/debian-installer-startup.d/S05acpi-linux-x860000644000000000000000000000024011516122665021212 0ustar # Load acpi fan and thermal modules if available, to avoid machine # overheating. modprobe fan >/dev/null 2>&1 || true modprobe thermal >/dev/null 2>&1 || true rootskel/src/lib/debian-installer-startup.d/S04countcpus-linux-hppa0000644000000000000000000000026411516122665022631 0ustar numcpus=$(grep "^0x00$" /sys/bus/parisc/devices/*/hw_type 2>/dev/null | wc -l) if [ $numcpus -gt 1 ]; then echo $numcpus >/var/numcpus else echo 1 >/var/numcpus fi unset numcpus rootskel/src/lib/debian-installer-startup.d/S40framebuffer-module-linux-alpha0000644000000000000000000000030411516122665024505 0ustar if [ -n "$TERM_FRAMEBUFFER_TRY" ] && \ [ "$(debconf-get debian-installer/framebuffer)" = true ]; then echo "Trying to enable the frame buffer..." modprobe -q tgafb >/dev/null 2>&1 || true fi rootskel/src/lib/debian-installer-startup.d/S40framebuffer-module-linux-x860000644000000000000000000000102511516122665024046 0ustar if [ -n "$TERM_FRAMEBUFFER_TRY" ] && \ [ "$(debconf-get debian-installer/framebuffer)" = true ]; then echo "Trying to enable the frame buffer..." if grep -q VESA /proc/fb || \ (modprobe -q vesafb >/dev/null 2>&1 && grep -q . /proc/fb) || \ (modprobe -q vga16fb >/dev/null 2>&1 && grep -q . /proc/fb); then if [ ! -d /sys/class/graphics/fbcon ]; then modprobe -q fbcon >/dev/null 2>&1 fi # sledgehammer workaround for race condition if type update-dev >/dev/null 2>&1; then update-dev --settle fi fi fi rootskel/src/lib/debian-installer-startup.d/S35term0000644000000000000000000000004711516122665017475 0ustar . /lib/debian-installer/detect-console rootskel/src/lib/debian-installer-startup.d/Makefile0000644000000000000000000000252612276465774017773 0ustar dir = lib/debian-installer-startup.d DEB_HOST_ARCH_CPU := $(shell dpkg-architecture -qDEB_HOST_ARCH_CPU 2>/dev/null) DEB_HOST_ARCH_OS := $(shell dpkg-architecture -qDEB_HOST_ARCH_OS 2>/dev/null) # Take account of old dpkg-architecture output. ifeq ($(DEB_HOST_ARCH_CPU),) DEB_HOST_ARCH_CPU := $(shell dpkg-architecture -qDEB_HOST_GNU_CPU) ifeq ($(DEB_HOST_ARCH_CPU),x86_64) DEB_HOST_ARCH_CPU := amd64 endif endif ifeq ($(DEB_HOST_ARCH_OS),) DEB_HOST_ARCH_OS := $(shell dpkg-architecture -qDEB_HOST_GNU_SYSTEM) endif files = \ S10syslog \ S20templates \ S35term ifeq ($(DEB_HOST_ARCH_OS),linux) ifneq (,$(filter i386 amd64,$(DEB_HOST_ARCH_CPU))) files += \ S05acpi-linux-x86 \ S40framebuffer-module-linux-x86 endif ifeq ($(DEB_HOST_ARCH_CPU),powerpc) files += \ S05fancontrol-linux-powerpc \ S45keyboard-linux-powerpc endif ifneq (,$(filter alpha,$(DEB_HOST_ARCH_CPU))) files += \ S40framebuffer-module-linux-alpha \ S04countcpus-linux-alpha endif ifneq (,$(filter hppa,$(DEB_HOST_ARCH_CPU))) files += \ S04countcpus-linux-hppa endif ifneq (,$(filter arm armel armhf,$(DEB_HOST_ARCH_CPU))) files += \ S40framebuffer-module-linux-armel \ S80anna-install-armel \ S99signal-status endif files += \ S01mount \ S02module-params \ S37speakup endif include ../../../Makefile.inc rootskel/src/lib/debian-installer-startup.d/S45keyboard-linux-powerpc0000644000000000000000000000044411516122665023142 0ustar subarch="$(archdetect)" subarch="${subarch#*/}" case $subarch in chrp|chrp_pegasos|chrp_rs6k|chrp_ibm|prep) echo "Loading AT keyboard modules..." modprobe -q i8042 >/dev/null 2>&1 || true modprobe -q atkbd >/dev/null 2>&1 || true register-module i8042 register-module atkbd ;; esac rootskel/src/lib/debian-installer-startup.d/S04countcpus-linux-alpha0000644000000000000000000000017711516122665022771 0ustar if dmesg | grep -q ^Processors:; then dmesg | grep ^Processors: | cut -d ' ' -f 2 >/var/numcpus else echo 1 >/var/numcpus fi rootskel/src/lib/debian-installer-startup.d/S80anna-install-armel0000644000000000000000000000046311516122665022207 0ustar # Make sure some udebs are loaded automatically, even in lowmem level 2 kver=$(uname -r) machine=$(grep "^Hardware" /proc/cpuinfo | sed 's/Hardware\s*:\s*//') case "$machine" in "Linksys NSLU2") anna-install partman-auto anna-install partman-ext3 anna-install usb-storage-modules-$kver-di ;; esac rootskel/src/lib/debian-installer-startup.d/S01mount0000644000000000000000000000031011516122665017652 0ustar # Cleanup after the first init, which leaves the initrd mounted # on /initrd (if we're not using initramfs) umount /initrd/dev 2>/dev/null umount /initrd 2>/dev/null freeramdisk /dev/ram0 2>/dev/null rootskel/src/lib/debian-installer-startup.d/S10syslog0000644000000000000000000000073111516122665020037 0ustar for option in $(cat /proc/cmdline); do case $option in log_host=*) log_host="${option#log_host=}" ;; log_port=*) log_port="${option#log_port=}" ;; esac done if [ -n "$log_host" ]; then logging_options="-L -R $log_host" if [ -n "$log_port" ]; then logging_options="$logging_options:$log_port" fi fi echo -n "Starting system log daemon: " /sbin/syslogd -m 0 -O /var/log/syslog -S $logging_options echo -n "syslogd, " /sbin/klogd -c 2 echo "klogd." rootskel/src/lib/debian-installer-startup.d/S40framebuffer-module-linux-armel0000644000000000000000000000117411516122665024526 0ustar if [ -n "$TERM_FRAMEBUFFER_TRY" ] && \ [ "$(debconf-get debian-installer/framebuffer)" = true ]; then echo "Trying to enable the frame buffer..." if [ ! -d /sys/class/graphics/fbcon ]; then modprobe -q fbcon >/dev/null 2>&1 fi # Put the fb modules in the ramdisk so users can see the boot process if [ -d /sys/class/graphics/fb0 ]; then if [ "$(cat /sys/class/graphics/fb0/name)" = "udlfb" ]; then register-module -i udlfb else driver=$(basename $(readlink /sys/class/graphics/fb0/device/driver)) register-module -i "$driver" fi register-module -i fbcon else echo "Failed to enable frame buffer." fi fi rootskel/src/lib/debian-installer-startup.d/S20templates0000644000000000000000000000017611516122665020521 0ustar if debconf-loadtemplate d-i /var/lib/dpkg/info/*.templates; then rm -f /var/lib/dpkg/info/*.templates # saves some memory fi rootskel/src/lib/debian-installer-startup.d/S05fancontrol-linux-powerpc0000644000000000000000000000072411516122665023504 0ustar # Load fan control modules on PowerMac machines. MODEL="`grep model /proc/cpuinfo`" MODEL="${MODEL##*: }" case "$MODEL" in PowerMac*|RackMac*) modprobe -q i2c-powermac ;; esac case "$MODEL" in RackMac3,1|PowerMac7,2|PowerMac7,3) modprobe -q therm_pm72 ;; PowerMac8,1|PowerMac8,2) modprobe -q windfarm_pm81 ;; PowerMac9,1) modprobe -q windfarm_pm91 ;; PowerMac11,2) modprobe -q windfarm_pm112 ;; PowerMac12,1) modprobe -q windfarm_pm121 ;; esac rootskel/src/lib/debian-installer-startup.d/S99signal-status0000644000000000000000000000062511516122665021340 0ustar # Signal the status of d-i (using LEDs) machine=$(grep "^Hardware" /proc/cpuinfo | sed 's/Hardware\s*:\s*//') case "$machine" in "HP Media Vault mv2120") if [ -e /sys/class/leds/mv2120:blue:health/trigger ]; then echo timer > /sys/class/leds/mv2120:blue:health/trigger echo 500 > /sys/class/leds/mv2120:blue:health/delay_on echo 500 > /sys/class/leds/mv2120:blue:health/delay_off fi ;; esac rootskel/src/lib/debian-installer/0000755000000000000000000000000012033046720014355 5ustar rootskel/src/lib/debian-installer/exit-command0000644000000000000000000000045511516122665016701 0ustar #!/bin/sh set -e export DEBIAN_FRONTEND=none . /usr/share/debconf/confmodule db_get debian-installer/exit/always_halt [ "$RET" = "true" ] && return 21 db_get debian-installer/exit/halt [ "$RET" = "true" ] && return 21 db_get debian-installer/exit/poweroff [ "$RET" = "true" ] && return 22 return 20 rootskel/src/lib/debian-installer/exit-hurd0000644000000000000000000000050311547430524016217 0ustar #!/bin/sh /lib/debian-installer/exit-command CMDN=$? case "$CMDN" in 20) CMD=reboot;; 21) CMD=halt;; 22) CMD=poweroff;; *) echo "got weird return code $CMDN";; esac #/bin/umount -a -r /sbin/swapoff -a $CMD -f # if possible, give init a chance to kill main-menu if type sleep >/dev/null 2>&1; then sleep 10 || true fi rootskel/src/lib/debian-installer/Makefile0000644000000000000000000000151311647040464016026 0ustar dir = lib/debian-installer DEB_HOST_ARCH_CPU := $(shell dpkg-architecture -qDEB_HOST_ARCH_CPU 2>/dev/null) DEB_HOST_ARCH_OS := $(shell dpkg-architecture -qDEB_HOST_ARCH_OS 2>/dev/null) # Take account of old dpkg-architecture output. ifeq ($(DEB_HOST_ARCH_CPU),) DEB_HOST_ARCH_CPU := $(shell dpkg-architecture -qDEB_HOST_GNU_CPU) ifeq ($(DEB_HOST_ARCH_CPU),x86_64) DEB_HOST_ARCH_CPU := amd64 endif endif ifeq ($(DEB_HOST_ARCH_OS),) DEB_HOST_ARCH_OS := $(shell dpkg-architecture -qDEB_HOST_GNU_SYSTEM) endif files = \ init-debug files_exec = \ exit:exit-$(DEB_HOST_ARCH_OS) \ exit-command \ menu ifneq (,$(findstring :$(DEB_HOST_ARCH):,:s390:s390x:)) files += \ detect-console:detect-console-linux-s390 else files += \ detect-console:detect-console-$(DEB_HOST_ARCH_OS) endif include ../../../Makefile.inc rootskel/src/lib/debian-installer/menu0000644000000000000000000000063111516122665015254 0ustar #! /bin/sh get_mem() { local ram=$(grep ^MemTotal: /proc/meminfo | { read x y z; echo $y; }) || true # in kilobytes if [ -z "$ram" ]; then echo "Cannot determine system memory" >&2 ram=0 else ram=$(expr "$ram" / 1024) # convert to megabytes fi echo $ram } if [ -z "$DEBCONF_DROP_TRANSLATIONS" ] && [ $(get_mem) -lt 250 ]; then export DEBCONF_DROP_TRANSLATIONS=1 fi exec debconf -o d-i $MENU rootskel/src/lib/debian-installer/detect-console-linux-s3900000644000000000000000000000052411764423673021062 0ustar if [ -z "$TERM_TYPE" ]; then case $(readlink /proc/self/fd/0) in /dev/console|/dev/tty[A-Z]*|/dev/sclp*) TERM_TYPE=serial ;; /dev/pts/*) TERM_TYPE=pts ;; esac fi case "$TERM_TYPE" in serial) TERM=dumb DEBIAN_FRONTEND=text ;; *) DEBIAN_FRONTEND= ;; esac export DEBIAN_FRONTEND export TERM export TERM_TYPE rootskel/src/lib/debian-installer/detect-console-hurd0000644000000000000000000000040511516122665020157 0ustar if [ -z "$TERM_TYPE" ]; then case $(tty) in /dev/tty[0-9]*) TERM_TYPE=virtual ;; /dev/console) TERM_TYPE=serial #unsure (mach console) ;; /dev/com*) TERM_TYPE=serial ;; /dev/tty[pq]*) TERM_TYPE=pts ;; esac fi export TERM_TYPE rootskel/src/lib/debian-installer/detect-console-linux0000644000000000000000000000044311647040464020357 0ustar if [ -z "$TERM_TYPE" ]; then case $(readlink /proc/self/fd/0) in /dev/console|/dev/tty[A-Z]*|/dev/ttymxc*|/dev/hvc*|/dev/hvsi*) TERM_TYPE=serial ;; /dev/tty*) TERM_TYPE=virtual TERM_FRAMEBUFFER_TRY=yes ;; /dev/pts/*) TERM_TYPE=pts ;; esac fi export TERM_TYPE rootskel/src/lib/debian-installer/exit-linux0000644000000000000000000000063711516122665016424 0ustar #!/bin/sh /lib/debian-installer/exit-command CMDN=$? case "$CMDN" in 20) CMD=reboot;; 21) CMD=halt;; 22) CMD=poweroff;; *) echo "got weird return code $CMDN";; esac # stop the udev daemon before /dev/ is unmounted if PID=$(pidof udevd); then kill -15 $PID fi /bin/umount -a -r /sbin/swapoff -a $CMD # if possible, give init a chance to kill main-menu if type sleep >/dev/null 2>&1; then sleep 10 || true fi rootskel/src/lib/debian-installer/init-debug0000644000000000000000000000030711516122665016337 0ustar debugshell () { if [ -n "$BOOT_DEBUG" ] && [ "$BOOT_DEBUG" -gt 2 ]; then echo "This is a debug shell ($1)." sh || true fi } if [ -n "$BOOT_DEBUG" ] && [ "$BOOT_DEBUG" -gt 1 ]; then set -x fi rootskel/src/lib/debian-installer/detect-console-kfreebsd0000644000000000000000000000043711764423673021017 0ustar if [ -z "$TERM_TYPE" ]; then case $(tty) in /dev/console|/dev/ttyu[0-f]*|/dev/cuau[0-f]*) TERM_TYPE=serial ;; /dev/ttyv[0-f]*) TERM_TYPE=virtual ;; /dev/ttyp[0-f]*) TERM_TYPE=pts ;; esac fi if [ -z "$TERM" ] ; then TERM=xterm fi export TERM export TERM_TYPE rootskel/src/lib/debian-installer/exit-kfreebsd0000644000000000000000000000057211516122665017050 0ustar #!/bin/sh /lib/debian-installer/exit-command CMDN=$? case "$CMDN" in 20) CMD=reboot;; 21) CMD=halt;; 22) CMD=poweroff;; *) echo "got weird return code $CMDN";; esac # re-enable the console sysctl "kern.consmute=0" > /dev/null /bin/umount -a /sbin/swapoff -a $CMD # if possible, give init a chance to kill main-menu if type sleep >/dev/null 2>&1; then sleep 10 || true fi rootskel/src/var/0000755000000000000000000000000011516122665011172 5ustar rootskel/src/var/log/0000755000000000000000000000000011516122665011753 5ustar rootskel/src/var/log/Makefile0000644000000000000000000000005511516122665013413 0ustar dir = var/log include ../../../Makefile.inc rootskel/src/var/log/messages0000644000000000000000000000000011516122665013473 0ustar rootskel/src/var/Makefile0000644000000000000000000000014011516122665012625 0ustar dir = var subdirs = log subdirs_empty = \ lib/apt-install \ run include ../../Makefile.inc rootskel/TODO0000644000000000000000000000120611516122665010302 0ustar - try to simplify the maze of little shell fragements that call each other w/o documentation - move as much as possible of the non-root-skeleton stuff out to other packages. This package was rather more comprehensible when it was a few empty directories and some simple files in /etc. Of course the debian-installer-startup and other similar directories won't be improved by being moved, and seem to fit as well here as anywhere else. However, parts of it, like the framebuffer startup code, are not needed by all images, and could usefully by moved to a separate udeb elsewhere. - Move all the debconf templates to elsewhere. rootskel/Makefile.inc0000644000000000000000000000302411516122665012022 0ustar outdir = $(DESTDIR)/$(dir) define check_destdir @if [ -z "$(DESTDIR)" ]; then \ echo "You *must* give a DESTDIR!"; \ exit 1; \ fi endef build: build-local build-recursive build-local:: install: install-auto install-local install-recursive install-auto: $(outdir) install-auto-dirs install-auto-files install-auto-files-exec install-auto-dirs: $(call check_destdir) @list='$(subdirs_empty)'; for file in $$list; do \ echo "install -d -m755 $(outdir)/$$file"; \ install -d -m755 $(outdir)/$$file; \ done install-auto-files: $(call check_destdir) @list='$(files)'; for file in $$list; do \ case $$file in \ *:*) in=`echo "$$file" | sed 's,[^:]*:,,'` \ out=$(outdir)/`echo "$$file" | sed 's,:.*,,'`;; \ *) in=$$file out=$(outdir);; \ esac; \ echo "install -m644 $$in $$out"; \ install -m644 $$in $$out; \ done install-auto-files-exec: $(call check_destdir) @list='$(files_exec)'; for file in $$list; do \ case $$file in \ *:*) in=`echo "$$file" | sed 's,[^:]*:,,'` \ out=$(outdir)/`echo "$$file" | sed 's,:.*,,'`;; \ *) in=$$file out=$(outdir);; \ esac; \ echo "install -m755 $$in $$out"; \ install -m755 $$in $$out; \ done install-local:: clean: clean-local clean-recursive clean-local:: build-recursive clean-recursive install-recursive: @target=`echo $@ | sed s/-recursive//`; \ list='$(subdirs)'; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ (cd $$subdir && $(MAKE) $$target) || exit 1; \ done $(outdir): install -d $(outdir) rootskel/debian/0000755000000000000000000000000012276466045011044 5ustar rootskel/debian/clean0000644000000000000000000000002111516122665012033 0ustar debian/templates rootskel/debian/templates-arch0000644000000000000000000000177612276465774013723 0ustar Template: debian-installer/framebuffer Type: boolean Default: true Default[sparc]: false Description: for internal use; can be preseeded Enable frame buffer console on boot Template: debian-installer/exit/always_halt Type: boolean Default: false Default[s390]: true Default[s390x]: true Description: for internal use only Always halt the machine Template: debian-installer/exit/halt Type: boolean Default: false Description: for internal use; can be preseeded Halt the machine Template: debian-installer/exit/poweroff Type: boolean Default: false Description: for internal use; can be preseeded Power off the machine Template: debian-installer/theme Type: string Description: for internal use; can be preseeded Theme to use for the (newt or gtk) frontend Template: debian-installer/allow_unauthenticated Type: boolean Default: false Description: for internal use; can be preseeded Template: debian-installer/allow_unauthenticated_ssl Type: boolean Default: false Description: for internal use; can be preseeded rootskel/debian/rules0000755000000000000000000000036312233746340012116 0ustar #! /usr/bin/make -f %: dh $@ override_dh_auto_build: debian/templates dh_auto_build DEB_HOST_ARCH ?= $(shell dpkg-architecture -qDEB_HOST_ARCH) debian/templates: debian/templates-arch debian/templates-build.pl $(DEB_HOST_ARCH) < $< > $@ rootskel/debian/copyright0000644000000000000000000000125311516122665012771 0ustar This is a root filesystem skeleton for the Debian/GNU Linux installer. Author(s): David Whedon, Copyright 2001-2007 David Whedon and the Debian installer team. The copyright of this package is GPL, version 2 or later. console-type.c: adapted for Debian Installer by Frans Pop from cttyhack from busybox 1.11; licenced under GPL version 2, and: Copyright (c) 2007 Denys Vlasenko steal-ctty.c: adapted for Debian Installer by Jérémy Bobbio from cttyhack from busybox 1.11; licenced under GPL version 2, and: Copyright (c) 2007 Denys Vlasenko rootskel/debian/templates-build.pl0000755000000000000000000000224211516122665014470 0ustar #!/usr/bin/perl use strict; use warnings; die "must specify arch" if not defined $ARGV[0]; my $arch = $ARGV[0]; my %template; $template{Fields} = []; $template{'Description-Long'} = ""; sub print_template { foreach ( @{$template{Fields}} ) { print $_ . ": "; if ( ref $template{$_} eq "HASH" ) { if ( defined $template{$_}->{$arch} ) { print $template{$_}->{$arch}; } else { print $template{$_}->{default}; } } else { print $template{$_}; } print "\n"; } print $template{'Description-Long'} . "\n"; %template = (); $template{Fields} = []; $template{'Description-Long'} = ""; } while ( ) { chomp; if (m/^$/) { print_template; } elsif ( m/^(\w+)(\[(\w+)\])?:\s+(.*)\s*$/ ) { if ( defined $3 ) { if ( defined $template{$1} and ref $template{$1} ne "HASH" ) { local $_; $_ = $template{$1}; $template{$1} = (); $template{$1}->{default} = $_; } elsif ( not defined $template{$1} ) { push ( @{$template{Fields}}, $1 ); } $template{$1}->{$3} = $4; } else { $template{$1} = $4; push ( @{$template{Fields}}, $1 ); } } else { $template{'Description-Long'} .= $_ . "\n"; } } print_template; rootskel/debian/source/0000755000000000000000000000000012233746340012334 5ustar rootskel/debian/source/format0000644000000000000000000000001512233746340013543 0ustar 3.0 (native) rootskel/debian/compat0000644000000000000000000000000212233746340012232 0ustar 9 rootskel/debian/control0000644000000000000000000000163412233746377012455 0ustar Source: rootskel Section: debian-installer Priority: standard Maintainer: Ubuntu Installer Team XSBC-Original-Maintainer: Debian Install System Team Uploaders: Colin Watson , Bastian Blank , Christian Perrier Build-Depends: debhelper (>= 9), dpkg-dev (>= 1.7.0), libklibc-dev [linux-any], linux-libc-dev (>= 2.6.38) [linux-any] XS-Debian-Vcs-Browser: http://anonscm.debian.org/gitweb/?p=d-i/rootskel.git XS-Debian-Vcs-Git: git://anonscm.debian.org/d-i/rootskel.git Vcs-Bzr: http://bazaar.launchpad.net/~ubuntu-core-dev/rootskel/ubuntu Package: rootskel Package-Type: udeb Architecture: any Depends: di-utils (>= 1.66), udev-udeb (>= 0.125-6) [linux-any] | devd-udeb [kfreebsd-any], freebsd-utils-udeb [kfreebsd-any], ${misc:Depends} Description: Skeleton root filesystem used by debian-installer rootskel/debian/changelog0000644000000000000000000024034012276466045012721 0ustar rootskel (1.107ubuntu1) trusty; urgency=medium * Resynchronise with Debian. Remaining changes: - Apply configurable console colors in d-i virtual terminals. -- Colin Watson Tue, 11 Feb 2014 18:29:54 +0000 rootskel (1.107) unstable; urgency=low [ Martin Michlmayr ] * Remove Cobalt related scripts. [ Samuel Thibault ] * /proc/mounts now exists on hurd-any, point /etc/mtab to it. [ Colin Watson ] * Add a new debian-installer/allow_unauthenticated_ssl template, which can be used to disable SSL certificate checks when using HTTPS (LP: #833994). -- Colin Watson Tue, 11 Feb 2014 18:04:10 +0000 rootskel (1.106ubuntu1) trusty; urgency=low * Resynchronise with Debian. Remaining changes: - Apply configurable console colors in d-i virtual terminals. -- Colin Watson Tue, 29 Oct 2013 07:59:56 -0700 rootskel (1.106) unstable; urgency=low * Bump compat level back to 9. * Do not use build & build-arch dependencies, as dh_auto_install is then not called. Instead, use override_dh_auto_build. -- Dmitrijs Ledkovs Mon, 29 Jul 2013 11:42:38 +0100 rootskel (1.105) unstable; urgency=low * Drop debhelper compatibility level back to 8 as the bump to 9 empties the package. With apologies for omitting to check. Closes: #717519 -- Christian Perrier Wed, 24 Jul 2013 18:51:50 +0200 rootskel (1.104) unstable; urgency=low [ Dmitrijs Ledkovs ] * Set debian source format to '3.0 (native)'. * Bump debhelper compat level to 9. * Set Vcs-* to canonical format. -- Christian Perrier Sat, 13 Jul 2013 13:26:38 +0200 rootskel (1.103ubuntu1) saucy; urgency=low * Resynchronise with Debian. Remaining changes: - Apply configurable console colors in d-i virtual terminals. -- Colin Watson Sun, 19 May 2013 22:25:42 +0100 rootskel (1.103) unstable; urgency=low [ Adam Conrad ] * Remove the lib64 -> lib symlinks, no longer necessary with the new mklibs (and, in fact, break it due to debhelper making them absolute instead of relative). -- Colin Watson Sat, 18 May 2013 22:28:46 +0100 rootskel (1.102) unstable; urgency=low * Fix /etc/profile script to properly detect when to call setupcon: the config script for console-setup-udeb is /etc/default/keyboard (middle-ground between console-setup's /etc/default/console-setup and keyboard-configuration's /etc/default/keyboard). Closes: #606395. * Redirect setupcon's stdout/stderr to /dev/null in that profile script. This avoids spurious “gzip is not accessible. Will not save cached keyboard map.” messages when opening a console. In case of troubles, it's easy enough to get rid of the redirections to debug things. -- Cyril Brulebois Thu, 27 Dec 2012 22:40:16 +0100 rootskel (1.101ubuntu1) raring; urgency=low * Resynchronise with Debian. Remaining changes: - Remove the lib64 -> lib symlinks, no longer necessary with the new mklibs. - Apply configurable console colors in d-i virtual terminals. -- Colin Watson Mon, 29 Oct 2012 10:46:02 +0000 rootskel (1.101) unstable; urgency=low [ Samuel Thibault ] * When enabling speakup, tell debconf to show choices horizontally. Closes: #690588. * Update lowmem limit for graphical installer. [ Christian Perrier ] * Replace XC-Package-Type by Package-Type in debian/control -- Christian Perrier Sat, 27 Oct 2012 13:47:30 +0200 rootskel (1.100ubuntu1) quantal; urgency=low * Resynchronise with Debian. Remaining changes: - Remove the lib64 -> lib symlinks, no longer necessary with the new mklibs. - Apply configurable console colors in d-i virtual terminals. -- Colin Watson Tue, 03 Jul 2012 11:16:07 +0100 rootskel (1.100) unstable; urgency=high [ Joey Hess ] * Remove rootskel-bootfloppy. The age of the floppy is officially over. Closes: #653840 [ Robert Millan ] * src/sbin/init-kfreebsd: Start devd to process all pending events before init (see #493865) [ Julien Cristau ] * Generate debian/templates in build-arch as well as build, so they don't go missing on non-source uploads. Thanks to Cyril Brulebois for the investigation. -- Julien Cristau Thu, 21 Jun 2012 18:16:55 +0200 rootskel (1.99ubuntu1) quantal; urgency=low * Resynchronise with Debian (LP: #1010506). Remaining changes: - Build for ppc64. - Remove the lib64 -> lib symlinks, no longer necessary with the new mklibs. - Apply configurable console colors in d-i virtual terminals. -- Colin Watson Fri, 08 Jun 2012 17:30:30 +0100 rootskel (1.99) unstable; urgency=low [ Robert Millan ] * Serial devices are now named "ttyu" and "cuau" on GNU/kFreeBSD. [ Aurelien Jarno ] * On s390x, detect /dev/sclp* as serial devices. [ Otavio Salvador ] * kfreebsd: set TERM as xterm by default. -- Otavio Salvador Sat, 31 Dec 2011 10:58:23 -0200 rootskel (1.98ubuntu2) precise; urgency=low * Remove the lib64 -> lib symlinks, no longer necessary with the new mklibs (and, in fact, break it due to debhelper making them absolute instead of relative) -- Adam Conrad Thu, 08 Dec 2011 15:52:26 -0700 rootskel (1.98ubuntu1) precise; urgency=low * Resynchronise with Debian. Remaining changes: - Build for ppc64 and create a lib64 symlink there. - Apply configurable console colors in d-i virtual terminals. -- Colin Watson Mon, 17 Oct 2011 15:54:07 +0100 rootskel (1.98) unstable; urgency=low * Add support for s390x. -- Philipp Kern Thu, 06 Oct 2011 18:58:30 +0200 rootskel (1.97) unstable; urgency=low [ Loïc Minier ] * Add Freescale i.MX serial consoles, /dev/ttymxc*. [ Robert Millan ] * control: Use "any" architecture wildcards where possible. [ Colin Watson ] * Provide the ability to choose a remote logging host and port if specified on the kernel command line using log_host= and log_port= (thanks, Matt T. Proud; closes: #635191). [ Samuel Thibault ] * Harmonize S40term-hurd with linux & kfreebsd, fixes glitch in network-console. -- Colin Watson Thu, 28 Jul 2011 17:58:08 +0100 rootskel (1.96ubuntu1) oneiric; urgency=low * Resynchronise with Debian. Remaining changes: - Provide the ability to choose a remote logging host and port if specified on the kernel command line. - Build for ppc64 and create a lib64 symlink there. - Apply configurable console colors in d-i virtual terminals. -- Colin Watson Thu, 26 May 2011 16:23:08 +0100 rootskel (1.96) unstable; urgency=low [ Samuel Thibault ] * Do not require TERM_FRAMEBUFFER to be set for g-i on !linux-any. * Require TERM to be set to hurd for g-i on hurd-any. * Add audio group for proper ALSA behavior. [ Hector Oron ] * src/lib/debian-installer-startup.d/Makefile: - enabled init scripts for armhf: S40framebuffer-module-linux-armel S80anna-install-armel S99signal-status [ Colin Watson ] * Set up /run on Linux, otherwise udev complains at boot. * Create /run/lock after mounting /run, for later convenience. -- Colin Watson Thu, 26 May 2011 14:15:42 +0100 rootskel (1.95ubuntu1) oneiric; urgency=low * Resynchronise with Debian. Remaining changes: - Provide the ability to choose a remote logging host and port if specified on the kernel command line. - Build for ppc64 and create a lib64 symlink there. - Apply configurable console colors in d-i virtual terminals. -- Colin Watson Mon, 02 May 2011 09:28:48 +0100 rootskel (1.95) unstable; urgency=low [ Jurij Smakov ] * Switch to using TIOCGDEV ioctl for detection of the real console for kernels >= 2.6.38. -- Jurij Smakov Sat, 09 Apr 2011 10:12:29 +0100 rootskel (1.94ubuntu1) natty; urgency=low * Resynchronise with Debian. Remaining changes: - Provide the ability to choose a remote logging host and port if specified on the kernel command line. - Build for ppc64 and create a lib64 symlink there. - Apply configurable console colors in d-i virtual terminals. -- Colin Watson Thu, 07 Apr 2011 22:50:53 +0100 rootskel (1.94) unstable; urgency=low [ Samuel Thibault ] * src/lib/debian-installer/exit-hurd: pass -f to busybox to make it simply call reboot(), which DTRT. [ Jurij Smakov ] * Set DEB_HOST_ARCH_OS in src/Makefile to make sure that everything builds correctly without help from dpkg-buildpackage. [ Colin Watson ] * Bump the amount of data reopen-console-linux reads from the kernel ring buffer from 64KiB to 256KiB. This fixes console detection on (at least) VMware Workstation (LP: #745947). -- Colin Watson Thu, 07 Apr 2011 22:37:55 +0100 rootskel (1.93ubuntu3) natty; urgency=low * src/lib/debian-installer.d/S30term: apply the configurable console colors in the d-i virtual terminals, LP: #730672 -- Dustin Kirkland Thu, 17 Mar 2011 13:34:43 -0500 rootskel (1.93ubuntu2) natty; urgency=low * Build for ppc64 and create a lib64 symlink there (cf. rootskel 1.34). -- Colin Watson Tue, 08 Feb 2011 19:20:42 +0000 rootskel (1.93ubuntu1) natty; urgency=low * Resynchronise with Debian. Remaining changes: - Provide the ability to choose a remote logging host and port if specified on the kernel command line. -- Colin Watson Fri, 24 Dec 2010 16:43:40 +0000 rootskel (1.93) unstable; urgency=low [ Milan Kupcevic ] * S05fancontrol-linux-powerpc: Add windfarm_pm121 for iMac iSight machines. Selectively load necessary modules to control G5 PowerMac fans. All G5 PowerMac models are covered now. [ Samuel Thibault ] * S40term-kfreebsd: Fix typo, thanks Salvatore Bonaccorso (Closes: Bug#606318) -- Christian Perrier Wed, 08 Dec 2010 22:57:05 +0100 rootskel (1.92ubuntu1) natty; urgency=low * Resynchronise with Debian. Remaining changes: - Provide the ability to choose a remote logging host and port if specified on the kernel command line. -- Colin Watson Wed, 03 Nov 2010 15:11:35 +0000 rootskel (1.92) unstable; urgency=low [ Samuel Thibault ] * Update minimum memory value for g-i. -- Otavio Salvador Mon, 01 Nov 2010 19:07:11 -0200 rootskel (1.91ubuntu1) natty; urgency=low * Resynchronise with Debian. Remaining changes: - Provide the ability to choose a remote logging host and port if specified on the kernel command line. -- Colin Watson Thu, 21 Oct 2010 17:54:05 +0100 rootskel (1.91) unstable; urgency=low * Team upload [ Samuel Thibault ] * When it is activated, add the speakup modules to the target initrd. -- Christian Perrier Wed, 20 Oct 2010 23:10:46 +0200 rootskel (1.90ubuntu1) natty; urgency=low * Resynchronise with Debian. Remaining changes: - Provide the ability to choose a remote logging host and port if specified on the kernel command line. -- Colin Watson Wed, 13 Oct 2010 15:37:27 +0100 rootskel (1.90) unstable; urgency=low * Mount /sys on GNU/kFreeBSD as chroot_setup() from di-utils now rely on that. -- Aurelien Jarno Mon, 23 Aug 2010 15:13:54 +0200 rootskel (1.89) unstable; urgency=low * Parse kernel parameters and export them to environment variables on GNU/kFreeBSD. -- Aurelien Jarno Sun, 22 Aug 2010 16:16:20 +0200 rootskel (1.88) unstable; urgency=low * Skip the creation of /etc/mtab on Hurd, rather than on everything but Hurd. Thanks to Trent W. Buck for the report. -- Colin Watson Fri, 20 Aug 2010 13:05:47 +0100 rootskel (1.87) unstable; urgency=low [ Aurelien Jarno ] * Remount the filesystem with the "remount" option instead of the "update" one as it is the only one supported by busybox. * Correctly detect virtual consoles on kFreeBSD 8.x. * Enable UTF-8 on GNU/kFreeBSD. [ Jeremie Koenig ] * Fix lib/debian-installer.d/S40term-hurd. * Provide a -hurd version for some files: (closes: #593212) - lib/debian-installer/detect-console - lib/debian-installer/exit (skips umount, which is not available yet) - etc/fstab (empty) - etc/inittab (copied the Linux one) - sbin/reopen-console (not much guesswork yet) * Skip the creation of /etc/mtab on Hurd (our /proc/mounts is itself a symlink to mtab). -- Aurelien Jarno Tue, 17 Aug 2010 21:22:43 +0200 rootskel (1.86) unstable; urgency=low [ Jeremie Koenig ] * Add a S40term-hurd to enable UTF-8. [ Aurelien Jarno ] * src/lib/debian-installer/init-debug: fix to not output an error message on POSIX compliant shells and on recent busybox versions. -- Aurelien Jarno Mon, 02 Aug 2010 17:39:51 +0200 rootskel (1.85) unstable; urgency=low [ Frans Pop ] * Only drop unused translations if available memory is less than 250MB. If more memory is available there is no real reason to do this. [ Martin Michlmayr ] * Add S40framebuffer-module-linux-armel to ensure that fbcon is loaded and that fb modules are put in the ramdisk so that users can see the boot process. [ Otavio Salvador ] * In case running in live-installer assume GTK frontend can be used. -- Otavio Salvador Tue, 27 Jul 2010 02:08:37 -0300 rootskel (1.84ubuntu1) maverick; urgency=low * Resynchronise with Debian. Remaining changes: - Provide the ability to choose a remote logging host and port if specified on the kernel command line. -- Colin Watson Mon, 24 May 2010 18:13:40 +0100 rootskel (1.84) unstable; urgency=low [ Samuel Thibault ] * hurd-i386 does not need klibc. [ Frans Pop ] * Avoid an endless loop if the installer should be booted with init=/init. -- Frans Pop Sun, 21 Mar 2010 16:06:12 +0100 rootskel (1.83) unstable; urgency=low * Remove reference to socket-modules udeb from /etc/modules.conf. The udeb is no longer used. * Be more precise regarding the new "console handover" message to avoid running into #499030 again. -- Frans Pop Fri, 05 Mar 2010 15:01:52 +0100 rootskel (1.82) unstable; urgency=low [ Colin Watson ] * Upgrade to debhelper v7. [ Frans Pop ] * Remove no longer needed Lintian override for missing Standards- Version field. * reopen-console-linux: with 2.6.32 the format of "console handover" messages in dmesg changes; support both old and new format. Closes: #552278. * Drop support for the discontinued lpia architecture. [ Martin Michlmayr ] * reopen-console-linux: Ensure that the script works even when PRINTK_TIME is not set in the kernel. -- Frans Pop Wed, 23 Dec 2009 00:37:15 +0100 rootskel (1.81ubuntu3) lucid; urgency=low * src/lib/debian-installer-startup.d/S40framebuffer-module-linux-x86: revert that last change; was fun while it lasted; seems that some non-English locales need the installer to run in fbcon; back to sed -i fb=0 hacking of the *.iso itself -- Dustin Kirkland Tue, 24 Nov 2009 16:12:28 -0600 rootskel (1.81ubuntu2) lucid; urgency=low * src/lib/debian-installer-startup.d/S40framebuffer-module-linux-x86: do not use the frame buffer console, if running in a QEMU/KVM, LP: #487187 -- Dustin Kirkland Mon, 23 Nov 2009 11:22:38 -0600 rootskel (1.81ubuntu1) lucid; urgency=low * Resynchronise with Debian. Remaining changes: - Provide the ability to choose a remote logging host and port if specified on the kernel command line. -- Colin Watson Thu, 05 Nov 2009 20:16:00 -0800 rootskel (1.81) unstable; urgency=low * Fix a bashisms in /lib/debian-installer.d/S40term-kfreebsd. -- Aurelien Jarno Sat, 29 Aug 2009 23:53:58 +0200 rootskel (1.80) unstable; urgency=low [ Colin Watson ] * Only build rootskel-bootfloppy on Linux architectures. [ Luca Favatella ] * Generalize code splitting Linux specific stuff. * GNU/kFreeBSD does not need klibc and udev. * Add GNU/kFreeBSD /etc/inittab, considering /dev/ttyv[1-3] instead of /dev/tty[2-4] (as on GNU/Linux). * Add GNU/kFreeBSD /etc/fstab and /sbin/init. * Add GNU/kFreeBSD /lib/debian-installer/detect-console. [ Otavio Salvador ] * Unix socket support is built-in since long ago so we don't need to load it. [ Aurelien Jarno ] * On GNU/kFreeBSD, mount fdescfs at boot time and set the default module path. Depends on freebsd-utils-udeb (for sysctl). * src/lib/debian-installer-startup.d/Makefile: S01mount and S02module-params are Linux specific. * Add GNU/kFreeBSD /sbin/reopen-console. * Use a GNU/kFreeBSD specific script to exit the installer. * Add a S40term-kfreebsd to mute the console on boot time if it is not used. * Use a S70menu common to all architectures. -- Aurelien Jarno Sat, 29 Aug 2009 23:15:13 +0200 rootskel (1.79) unstable; urgency=low * Let return code 11 to be handled by main-menu so live-installer can properly exit the installer. -- Otavio Salvador Fri, 03 Jul 2009 08:23:38 -0300 rootskel (1.78ubuntu1) karmic; urgency=low * Resynchronise with Debian. Remaining changes: - Provide the ability to choose a remote logging host and port if specified on the kernel command line. -- Muharem Hrnjadovic Mon, 15 Jun 2009 12:20:30 +0200 rootskel (1.78) unstable; urgency=low [ Martin Michlmayr ] * Remove the udev rule for Netwinder since we no longer support this device. [ Christian Perrier ] * Bump debhelper compatibility level to 6 * Add myself to uploaders -- Christian Perrier Sun, 14 Jun 2009 19:09:32 +0200 rootskel (1.77) unstable; urgency=low * hppa: starting with kernel 2.6.29 the hilkbd module should be loaded automatically by udev. -- Frans Pop Fri, 08 May 2009 07:46:36 +0200 rootskel (1.76ubuntu1) karmic; urgency=low * Resynchronise with Debian. Remaining changes: - Provide the ability to choose a remote logging host and port if specified on the kernel command line. -- Colin Watson Wed, 29 Apr 2009 11:05:47 +0100 rootskel (1.76) unstable; urgency=low [ Frans Pop ] * Drop support for the ppc64 architecture. -- Colin Watson Tue, 28 Apr 2009 11:52:17 +0100 rootskel (1.75) unstable; urgency=low [ Colin Watson ] * Merge from Ubuntu: - Use 'update-dev --settle' rather than 'update-dev' after loading fbcon module. Requires di-utils 1.66. -- Otavio Salvador Sun, 05 Apr 2009 17:55:41 -0300 rootskel (1.74) unstable; urgency=low * Merge from Ubuntu: - init: Add support for disabling the shells on tty2 and tty3 by specifying a 'noshell' option on the kernel cmdline. Useful for unattended installations in a public place (closes: #504381). -- Colin Watson Fri, 27 Feb 2009 05:57:38 +0000 rootskel (1.73ubuntu2) jaunty; urgency=low * Use 'update-dev --settle' rather than 'update-dev' after loading fbcon module. Requires di-utils 1.66. -- Colin Watson Wed, 04 Mar 2009 18:30:23 +0000 rootskel (1.73ubuntu1) jaunty; urgency=low * Resynchronise with Debian (thanks to Alessio Treglia for a similar attempt, though I'm doing this independently since rootskel is maintained in bzr; LP: #309949). Remaining changes: - Provide the ability to choose a remote logging host and port if specified on the kernel command line. - init: Add support for disabling the shells on tty2 and tty3 by specifying a 'noshell' option on the kernel cmdline. Useful for unattended installations in a public place. * Set Vcs-Bzr field for Ubuntu to avoid further merges outside bzr. -- Colin Watson Tue, 06 Jan 2009 18:14:19 +0000 rootskel (1.73) unstable; urgency=low * hppa: load hilkbd module and register the module for inclusion in initrd for the target system. Closes: #416208. -- Frans Pop Sat, 27 Dec 2008 04:36:06 +0000 rootskel (1.72) unstable; urgency=low [ Jérémy Bobbio ] * Add missing copyright statements for steal-ctty. * steal-ctty: add missing #include for perror(). [ Frans Pop ] * reopen-console: fix syntax error. -- Frans Pop Sat, 13 Dec 2008 13:45:26 +0100 rootskel (1.71) unstable; urgency=low * Add a check in reopen-console that the console reported as "handed over" is of the correct type. In some cases dmesg reports a virtual console, while the actual console the init process is running on is serial. A simplified version of busybox' cttyhack is used to perform the check. Closes: #504721. -- Frans Pop Fri, 05 Dec 2008 14:08:21 +0100 rootskel (1.70ubuntu1) jaunty; urgency=low * Merge from debian unstable, remaining changes: (LP: #303879) - Provide the ability to choose a remote logging host and port if specified on the kernel command line. - init: Add support for disabling the shells on tty2 and tty3 by specifying a 'noshell' option on the kernel cmdline. Useful for unattended installations in a public place. -- Bhavani Shankar Mon, 01 Dec 2008 11:30:18 +0530 rootskel (1.70) unstable; urgency=low * Support real devices for console on s390. (closes: #504760) -- Bastian Blank Sat, 29 Nov 2008 22:02:53 +0100 rootskel (1.69ubuntu1) jaunty; urgency=low * Resynchronise with Debian. Remaining changes: - Provide the ability to choose a remote logging host and port if specified on the kernel command line. - init: Add support for disabling the shells on tty2 and tty3 by specifying a 'noshell' option on the kernel cmdline. Useful for unattended installations in a public place. -- Colin Watson Mon, 03 Nov 2008 12:24:43 +0000 rootskel (1.69) unstable; urgency=low [ Frans Pop ] * reopen-console: ignore consoles found in boot messages for which no device file exists. Closes: #499030. -- Jérémy Bobbio Sun, 21 Sep 2008 08:33:47 +0000 rootskel (1.68) unstable; urgency=low [ Martin Michlmayr ] * Load required udebs for the NSLU2 automatically (partman-auto, partman-ext3 and usb-storage-modules). (Closes: #498795) * Load required udebs for the Cobalt automatically (partman-auto, partman-ext2r0 and partman-ext3). * Remove S40framebuffer-module-linux-mips since framebuffer on SB1 machines never worked. * Move S59cobalt-welcome from cobalt-scripts to rootskel since cobalt-scripts only contains this single script. [ Jérémy Bobbio ] * reopen-console: Save the console device found from kernel messages in /var/run/console-device as it is possible that those would be unavailable later on. * Move back the switch from /dev/console to the real console device in /etc/inittab as doing it before calling init does not really work. -- Martin Michlmayr Mon, 15 Sep 2008 09:35:44 +0300 rootskel (1.67) unstable; urgency=low [ Martin Michlmayr ] * Update the initrd init to use start-udev/reopen-console. -- Martin Michlmayr Thu, 04 Sep 2008 10:19:48 +0300 rootskel (1.66) unstable; urgency=low [ Jérémy Bobbio ] * Start udev before running init. Depends: udev-udeb (>= 0.125-6) * Rework the switch from /dev/console to the real console device (e.g. /dev/tty0). (Closes: #484366) Breaks: cdebconf-gtk-udeb (<< 0.134) -- Otavio Salvador Thu, 28 Aug 2008 10:16:15 -0300 rootskel (1.65) unstable; urgency=low [ Colin Watson ] * Add debian-installer/exit/poweroff to run poweroff rather than reboot or halt at the end of the installation. Requested by Crispin Flowerday. [ Martin Michlmayr ] * Only set DEBCONF_DROP_TRANSLATIONS=1 if it is not set yet. This allows others (e.g. oldsys-preseed) to set the variable to 0 before S70menu is run. -- Martin Michlmayr Sat, 23 Aug 2008 21:38:50 +0300 rootskel (1.64) unstable; urgency=low [ Samuel Thibault ] * Add basic support for speakup (voice synthesis for accessibility). [ Martin Michlmayr ] * Add a startup script to change the LED on the HP mv2120 to indicate the status of d-i. [ Frams Pop ] * Stop the udev daemon before unmounting file systems when D-I is shut down. Not doing so results in errors with udev 0.124. Closes: #490924. -- Frans Pop Wed, 16 Jul 2008 13:51:29 +0200 rootskel (1.63) unstable; urgency=low [ Joey Hess ] * Rename toplevel /floppy mountpoint to /media, as used by the newly renamed mountmedia. [ Frans Pop ] * Apply patch from Samuel Thibault to also expose the theme to the text frontend. Closes: #488493. -- Joey Hess Mon, 07 Jul 2008 14:03:14 -0400 rootskel (1.62ubuntu1) intrepid; urgency=low * Resynchronise with Debian. Remaining changes: - Provide the ability to choose a remote logging host and port if specified on the kernel command line. - init: Add support for disabling the shells on tty2 and tty3 by specifying a 'noshell' option on the kernel cmdline. Useful for unattended installations on a public place. -- Colin Watson Wed, 11 Jun 2008 19:53:07 +0100 rootskel (1.62) unstable; urgency=low [ Frans Pop ] * Remove Bdale Garbee, Kenshi Muto and Matt Kraai as Uploaders with many thanks for their past contributions. [ Joey Hess ] * Fix FTBFS on alpha. -- Joey Hess Tue, 22 Apr 2008 21:02:30 -0400 rootskel (1.61) unstable; urgency=low [ Frans Pop ] * S35term: script is sourced, so remove the shebang. * S35framebuffer-linux: export TERM_FRAMEBUFFER so that can be used to test whether framebuffer is available or not (e.g. in localechooser). [ Joey Hess ] * Translated bootfloppy init to a C program, this allows dropping the shell from the boot floppy to save space. -- Frans Pop Fri, 04 Apr 2008 21:04:34 +0200 rootskel (1.60) unstable; urgency=low [ Frans Pop ] * S40framebuffer-module-linux-alpha: remove redundant architecture test. * S40framebuffer-module-linux-x86: allow for the fact that vesafb and fbcon can be (and are) compiled in for i386 and amd64 kernels. [ Joey Hess ] * Fix debugshell on boot floppy, there is no sh command, have to use the klibc sh. * Rewrite boot floppy init to try to load a cpio archive direct from the floppy with no encapsulating filesystem. This will save space by allowing modularising ext2 in the kernel. * There's no sleep command on the boot floppy, don't try to use it. -- Joey Hess Mon, 31 Mar 2008 18:33:51 -0400 rootskel (1.59) unstable; urgency=low [ Frans Pop ] * Fix number of CPUs count for alpha. * Add number of CPUs count for hppa. Thanks to Grant Grundler for his suggestion how that could be done. * Stop creating /usr/lib/prebaseconfig.d; it was deprecated ages ago. [ Joey Hess ] * Modify init to support userdevfs again. [ Frans Pop ] * Use new busybox' cttyhack in /etc/inittab to ensure that the console gets identified correctly as a tty for the init scripts. Requires: busybox (>= 1:1.9.1-3). -- Frans Pop Sat, 22 Mar 2008 23:14:41 +0100 rootskel (1.58ubuntu2) hardy; urgency=low * init: Add support for disabling the shells on tty2 and tty3 by specifying a 'noshell' -option on the kernel cmdline. Useful for unattended installations on a public place. -- Timo Aaltonen Wed, 06 Feb 2008 16:53:35 +0200 rootskel (1.58ubuntu1) hardy; urgency=low [ Matt T. Proud ] * debian-installer-startup.d/S10syslog: Provide the ability to choose a remote logging host and port if specified on the kernel command line (LP: #184130). -- Colin Watson Mon, 04 Feb 2008 17:07:06 +0000 rootskel (1.58) unstable; urgency=low [ dann frazier ] * Create more serial device files in the ramdisk before calling busybox init, in case they are needed for a serial console. Closes: #453749. [ Frans Pop ] * Remove some code supporting kernels other than 2.6. * Minor whitespace and coding style changes. * Remove obsolete d-i-startup.d/S03hotplug and the coldplug script it calls. -- Otavio Salvador Thu, 31 Jan 2008 08:58:22 -0200 rootskel (1.57) unstable; urgency=low * debian-installer-startup.d/S02netwinder-net: restructure so I don't need to exit or return from the script. -- Martin Michlmayr Thu, 29 Nov 2007 09:47:33 +0100 rootskel (1.56) unstable; urgency=low [ Frans Pop ] * Remove S02udev-fixup; /.dev seems no longer needed. [ Martin Michlmayr ] * Add a udev rules file for Netwinder so the Ethernet interfaces will use the same naming scheme as used by the Netwinder firmware. -- Martin Michlmayr Sat, 17 Nov 2007 17:17:58 +0100 rootskel (1.55) unstable; urgency=low [ Jérémy Bobbio ] * Cleanup devfs-style device names. -- Otavio Salvador Tue, 11 Sep 2007 09:25:42 -0300 rootskel (1.54) unstable; urgency=low * Switch inittab to use /dev/ttyX instead of devfs equivalents /dev/vc/X. -- Frans Pop Sun, 01 Jul 2007 09:21:49 +0200 rootskel (1.53) unstable; urgency=low * Prepare for console-setup: call setupcon from /etc/profile if it's available and /etc/default/console-setup exists. * Set DEBCONF_DROP_TRANSLATIONS=1 when starting the menu. Requires cdebconf 0.117 to take effect, but won't break with earlier versions. -- Colin Watson Wed, 27 Jun 2007 22:03:30 +0100 rootskel (1.52) unstable; urgency=low * S02module-params: allow for module paramenters with an '=' in them. Thanks to Damián Viano. Closes: #284425. -- Frans Pop Mon, 21 May 2007 17:00:30 +0200 rootskel (1.51) unstable; urgency=low [ David Härdeman ] * Use cpio and read -t from klibc 1.5. Closes: #417439. -- Frans Pop Sat, 21 Apr 2007 01:21:19 +0200 rootskel (1.50) unstable; urgency=low * Add new debian-installer/allow_unauthenticated template, will be used by choose-mirror and base-installer to allow forcing installation even if the mirror doesn't auth. -- Joey Hess Fri, 16 Feb 2007 16:11:25 -0500 rootskel (1.49) unstable; urgency=low * Support blacklisting of modules from the boot prompt using the syntax "module.blacklist=". The value can be anything. Requires di-utils (>=1.43). -- Frans Pop Sat, 6 Jan 2007 14:51:03 +0100 rootskel (1.48) unstable; urgency=low [ Sylvain Ferriol ] * Klibc timeout does not work for all arches, so we reduce the usb keyboard support to i386. Closes: #402746. * Better root disk label test in bootfloppy init script. * Define KLIBC_SELECT C flag in timeout_read.c for i386. -- Frans Pop Sat, 23 Dec 2006 20:34:42 +0100 rootskel (1.47) unstable; urgency=low * Raise memory requirement for graphical installer to 128MiB for powerpc. * Don't enable graphical frontend if GTK_NOVESA is set (see rootskel-gtk). -- Frans Pop Mon, 11 Dec 2006 23:43:03 +0100 rootskel (1.46) unstable; urgency=low [ Sylvain Ferriol ] * Add a timeout in the prompt for the root floppy so that users can still proceed from boot to root floppy even when they have a USB keyboard (which is not supported by the root floppy due to lack of space). [ Petter Reinholdtsen ] * Remove myself as uploader. [ Otavio Salvador ] * Truncate the comment on S05fancontrol-linux-powerpc since the aircraft noise level doesn't happen on all powerpc machines. Suggested by Holger Levsen . [ Frans Pop ] * init-debug: remove shebang as script is sourced, not executed. -- Frans Pop Sat, 9 Dec 2006 18:00:12 +0100 rootskel (1.45) unstable; urgency=low [ Otavio Salvador ] * Applied patch from Sven Luther to load fan control modules for G5 Apple systems, but with trivial fix to remove an unrelated change. Closes: #394971. -- Frans Pop Fri, 24 Nov 2006 21:09:52 +0100 rootskel (1.44) unstable; urgency=low * Revert to previous known good version as upload was against agreement, violates basic NMU rules and patch was broken. -- Frans Pop Wed, 22 Nov 2006 15:44:25 +0100 rootskel (1.43) unstable; urgency=low [ Sven Luther ] * Added S05fancontrol-linux-powerpc, in order to actually load the fancontrol modules, in order to not have G5 apple box go into aircraft noise level a few minutes after the start of the installation. -- Sven Luther Sun, 19 Nov 2006 10:59:02 +0100 rootskel (1.42) unstable; urgency=low [ Sylvain Ferriol ] * Include klibc-utils in src-rootskel. cpio binary and klibc-utils share the same klibc library. Closes: #394079, #398255. -- Frans Pop Thu, 16 Nov 2006 05:46:50 +0100 rootskel (1.41) unstable; urgency=low * Rebuild against klibc 1.4.29-1 to make cpio in rootskel-bootfloppy work again. -- Frans Pop Wed, 18 Oct 2006 13:23:34 +0200 rootskel (1.40) unstable; urgency=low [ Sylvain Ferriol ] * src-bootfloppy/init: recode the whole script; it now uses klibc. usb floppy code has been retired because the 2.6 kernel is too big so the usb floppy drivers cannot be included in boot floppy. -- Frans Pop Fri, 13 Oct 2006 03:52:42 +0200 rootskel (1.39) unstable; urgency=low * No longer set LANGUAGE; the default language is now set in cdebconf-udeb and main-menu makes sure it is honoured when a new frontend is started. Closes: #381142. -- Frans Pop Fri, 6 Oct 2006 03:15:49 +0200 rootskel (1.38) unstable; urgency=low * Selectively enable framebuffer on sparc. * Add support for debian-installer/theme boot parameter. -- Frans Pop Sun, 24 Sep 2006 02:41:31 +0200 rootskel (1.37) unstable; urgency=low [ Matt Kraai ] * Fix syntax error in /etc/profile. -- Frans Pop Wed, 13 Sep 2006 18:47:58 +0200 rootskel (1.36) unstable; urgency=low [ Colin Watson ] * Now that /var/log/messages has been retired, replace its tail with another convenience shell; it can be useful to look at more than one thing at once, or to kill a process that wedged your shell on tty2. [ Frans Pop ] * Apparently we need to set the keyboard mode separately for the convenience shells. -- Frans Pop Sun, 10 Sep 2006 10:22:59 +0200 rootskel (1.35) unstable; urgency=low [ Colin Watson ] * src/lib/debian-installer/init-udev-devices, src/sbin/init: Create/remove normal device names as well as devfs names. [ Frans Pop ] * Remove countcpus-linux-x86 as it never really worked and is no longer needed with smp-alternatives enabled in the kernel for 2.6.17. * Add /etc/profile to set VT2 in UTF-8 mode if needed. * Make shell on VT2 a login shell so that /etc/profile will be sourced. * Set LANG and LANGUAGE to sensible defaults always; should fix dialogs in some cases where localechooser is not run (e.g. country selection lists on S/390). -- Frans Pop Wed, 23 Aug 2006 00:03:20 +0200 rootskel (1.34) unstable; urgency=low [ Frans Pop ] * Also create lib64 symlink for ppc64. Closes: #365203. * Add missing dependency on debconf. * Add Lintian override for standards-version. * Add myself to uploaders. [ Sven Luther ] * Add support for /dev/hvsi* (non-virtual) serial consoles on recent IBM POWER machines in detect-console-linux. Closes: #382254. -- Frans Pop Tue, 15 Aug 2006 02:54:25 +0200 rootskel (1.33) unstable; urgency=low [ Joey Hess ] * Add a debugshell in abort. [ Colin Watson ] * Allow for non-devfs-style console device names in detect-console-linux. [ Sven Luther ] * Add support for /dev/hvc* virtual serial consoles on recent IBM POWER machines in detect-console-linux. Closes: #375499. -- Frans Pop Fri, 30 Jun 2006 15:23:24 +0200 rootskel (1.32) unstable; urgency=low * Don't start bterm when running the gtk frontend. -- Colin Watson Fri, 26 May 2006 13:25:35 +0100 rootskel (1.31) unstable; urgency=low [ Martin Michlmayr ] * sb1-swarm-bn has been renamed to sb1-bcm91250a. -- Martin Michlmayr Fri, 17 Mar 2006 22:25:50 +0000 rootskel (1.30) unstable; urgency=low * Add S01module-params startup script which parses the kernel command line for things of the form module.param=value and calls register-modules -a -p to make the parameters get used when the modules are later loaded. This allows passing parameters in the same form used for parameters of modules that are built into the kernel, and have them take effect with modules loaded by eg, udev. Closes: #353942, #284425 * Needs di-utils 1.24. -- Joey Hess Wed, 15 Mar 2006 14:59:03 -0500 rootskel (1.29) unstable; urgency=low [ Colin Watson ] * Don't panic init if a debug shell exits non-zero. * The new update-dev that handles udev has been around for a while, so use it and drop old calls to udevstart/udevsynthesize. [ Frans Pop ] * S40term-linux: also set a default LANGUAGE so we get English translations instead of codes for templates that have a coded choices list. -- Frans Pop Wed, 25 Jan 2006 19:22:21 +0100 rootskel (1.28) unstable; urgency=low * Mount a tmpfs on /dev in init-udev-devices, and mount /proc slightly earlier in the initramfs init; this makes the bind mount to /.dev work properly in the initramfs case. -- Colin Watson Thu, 1 Dec 2005 13:39:22 +0000 rootskel (1.27) unstable; urgency=low * Redo MENU change, but remember to export it this time. -- Tollef Fog Heen Tue, 29 Nov 2005 09:07:24 +0100 rootskel (1.26) unstable; urgency=low * Revert MENU change that caused it not to be set in the part of rootskel that uses it and broke d-i boot. -- Joey Hess Tue, 29 Nov 2005 00:46:48 -0500 rootskel (1.25) unstable; urgency=low [ Colin Watson ] * After calling reboot or halt, sleep for a bit if possible to try to ensure that init always has a chance to kill main-menu before it runs the next menu item. [ Tollef Fog Heen ] * Make it possible to override what menu to use by passing it in the MENU environment variable. -- Tollef Fog Heen Mon, 28 Nov 2005 14:03:32 +0100 rootskel (1.24) unstable; urgency=low [ Frans Pop ] * In S60frontend only allow the gtk frontend if framebuffer is available and the system has sufficient memory (for now: 92 MiB). [ Colin Watson ] * src/lib/debian-installer/init-udev-devices: Skip creating devices and directories if they already exist. * Discard stderr when trying to load fan and thermal, to avoid noise on machines without those devices. * Look for udevd rather than udevstart to decide whether to do udevish things; udevstart has gone away. * If udevstart is missing, try udevsynthesize instead to attempt to encourage udev to settle after loading framebuffer modules. * Drop S02udev startup script (provided by udev-udeb) and ship S02udev-fixup instead to arrange for /.dev to be mounted for programs that still care. [ Sven Luther ] * Adapted to chrp_rs6k -> chrp_ibm transition. -- Joey Hess Wed, 16 Nov 2005 18:29:30 -0500 rootskel (1.23) unstable; urgency=low [ Joey Hess ] * Reorder some stuff in S01umount to make sure /dev is mounted before trying to write to /dev/null. (For takeover installs.) * /dev/null freeramdisk stderr * Formatting and whitespace improvements. [ Colin Watson ] * Load AT keyboard modules on powerpc/chrp_rs6k (closes: #332248). * Stop trying to install env2debconf; it was moved to debian-installer-utils (and thence to preseed) a while ago. -- Colin Watson Tue, 11 Oct 2005 14:20:08 +0100 rootskel (1.22) unstable; urgency=low * src-bootfloppy/init: export PATH. Closes: #328729. Necessary because busybox sh sets but does not export PATH anymore. * src/init, src/sbin/init: export PATH here too, for good measure. -- Joey Hess Wed, 21 Sep 2005 17:28:00 +0200 rootskel (1.21) unstable; urgency=low [ Joey Hess ] * Split locale out into a new installation-locale package. * Move link_in_boot template to base-installer. * Needs base-installer 1.23 and installation-locale. * Support running d-i from a ramfs if tmpfs and shmfs fail, for custom kernels that happen to use ramfs. * Support booting systems w/o devfs support with kernels newer than 2.2, for userdevfs for 2.4 kernels. [ Colin Watson ] * Minor udev startup script updates from the real udev package. -- Joey Hess Mon, 15 Aug 2005 18:06:58 -0400 rootskel (1.20) unstable; urgency=low * Build-depend on new version of locales and rebuild, as the data format has changed and rootskel-locale needs to match the glibc of the d-i image build systems. -- Joey Hess Fri, 5 Aug 2005 19:27:33 -0400 rootskel (1.19) unstable; urgency=low * Add boot scripts for x86 and alpha to grep dmesg for strings indicating an SMP machine and store this info in /var/numcpus for later use by base-installer. This avoids the info being lost when the ring buffer overflows. * For x86, use the same method used previously for amd64 of looking for "WARNING: NR_CPUS limit of 1 reached." to detect a non-smp kernel running on a smp machine. Tested to work with 2.6.8 on i386. -- Joey Hess Thu, 4 Aug 2005 13:58:15 -0400 rootskel (1.18) unstable; urgency=low * Make BOOT_DEBUG work for the main initrd, not only for the floppy initrd. * Add debug shells right after boot. -- Joey Hess Sun, 17 Jul 2005 16:02:45 +0300 rootskel (1.17) unstable; urgency=low * Fix initramfs init script (proc and dev exist already, don't make). -- Joey Hess Tue, 5 Jul 2005 22:21:19 +0300 rootskel (1.16) unstable; urgency=low * Colin Watson - Fix hotplug script ordering. -- Colin Watson Thu, 30 Jun 2005 13:10:02 +0100 rootskel (1.15) unstable; urgency=low * Colin Watson - Cope with non-devfs path to framebuffer device (/dev/fb0). - Support init= boot parameter in initramfs. - dpkg-architecture >= 1.13.2 changed the semantics of DEB_HOST_GNU_*. Use DEB_HOST_ARCH_* instead, and add compatibility code for old dpkg-architecture. * Joey Hess - Remove unused /floppy entry from fstab. - Move env2debconf command to di-utils (1.10) in a vain attempt to make this package a little bit more of a skeleton again. - Add a TODO file with my ideas of what needs to be done with this package. - debian-installer/kernel/commandline moved to s390-dasd (0.0.11) since it's only used on s390. Upload s390-dasd when uploading this package. - Remove debian-installer/kernel/subarchitecture template, everything uses the archdetect command now. - S30read-environment moved to env-preseed udeb. -- Joey Hess Mon, 13 Jun 2005 20:59:43 -0400 rootskel (1.14) unstable; urgency=low * Matt Zimmerman - Add a 'restart' action to the default inittab which re-execs init on receipt of SIGHUP or SIGUSR1. Useful when building a live-CD-style system where you want to switch to a different init part-way through. -- Colin Watson Fri, 6 May 2005 12:49:27 +0100 rootskel (1.13) unstable; urgency=low * Joey Hess - Add (untested) support for calling udevstart in /init for initramfs. - Re-add devfs mount code to boot floppy init, so the boot parameter is not needed. * Colin Watson - Add optional support for hotplug, ported over from Ubuntu. -- Joey Hess Wed, 4 May 2005 14:06:55 -0400 rootskel (1.12) unstable; urgency=low NOTE: not for sarge, needs base-installer 1.14 and is generally scary. * Joey Hess - Backed off changes from 1.10 regarding ia64 keyboard modules, since they're built back into the kernel now for 2.6 and 2.4. - Removed psmouse register-module code for ia64 and powerpc, moving this back to ddetect. - Add a simple /init to support initramfs images. At least for now, initramfs is used as the filesystem for the entire d-i run. - Shut up /initrd umount code, since there is no /initrd with initramfs. - Moved unifont.bgf to lib. Needs bterm-unifont 1.0 Closes: #212981 * Martin Michlmayr - Use the noinit=0 parameter when loading the matroxfb_base module, otherwise it won't work on MIPS. Thanks, Peter 'p2' De Schrijver. * Colin Watson - Linux 2.6.9 and above doesn't return proper errors when 'modprobe vesafb' fails, so check that /proc/fb is non-empty as well. - Add optional support for udev, ported over from Ubuntu. I'm not yet sure if this will work without hotplug ... -- Joey Hess Mon, 10 Jan 2005 15:47:55 -0500 rootskel (1.11) experimental; urgency=low NOTE: not for sarge, needs base-installer 1.14. * Colin Watson - Remove hardcoded path to debconf-loadtemplate. * Joey Hess - Move templates to base-installer that are only used by base-installer and frequently need updated, so are best not put on d-i initrds: debian-installer/kernel/image, debian-installer/kernel/image-2.6, debian-installer/kernel/linux/initrd, debian-installer/kernel/linux/initrd-2.6. Did not move a few others that are used by more packages than just base-installer. -- Colin Watson Wed, 22 Dec 2004 17:29:50 +0000 rootskel (1.10) unstable; urgency=low * Colin Watson - Do the register-module i8042 and atkbd for powerpc/chrp* and powerpc/prep here rather than in hw-detect; it's too confusing having this spread out over two completely different places. - Might as well register-module psmouse here too. * Joey Hess - Add ps2 keyoard module registration code for ia64 with the 2.6 kernel which has it modular. Also threw in register-module psmouse there. Closes: #283983 -- Joey Hess Sat, 4 Dec 2004 13:25:12 -0500 rootskel (1.09) unstable; urgency=high * Bdale Garbee - hppa 2.6 kernels need do_initrd = Yes -- Bdale Garbee Thu, 11 Nov 2004 23:10:01 -0700 rootskel (1.08) unstable; urgency=high * Bdale Garbee - give hppa a 2.6 kernel version default -- Bdale Garbee Wed, 10 Nov 2004 16:17:30 -0700 rootskel (1.07) unstable; urgency=high * Joey Hess - Revert change in 1.06, it broke all serial console installs (including English) using non-linux terminals. Reopens: #263137 -- Joey Hess Sun, 17 Oct 2004 16:31:33 -0400 rootskel (1.06) unstable; urgency=low * Kenshi Muto - Enable UTF-8 on serial console. (closes: #263137) This change solves lock up of non-English installation. -- Kenshi Muto Sun, 17 Oct 2004 15:20:38 +0900 rootskel (1.05) unstable; urgency=low * Stephen R. Marenka - Only check for 2.2 kernel serial console for VMEs, workaround for #269077. -- Joey Hess Wed, 6 Oct 2004 13:24:40 -0400 rootskel (1.04) unstable; urgency=low * Joey Hess - Test for debian-installer/framebuffer in S35framebuffer-linux to allow disabling of the use of the framebuffer with bterm on arches that have the framebuffer built in. Closes: #273378 -- Joey Hess Sun, 3 Oct 2004 13:34:51 -0400 rootskel (1.03) unstable; urgency=low * Jim Lieb - Add 2.6 kernels to ia64 build * Martin Michlmayr - Load framebuffer modules for sb1-swarm-bn on mips/mipsel. * Sven Luther - Load framebuffer modules for tgafb on alpha. -- Joey Hess Mon, 27 Sep 2004 20:50:52 -0400 rootskel (1.02) unstable; urgency=low * Bastian Blank - Update s390 to 2.4.27 kernel. * Bdale Garbee - Update hppa to 2.4.27 kernel. -- Bdale Garbee Tue, 14 Sep 2004 10:38:42 -0600 rootskel (1.01) unstable; urgency=low * dann frazier - Set Default[ia64] to kernel-image-2.4.27-1-itanium-smp (was kernel-image-2.4.25-itanium-smp) * Joshua Kwan - Set initrd/initrd-2.6 to true for sparc. * Joey Hess - Update i386 to 2.4.27 and 2.6.8 kernels. -- Joey Hess Mon, 13 Sep 2004 13:20:07 -0400 rootskel (1.00) unstable; urgency=low * Colin Watson - Install acpi and framebuffer startup scripts on amd64 as well as i386. Rename scripts to match. * Joey Hess - Add the id of the question to the dummy template description so bug reports can be more useful. -- Joey Hess Fri, 10 Sep 2004 11:36:59 -0400 rootskel (0.92) unstable; urgency=low * Joey Hess - Disable printk when displaying the prompt in boot floppy init to avoid ugly delayed usb messages overwriting the prompt. -- Joey Hess Mon, 6 Sep 2004 18:16:26 -0400 rootskel (0.91) unstable; urgency=low * Joey Hess - Add S05acpi-i386 to load fan and thermal modules if available as early as practical in boot to avoid machine meltdown. -- Joey Hess Thu, 19 Aug 2004 20:39:33 +0100 rootskel (0.90) unstable; urgency=low * Joey Hess - env2debconf: Mark preseeded questions as seen to avoid pestering the user with them. -- Joey Hess Thu, 19 Aug 2004 16:22:43 +0100 rootskel (0.89) unstable; urgency=low * Wouter Verhelst - move /lib/debian-installer.d/S30term-linux to /lib/debian-installer/detect-console; create new S30term-linux which sources detect-console. This is so that we can use it in different places. - Source the above created file in /sbin/init right before starting busybox init in the 2.2 scenario, and remove /dev/vc/[2-5] when running on a serial console. The above two changes should make serial console work on 2.2 systems. * Bastian Blank - Fix the above changes for work with special cases, like s390. - Load framebuffer modules only once. - Check debian-installer/framebuffer only once. - Don't set DEBIAN_FRONTEND in startup code. - Always export DEBIAN_FRONTEND. * Joey Hess - i386 is at 2.6.7 now, not 2.6.5. * Martin Michlmayr - Surpass a bogus warning when trying to unmount /initrd/dev. - Set debian-installer/kernel/linux/link_in_boot to true on ARM. -- Joey Hess Tue, 17 Aug 2004 16:36:18 +0100 rootskel (0.88) unstable; urgency=low * Bastian Blank - Fix installer entry in passwd. -- Bastian Blank Thu, 22 Jul 2004 10:36:12 +0200 rootskel (0.87) unstable; urgency=low * Bastian Blank - Fix usage of return codes. * Colin Watson - Install S35framebuffer-linux again. -- Colin Watson Tue, 20 Jul 2004 13:47:48 +0100 rootskel (0.86) unstable; urgency=low * Bastian Blank - Make sure that debconf exits before we mount readonly. - Load framebuffer module only once and only on virtual terminal (closes: #259950). - Don't overwrite terminal type if there is one set. - Never use output of scripts which may start debconf. * Thiemo Seufer - Don't show umount non-error in sbin/init. -- Bastian Blank Sun, 18 Jul 2004 21:07:16 +0200 rootskel (0.85) unstable; urgency=low * Bastian Blank - Use small syslog output. Needs busybox-cvs 20040623-1. - Allow the exit code of debconf be non null. - Reboot/halt machine if asked to do so. * Joshua Kwan - Alias usb-ohci and usb-uhci to their respective *-hcd names when on 2.6, by writing to modules.conf. -- Bastian Blank Sat, 10 Jul 2004 19:16:13 +0200 rootskel (0.84) unstable; urgency=low * Joey Hess - Minor output fix. -- Joey Hess Wed, 7 Jul 2004 10:45:39 -0400 rootskel (0.83) unstable; urgency=low * Kenshi Muto - Brush up fbcon / vga16fb loading routine. -- Kenshi Muto Wed, 7 Jul 2004 21:22:01 +0900 rootskel (0.82) unstable; urgency=low * Joey Hess - Load vesafb and vga16fb in paris along with fbcon, and don't assume it works until both load successfully. Closes: #257970 -- Joey Hess Tue, 6 Jul 2004 22:33:13 -0400 rootskel (0.81) unstable; urgency=low * Colin Watson - Load AT keyboard modules only on powerpc chrp, chrp_pegasos, and prep. -- Colin Watson Mon, 5 Jul 2004 22:47:34 +0100 rootskel (0.80) unstable; urgency=low * Kenshi Muto - Fix src/debian-installer.d/Makefile (Revert S33framebuffer-module-linux-i386 for i386) (Closes: #257687) -- Colin Watson Mon, 5 Jul 2004 16:10:58 +0100 rootskel (0.79) unstable; urgency=low * Bastian Blank - Move startup code from lib/debian-installer.d and etc/rcS.d to lib/debian-installer-startup.d. * Colin Watson - Load i8042 and atkbd modules on powerpc 2.6. Some subarchitectures require them. - Remove null from debian-installer-startup in inittab; Bastian says "it is only able to hide problems". * Stephen R. Marenka - Fix sbin/init to run busybox init for 2.2 kernels. * Joshua Kwan - Symlink lib to lib64 to unhork amd64 images. Patch by Kurt Roeckx (Closes: #256738) -- Colin Watson Fri, 2 Jul 2004 12:05:29 +0100 rootskel (0.78) unstable; urgency=low * Bastian Blank - debian-installer/kernel/linux/link_in_boot defaults to true. - Remove debian-installer/kernel/linux/devfs. - Revert frontend detection change and set DEBIAN_FRONTEND to none. -- Bastian Blank Sun, 27 Jun 2004 20:23:24 +0200 rootskel (0.77) unstable; urgency=low * Bastian Blank - Add source directories for rootskel-bootfloppy and rootskel-locale. - Remove unused linuxrc files. - Add terminal definitions for /dev/pts/*. - Add support for different menues, used by network-console. * Martin F. Krafft - klogd reads the entire buffer, so running dmesg at sysinit is unnecessary. * Mario Lang - Run frontend detection before S25env2debconf (Closes: #256001). -- Colin Watson Sat, 26 Jun 2004 14:12:47 +0100 rootskel (0.76) unstable; urgency=low * Colin Watson - Mount /sys if sysfs is available (2.6). - Add 2.6 initrd template; currently differs only on powerpc. - Add an /etc/nsswitch.conf to force libnss_files for the passwd, group, and shadow databases. - Put kernel symlinks in /boot on powerpc (closes: #241569; requires yaboot-installer 0.0.21). - Add myself to Uploaders. -- Colin Watson Thu, 20 May 2004 02:58:56 +0100 rootskel (0.75) unstable; urgency=low * Joey Hess - Break env2debconf out of libdebian-installer so it can source the confmodule, and make it support preseeding questions that do not exist in the initrd but are loaded with later udebs. Closes: #248147 - Removed non-working source failure detection code in sbin/debian-installer. -- Joey Hess Sun, 9 May 2004 11:26:33 -0400 rootskel (0.74) unstable; urgency=low * Joey Hess - Sparc kernels do not use an initrd, so set debian-installer/kernel/linux/initrd to false. - The kernel allows variables like foo="bar baz" to be passed to it, this sets $foo to '"bar baz"' with the double quotes unstripped. When processing debconf variable settings, remove such double quotes. - Update default i386 2.4 kernel to 2.4.26; it's the one on the CDs now. - Update 2.6 kernel to 2.6.5, likewise. * Joshua Kwan - Disable framebuffers for sparc64 by including a Default[sparc] for debian-installer/framebuffer. -- Joey Hess Tue, 4 May 2004 23:40:57 -0400 rootskel (0.73) unstable; urgency=low * Joey Hess - Add info about 2.6 kernel to install. -- Joey Hess Wed, 21 Apr 2004 16:48:16 -0400 rootskel (0.72) unstable; urgency=low * Colin Watson - Mount /dev/pts before starting main-menu. Needed for powerpc 2.6, but should be harmless elsewhere. * Joey Hess - No, we really do want to load unix.ko, thank you. -- Joey Hess Mon, 19 Apr 2004 23:02:20 -0400 rootskel (0.71) unstable; urgency=low * Bastian Blank - Revert loading of the unix module, fix your kernels. -- Bastian Blank Wed, 14 Apr 2004 12:21:34 +0200 rootskel (0.70) unstable; urgency=low * Joey Hess - Manually load unix module before starting syslogd. The modules.conf thing won't work with module-init-tools, but is retained to avoid breaking anything by loading the module late. - Fix a broken redirection. -- Joey Hess Tue, 13 Apr 2004 21:03:02 -0400 rootskel (0.69) unstable; urgency=low * Joey Hess - Try to load fbcon after vga16fb, it's needed on 2.6. -- Joey Hess Tue, 13 Apr 2004 20:50:30 -0400 rootskel (0.68) unstable; urgency=low * Stephen R. Marenka - Set debian-installer/kernel/linux/initrd to false for m68k. -- Joey Hess Wed, 31 Mar 2004 16:57:45 -0500 rootskel (0.67) unstable; urgency=low * Thiemo Seufer - Set debian-installer/kernel/linux/initrd to false for mips, mipsel. * Bastian Blank - Remove unused templates. -- Joey Hess Mon, 22 Mar 2004 15:17:19 -0500 rootskel (0.66) unstable; urgency=low * Updated the default kernel images for i386, s390, and ia64 to the ones currently used by linux-kernel-di. -- Joey Hess Thu, 11 Mar 2004 00:49:09 -0500 rootskel (0.65) unstable; urgency=low * Bastian Blank - Fix installation of s390 specific files. - Always set DEBIAN_FRONTEND to text on s390. * Joey Hess - Delete templates files after loading them, to free up some memory. -- Joey Hess Mon, 8 Mar 2004 16:49:56 -0500 rootskel (0.64) unstable; urgency=low * Joey Hess - apt-install, anna-install, register-module, debconf-get, and debconf-set are all moved to di-utils. * Sylvain Ferriol - In S20templates and di-main-menu, set cdebconf owner to 'd-i'. -- Joey Hess Sat, 21 Feb 2004 15:30:27 -0500 rootskel (0.63) unstable; urgency=low * Petter Reinholdtsen - Make sure apt-install umounts all new mount points when it is done, to avoid install problems when the package 'hotplug' is installed. - In debian-installer.d/S50priority, log when the priority is set or changed. - Detect tmpfs by testing to mount, instead of looking in /proc/filesystems. The latter method is not reliable (Closes: #224656) -- Petter Reinholdtsen Sat, 14 Feb 2004 19:23:58 +0100 rootskel (0.62) unstable; urgency=low * Matt Kraai - Remove the first devfs mount in init.bootfloppy. - Add anna-install. - Add self to Uploaders. * Joey Hess - Update to debhelper v4, use udeb support, simplfy templates creation. -- Matt Kraai Fri, 13 Feb 2004 06:24:54 -0800 rootskel (0.61) unstable; urgency=low * Bastian Blank - Always chroot the apt-get call, avoids problems with reduced or missmatching libc. * Joey Hess - Remove dummy ldconfig as the associated bugs are fixed. -- Joey Hess Thu, 5 Feb 2004 16:49:21 -0500 rootskel (0.60) unstable; urgency=low * Change the kernel for i386 to 2.4.24. -- Joey Hess Thu, 29 Jan 2004 16:25:19 -0500 rootskel (0.59) unstable; urgency=low * Richard Hirst - Change ia64 default kernel to 2.4.22-itanium-smp * Bastian Blank - Always fail on error. - Fix file list in src/etc/rcS.d. -- Bastian Blank Sun, 25 Jan 2004 19:13:18 +0100 rootskel (0.58) unstable; urgency=low * Karsten Merker - fix TERM_TYPE detection for serial console on systems which boot on serial console with "console=ttyS*" * Matt Kraai - Create /var/run. * Joey Hess - Remove the last vestiges of /linuxrc support, including S05init-pid. - Remove apt-update, only base-installer used it, and it no longer does. - Misc minor changes to apt-install. * Stephen R. Marenka - Modified /sbin/init and /etc/init.d/rcS to support kernel 2.2.x. (Closes: #224758) -- Joey Hess Thu, 22 Jan 2004 19:38:43 -0500 rootskel (0.57) unstable; urgency=low * Joey Hess - Add myself to uploaders. * Thiemo Seufer - Fix src/sbin/init for machines without initrd. -- Joey Hess Mon, 15 Dec 2003 13:00:03 -0500 rootskel (0.56) unstable; urgency=low * Patch from Jeremie Koenig to make the inits use tmpfs if it is present, while falling back to shmfs for those arches still using 2.2 kernel. The patch also tells tmpfs to use a max size of 100 mb, which is a better value for d-i on lowmem machines than the default of 1/2 of ram. Closes: #219528 * If there's no frame buffer, then unifont.bgf is not needed, and it's huge, so delete it to save memory (2.4 mb!) -- Joey Hess Mon, 15 Dec 2003 12:59:57 -0500 rootskel (0.55) unstable; urgency=low * Thiemo Seufer - Let src/sbin/init panic on errors, and rewrite it a bit more efficiently. * Joey Hess - Make init unmount the original initrd before doing the pivot_root so they don't stack up and freeramdisk can work (if we had it). Closed: #218602 -- Joey Hess Sun, 14 Dec 2003 15:25:17 -0500 rootskel (0.54) unstable; urgency=low * Add a register-module command, similar to apt-install, which queues modules for entry into /target/etc/modules and /target/etc/modutils/local. Does not yet handle 2.6 modutils. Should only be used for modules that discover does not find, or that have special parameters. * Add debian-installer/framebuffer and only enable frame buffer if it is true. * Add a S25env2debconf in debian-installer.d, that finds environment variables in the form foo/bar=baz, and uses these special ones to set debconf values in the db. This allows booting with any d-i debconf values on the command line, to override *anything*. For example -- boot: debian-installer/framebuffer=false * Fixed debconf-get to not output value on stderr, and not clear screen either. But it is insanely gross and expensive now, and should be moved to cdebconf and rewritten. -- Joey Hess Wed, 3 Dec 2003 01:50:23 -0500 rootskel (0.53) unstable; urgency=low * rootskel.bootfloppy: deal better with the ram disk filling up * pipe_progress should always be available now * broke out abort function -- Joey Hess Wed, 19 Nov 2003 13:45:31 -0500 rootskel (0.52) unstable; urgency=low * INSTALL_MEDIA_DEV only controls the bootfloppy init scipt now, not the floppy retreiver later. * Added disk.lbl support to the bootfloppy init script. Now it can recognise when the wrong disk is put in, without the hack of looking for a vmlinuz file. -- Joey Hess Thu, 13 Nov 2003 20:21:38 -0500 rootskel (0.51) unstable; urgency=low * Priority of rootskel-bootfloppy should be extra. -- Joey Hess Wed, 12 Nov 2003 22:43:09 -0500 rootskel (0.50) unstable; urgency=low * Based on several reports of kernel oopses on Sony Vaios when scanning for the second floppy, only scan after the user hits enter. * Let the user enter a command, set a shell variable, etc, at the prompt. -- Joey Hess Sun, 9 Nov 2003 20:29:34 -0500 rootskel (0.49) unstable; urgency=low * Gaudenz Steinlin - set debian-installer/kernel/linux/initrd to false on powerpc -- Petter Reinholdtsen Sat, 8 Nov 2003 19:44:39 +0100 rootskel (0.48) unstable; urgency=low * Improved the debian-installer.d error handling. Now it tells which script failed and how, and only pauses if there was a real failure. * debian-installer.d scriptlets are now required to be set -e safe (and so audited) -- Joey Hess Thu, 23 Oct 2003 00:02:00 -0400 rootskel (0.47) unstable; urgency=low * init.bootfloppy can delete its own tmp-initrd file, remove deletion of that from rcS. * Fix initrd unmounting in init.bootfloppy. * Clean up the rules file. -- Joey Hess Tue, 21 Oct 2003 18:13:09 -0400 rootskel (0.46) unstable; urgency=low * Fix accidential reversion of {init,linuxrc}.bootfloppy when it was renamed. Adds back all changes made to that file in 0.43 and 0.44. -- Joey Hess Tue, 21 Oct 2003 15:58:20 -0400 rootskel (0.45) unstable; urgency=low * Goswin von Brederlow - move and adapt /linuxrc* /sbin/init* -- Joey Hess Fri, 17 Oct 2003 17:53:39 -0400 rootskel (0.44) unstable; urgency=low * Add a progress display while loading the second floppy, by using the pipe_progress program from di-utils-bootfloppy. * SInce di-utils-bootfloppy may not be in the archive yet, fall back to old behavior if pipe_progress is not present. -- Joey Hess Fri, 17 Oct 2003 17:53:39 -0400 rootskel (0.43) unstable; urgency=low * Joey Hess - dev/null modprobes in linuxrc.bootfloppy - linuxrc.bootfloppy sets INSTALL_MEDIA_DEV to point to the device the initrd was loaded from. (I'd use a debconf variable if I had it..) This can then be used by the floppy retreiver, iso-scan, etc. - Also, use INSTALL_MEDIA_DEV as a boot parameter, to make it only scan a given device. Could be useful if scanning some devices panics the kernel. - Update the default kernel on i386 to 2.4.22. -- Joey Hess Tue, 14 Oct 2003 16:11:00 -0400 rootskel (0.42) unstable; urgency=low * Joey Hess - put in a delay .. er, prompt .. at the end of the debian-installer command, to allow time to read error messages if it is failing -- Joey Hess Sun, 12 Oct 2003 20:54:11 -0400 rootskel (0.41) unstable; urgency=low * Bastian Blank - finaly remove unix.o workaround - add subarchitecture template * Richard Hirst - hppa uses 2.4.20, has devfs, and needs link_in_boot * Joey Hess - remove usbfloppy, current indications are it will all fit in the boot floppy - make linuxrc.bootfloppy loop cleanly if it cannot load a bad floppy - added usb support to linuxrc.bootfloppy - clean up BOOT_DEBUG numbers - don't sleep before first pass -- Joey Hess Mon, 29 Sep 2003 15:09:03 +0200 rootskel (0.40) unstable; urgency=low * Petter Reinholdtsen - Update apt-install to avoid matching substrings when checking if the package already is requested for installation. - Detect and keep going if linuxrd pid is not found. - Try to mount proc and devfs in rcS.d if not done already. - Ignore errors when loading the framebuffer modules in S33framebuffer-module-linux-i386. * Joey Hess - Change bootfloppy initrd to use BOOT_DEBUG, not DEBCONF_DEBUG. -- Petter Reinholdtsen Sun, 28 Sep 2003 10:27:33 +0200 rootskel (0.39) unstable; urgency=low * Joey Hess - Add initrd to rootskel image, instead of requiring the linuxrc make it. - Add two new udebs, for the new bootfloppy and usbfloppy images. (usbfloppy is not 100% there yet, bootfloppy is) - Removed usbfloppy from control until it's done. - Boot floppies are not too large any more. Closes: #207409 -- Petter Reinholdtsen Sat, 27 Sep 2003 14:16:28 +0200 rootskel (0.38) unstable; urgency=low * Steinar H. Gunderson - Make apt-install ensure a package is never added twice to the queue, wasting less time at queue processing time. (Closes: #212785) -- Petter Reinholdtsen Sat, 27 Sep 2003 13:17:58 +0200 rootskel (0.37) unstable; urgency=low * Chris Tillman - Give full path to chroot in /linuxrc (Closes: Bug#211260). -- Mario Lang Tue, 23 Sep 2003 17:28:58 +0200 rootskel (0.36) unstable; urgency=low * Denis Barbier - Rename debian/templates into debian/templates-arch because this file does not have to be translated and it caused rootskel to be listed under www.d.o/intl/l10n/ * Bastian Blank - files in lib/debian-installer.d are neither shell scripts nor executable. -- Petter Reinholdtsen Tue, 9 Sep 2003 20:52:37 +0200 rootskel (0.35) unstable; urgency=low * Add dummy ldconfig to work around bug #203056. -- Petter Reinholdtsen Mon, 28 Jul 2003 23:22:45 +0200 rootskel (0.34) unstable; urgency=low * Joey Hess - Ensure files in lib/debian-installer.d are shell scripts. :-P (Closes: #201740) - Remove myself to uploader. * Alastair McKinstry - true != yes in bash! fix /lib/debian-installer.d scripts to understand this. -- Petter Reinholdtsen Mon, 21 Jul 2003 08:38:40 +0200 rootskel (0.33) unstable; urgency=low * Alastair McKinstry - Ensure files in lib/debian-installer.d are executable. * Joey Hess - Install /var/log/messages so tail has something to tail. - Add me to uploaders. -- Joey Hess Fri, 10 Oct 2003 17:59:32 -0400 rootskel (0.32) unstable; urgency=low * New kernel related arch variable debian- installer/kernel/linux/link_in_boot used on sparc. -- Petter Reinholdtsen Sun, 22 Jun 2003 14:00:50 +0200 rootskel (0.31) unstable; urgency=low * Petter Reinholdtsen - Insert the pid of linuxrc (init) into /proc/sys/kernel/cad_pid to make sure the kernel signal the correct process on Alt-Ctrl-Del. (Closes: #181271) * Bastian Blank - add -c 2 to klogd, makes it incompatible to stable busybox - fix the alt-ctrl-del pid -- Petter Reinholdtsen Tue, 3 Jun 2003 23:39:41 +0200 rootskel (0.30) unstable; urgency=low * Bastian Blank - revert /linuxrc. (Closes: #193951) - export variables - make modprobe quiet -- Bastian Blank Sat, 24 May 2003 13:54:03 +0200 rootskel (0.29) unstable; urgency=low * Bastian Blank - execute /sbin/init instead of /linuxrc. - use etc/rcS.d - use lib/debian-installer.d - we want escapes, use echo -ne - reorganize utf8 and framebuffer for linux * Petter Reinholdtsen - Remove workaround for broken cdebconf in debconf-{set,get}. The latest cdebconf will start the frontend from /usr/share/debconf/confmodule. * Alastair McKinstry - Ensure main-menu loops if bterm killed by a HUP signal. -- Petter Reinholdtsen Sun, 18 May 2003 18:33:45 +0200 rootskel (0.28) unstable; urgency=low * Alastair McKinstry - Insert code to use framebuffer if available. - Use bterm if it is available. - Remove TERM=xterm hack, as the new slang version should work in UTF-8 mode (bug #187704). * Petter Reinholdtsen - Rewrite the code to enable framebuffer and bterm, to make sure it is enabled only if all required parts are available. - Only disable UTF-8 mode in the console if it was enabled by us. - Only turn off console blanking if TERM=linux. - Drop useless depend lines in the control file. - Split out the C.UTF-8 locale into separate package rootskel-locale. -- Petter Reinholdtsen Wed, 23 Apr 2003 10:59:08 +0200 rootskel (0.27) unstable; urgency=low * Petter Reinholdtsen - Upgrade default kernel on i386 from 2.4.20-386 to 2.4.20-1-386. - Disable UTF-8 mode in the console when main-menu exits. -- Petter Reinholdtsen Fri, 11 Apr 2003 11:20:55 +0200 rootskel (0.26) unstable; urgency=low * Petter Reinholdtsen - Stop including empty /var/lib/apt-install/queue in the package. It will replace the existing queue if rootskel is upgraded by anna. - Fix broken 'clean' target, now it is able to remove the build-tree. - Make sure the locale is only built once. (Closes: #187960) -- Petter Reinholdtsen Tue, 8 Apr 2003 22:14:31 +0200 rootskel (0.25) unstable; urgency=low * Petter Reinholdtsen - Reorganize build rules to work around bug in fakeroot on arm and m68k. (Closes: #187960) -- Petter Reinholdtsen Mon, 7 Apr 2003 22:49:25 +0200 rootskel (0.24) unstable; urgency=low * Petter Reinholdtsen - New helper scripts debconf-set and debconf-get, for use by scripts which can't include /usr/share/debconf/confmodule. - Use DEBCONF_PRIORITY to set debconf template instead of passing it to debconf directly. This makes it possible for main-menu to change it at run time. - Use new helper scripts to add support for HTTP proxy in apt-update and apt-install. (Closes: #185114). - Make sure /var/lib/apt-install/queue is a complete list of all packages installed by apt-install. -- Petter Reinholdtsen Sun, 6 Apr 2003 21:15:18 +0200 rootskel (0.23) unstable; urgency=low * Petter Reinholdtsen - Set TERM=xterm in UTF-8 mode to get lines as borders in the newt frontend. - Rename locale used from C@utf-8 to C.UTF-8. The name should follow the form of the other UTF-8 locales. - Print /var/log/syslog on tty4, instead of /proc/kmsg. * Bastian Blank - Add devfs templates. - Add linux prefix to linux only templates. -- Petter Reinholdtsen Sun, 6 Apr 2003 09:38:49 +0200 rootskel (0.22) unstable; urgency=low * Split the starting of main-menu into separate script, to make it easier to start it in a separate terminal. * Add code in /sbin/debian-installer to turn on UTF-8 mode when the terminal is the linux console. -- Petter Reinholdtsen Sun, 16 Mar 2003 21:17:02 +0100 rootskel (0.21) unstable; urgency=low * Matt Kraai - Load unix.o as early as possible. * Petter Reinholdtsen - Upgraded Standards-Version from 3.5.6.0 to 3.5.8. - Tried to add support for http proxy in apt-update and apt-install. The code failed when called from base-installer and kernel-installer, so it is currently commented out. - Copied debian/C-at-utf-8.in from boot-floppies/utilities/bogl/C-at-utf-8.in, and use it to generate C@utf-8 locale and set LANG=C@utf-8 if it exists. Added locales to build-depend as it is needed to generate the locale. - Unset LANG=C@utf-8 when doing chroot /target in apt-update and apt-install. The locale is not available in /target/. -- Petter Reinholdtsen Sat, 15 Mar 2003 19:54:35 +0100 rootskel (0.20) unstable; urgency=low * Martin Sjögren - Add the newt frontend to the list, before slang. -- Petter Reinholdtsen Tue, 4 Mar 2003 16:50:37 +0100 rootskel (0.19) unstable; urgency=low * Petter Reinholdtsen: - Change $* to $@ in apt-install. * Tollef Fog Heen - Make /etc/mtab a symlink to /proc/mounts -- Tollef Fog Heen Fri, 21 Feb 2003 16:44:52 +0100 rootskel (0.18) unstable; urgency=low * Correct DEBCONF_FRONTEND to DEBIAN_FRONTEND in comment in sbin/debian-installer. * Try to get Alt-Ctrl-Del working by moving the code to execute from /etc/inittab to /sbin/shutdown, and adding 'reboot' at the end of this new script. * Move apt-install and apt-update from base-installer into this package. -- Petter Reinholdtsen Sun, 9 Feb 2003 20:26:40 +0100 rootskel (0.17) unstable; urgency=low * Correct template-build.pl, to always include the last template. It was skipping the last entry unless there was an empty line at the end of the templates file. -- Petter Reinholdtsen Sat, 8 Feb 2003 09:11:52 +0100 rootskel (0.16) unstable; urgency=low * Petter Reinholdtsen - Add code to choose frontend dynamically on startup and when main-menu exits based on the available frontends. They are choosen in priority order gtk, slang, text. - Add myself as uploader. -- Petter Reinholdtsen Sun, 26 Jan 2003 14:46:24 +0100 rootskel (0.15) unstable; urgency=low * Bastian Blank - rewrite template building, supports defaults values. - add initrd option. * Richard Hirst - add kernel image and initrd settings for hppa * Petter Reinholdtsen - Change maintainer to debian-boot@lists.debian.org, and make the old maintainer an uploader. Added Tollef Fog Heen as uploader. - Set default for debian-installer/kernel/image to 'kernel-image'. - Change default kernel for i386 from 2.4.19 to 2.4.20. -- Petter Reinholdtsen Thu, 16 Jan 2003 12:02:17 +0100 rootskel (0.14) unstable; urgency=low * Ignore module load request for net-pf-1, nls_iso8859-1 and nls_cp437. The config was moved from cdrom-detect. -- Tollef Fog Heen Sat, 7 Dec 2002 16:10:06 +0100 rootskel (0.13) unstable; urgency=low * Denis Barbier - replace Default-arch by Default[arch] in template in order to prevent confusion with localized fields. -- Tollef Fog Heen Thu, 5 Dec 2002 00:58:48 +0100 rootskel (0.12) unstable; urgency=low * Bastian Blank - add template with arch specific default values. - src/etc/init.d/rc.S - syslogd logs to /var/log/syslog - start klogd - add src/etc/modules.conf * Bdale Garbee - add ia64 lines to templates * Tollef Fog Heen - load unix.o if it is available. -- Tollef Fog Heen Tue, 26 Nov 2002 04:07:59 +0100 rootskel (0.11) unstable; urgency=low * Run the scripts in /etc/rcS.d on bootup, if available. * Petter Reinholdtsen: - Add simple group and passwd files with root entries to avoid some warnings from debootstrap. * waldi: remove virtual console hack -- Tollef Fog Heen Thu, 14 Nov 2002 02:06:05 +0100 rootskel (0.10) unstable; urgency=low * Make the inittab use the default console instead of /dev/vc/1 and such. -- Tollef Fog Heen Wed, 6 Nov 2002 01:40:39 +0100 rootskel (0.09) unstable; urgency=low * Create /usr/lib/prebaseconfig.d. * waldi: add support for archs without virtual consoles. * fix fstab to point to the real floppy device -- Tollef Fog Heen Thu, 24 Oct 2002 02:12:47 +0200 rootskel (0.08) unstable; urgency=low * Turn off console blanking, since it seems like it confuses users. * Get rid of emacs cruft at the end of the changelog. * Get rid of silly references to configure target. * Don't mknod -- we use devfs -- Tollef Fog Heen Sun, 18 Aug 2002 15:42:04 +0200 rootskel (0.07) unstable; urgency=low * Use shm, not tmpfs (filesystem was renamed). Closes: #124008 -- Joey Hess Fri, 14 Dec 2001 14:19:22 -0500 rootskel (0.06) unstable; urgency=low * Switched from ramfs to tmpfs since it's in the standard Debian kernel. * Added /dev/console and /dev/tty1 to the package. * Don't use DEBCONF_FRONTEND to override the choice of cdebconf.conf -- Raphael Hertzog Wed, 1 Aug 2001 16:06:35 +0200 rootskel (0.05) unstable; urgency=low * Added a new linuxrc, which sets up a ramfs filesystem, copys the installer into it, pivot_roots so its the new root, ensures proc and dev are mounted, and runs busybox init. * Made rcS clean up by unmounting the initrd, and freeramdisking it (the latter doesn't currently work, may be kernel bug). -- Joey Hess Sun, 25 Mar 2001 18:27:56 -0800 rootskel (0.04) unstable; urgency=low * use devfs -- David Whedon Mon, 12 Feb 2001 19:24:49 -0800 rootskel (0.03) unstable; urgency=low * remove dev stuff form here -- David Whedon Thu, 8 Feb 2001 21:27:10 -0800 rootskel (0.02) unstable; urgency=low * run syslogd -- David Whedon Sun, 4 Feb 2001 20:49:42 -0800 rootskel (0.01) unstable; urgency=low * Initial Release. -- David Whedon Tue, 30 Jan 2001 00:52:08 -0800 rootskel/Makefile0000644000000000000000000000105611774542723011264 0ustar DEB_HOST_ARCH_OS := $(shell dpkg-architecture -qDEB_HOST_ARCH_OS 2>/dev/null) # Take account of old dpkg-architecture output. ifeq ($(DEB_HOST_ARCH_OS),) DEB_HOST_ARCH_OS := $(shell dpkg-architecture -qDEB_HOST_GNU_SYSTEM) endif subdirs = \ src build: build-recursive install: @$(MAKE) install -C src DESTDIR=$(CURDIR)/debian/rootskel/ clean: clean-recursive build-recursive clean-recursive: @target=`echo $@ | sed s/-recursive//`; \ list='$(subdirs)'; \ for subdir in $$list; do \ (cd $$subdir && $(MAKE) $$target) || exit 1; \ done