]> spindle.queued.net Git - xodist/commitdiff
mkchroot: add a debian-lenny-i386 image
authorAndres Salomon <dilinger@collabora.co.uk>
Fri, 29 May 2009 18:57:18 +0000 (14:57 -0400)
committerAndres Salomon <dilinger@collabora.co.uk>
Fri, 29 May 2009 18:57:18 +0000 (14:57 -0400)
This is a small (~300MB) Debian Lenny image for i386 (with a 686 kernel).
No X, it's just a super-quick way to load debian on a machine.

Signed-off-by: Andres Salomon <dilinger@collabora.co.uk>
configs/debian-lenny-i386/DESCRIPTION [new file with mode: 0644]
configs/debian-lenny-i386/hooks [new file with mode: 0644]
configs/debian-lenny-i386/packages [new file with mode: 0644]
configs/debian-lenny-i386/variables [new file with mode: 0644]

diff --git a/configs/debian-lenny-i386/DESCRIPTION b/configs/debian-lenny-i386/DESCRIPTION
new file mode 100644 (file)
index 0000000..22e5cb0
--- /dev/null
@@ -0,0 +1 @@
+This is a generic Debian Lenny image/installer.
diff --git a/configs/debian-lenny-i386/hooks b/configs/debian-lenny-i386/hooks
new file mode 100644 (file)
index 0000000..e470880
--- /dev/null
@@ -0,0 +1,60 @@
+# Default hooks - copy & customize this for a new image build
+#
+# Copyright © 2008-2009  Andres Salomon <dilinger@collabora.co.uk>
+#
+# This file is free software; you can redistribute it and/or modify it
+# under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+# General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+customize_chroot_hook()
+{
+       ROOT_DIR="$1"
+
+       # Any customizations that need to be made to the chroot after the base system
+       # has been installed (but prior to custom package installation) should be
+       # put here.  $ROOT_DIR should be prefixed to any paths.
+
+       # attempt to keep the install footprint small by not installing recommends
+       cat >${ROOT_DIR}/etc/apt/apt.conf<<EOF
+APT::Install-Recommends "false";
+EOF
+
+       # the kernel package's debconf handling is terrible; we need this to
+       # for its installation.
+       echo "linux-image-2.6.26-2-686 linux-image-2.6.26-2-686/preinst/bootloader-initrd-2.6.26-2-686 boolean false" \
+                       | chroot $ROOT_DIR debconf-set-selections
+
+}
+
+package_configure_hook()
+{
+       ROOT_DIR="$1"
+
+       # Any customizations that need to be made after all packages have been
+       # installed should be put here.  $ROOT_DIR should be prefixed to any
+       # paths.
+
+       # No longer a need for xorg.conf
+       rm -f ${ROOT_DIR}/etc/X11/xorg.conf
+
+}
+
+cleanup_chroot_hook()
+{
+       ROOT_DIR="$1"
+
+       # Any customizations that need to be made after the chroot creation is
+       # complete should be put here.  $ROOT_DIR should be prefixed to any
+       # paths.
+
+}
diff --git a/configs/debian-lenny-i386/packages b/configs/debian-lenny-i386/packages
new file mode 100644 (file)
index 0000000..e81527d
--- /dev/null
@@ -0,0 +1,18 @@
+# The list of packages to install onto the image should be listed here
+# (one per line).  Aptitude is used to install these, so there are is no
+# need to explicitly list dependencies.  Packages installed by debootstrap
+# plus a few others (sudo, locales) do not need to be listed here, as they
+# are always installed.
+
+# the backend stuff
+initramfs-tools
+wireless-tools
+alsa-utils
+console-tools
+grub
+linux-image-2.6-686
+
+# the silly i-always-use-this-shit stuff
+less
+psmisc
+openssh-client
diff --git a/configs/debian-lenny-i386/variables b/configs/debian-lenny-i386/variables
new file mode 100644 (file)
index 0000000..0364825
--- /dev/null
@@ -0,0 +1,22 @@
+# DebXO variables
+
+
+# By default, a non-root user is created (with root provided by sudo).  Set
+# the desired username here.
+DEFUSER=debian
+
+# The hostname that the image uses
+IMG_HOSTNAME=debian
+
+# Build architecture (passed to debootstrap)
+IMG_ARCH=i386
+
+# The contents of /etc/apt/sources.list file in the _final_ image.  Note that
+# during the image creation process, a different mirror (ie, a local cache)
+# can be used by supplying --local-apt-mirror.
+APT_SOURCES="deb http://http.us.debian.org/debian/ lenny main
+deb http://security.debian.org/ lenny/updates main"
+
+# The default locale
+IMG_LOCALE="en_US.UTF-8 UTF-8"
+