Compare commits
1 commit
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2daf1080a0 |
13 changed files with 68 additions and 38 deletions
11
README.md
11
README.md
|
|
@ -1,11 +0,0 @@
|
||||||
BabelBox
|
|
||||||
========
|
|
||||||
|
|
||||||
# Overview
|
|
||||||
|
|
||||||
Automated DebianInstaller testing and demo machine
|
|
||||||
|
|
||||||
# Linked links
|
|
||||||
|
|
||||||
+ [BabelBox - Wiki Debian](https://wiki.debian.org/DebianInstaller/BabelBox)
|
|
||||||
+ [BabelBox - Debian Salsa repository](https://salsa.debian.org/installer-team/babelbox)
|
|
||||||
|
|
@ -1,20 +1,22 @@
|
||||||
menuentry 'BabelBox install' --class debian --class gnu-linux --class gnu --class os {
|
menuentry 'Babelbox install' --class debian --class gnu-linux --class gnu --class os {
|
||||||
insmod part_msdos
|
insmod part_msdos
|
||||||
insmod ext2
|
insmod ext2
|
||||||
set root='(hd0,1)'
|
set root='(hd0,0)'
|
||||||
echo 'Loading Linux ...'
|
search --no-floppy --fs-uuid --set 172d7a04-a0ce-4e5a-ac09-a44e1903e0af
|
||||||
linux /srv/vmlinuz video=vesa:ywrap,mtrr vga=788 priority=critical console-keymaps-at/keymap=us keyboard-configuration/xkb-keymap=us file=/hd-media/srv/babelbox/preseed.cfg debian-installer/locale=en_US
|
echo 'Loading Linux 2.6.32-5-686 ...'
|
||||||
|
linux /srv/vmlinuz video=vesa:ywrap,mtrr vga=788 priority=critical console-keymaps-at/keymap=de keyboard-configuration/xkb-keymap=de file=/hd-media/srv/babelbox/preseed.cfg debian-installer/locale=en_US
|
||||||
echo 'Loading initial ramdisk ...'
|
echo 'Loading initial ramdisk ...'
|
||||||
initrd /srv/initrd.gz
|
initrd /srv/initrd.gz
|
||||||
}
|
}
|
||||||
|
|
||||||
menuentry 'BabelBox demo' --class debian --class gnu-linux --class gnu --class os {
|
menuentry 'Babelbox demo' --class debian --class gnu-linux --class gnu --class os {
|
||||||
insmod part_msdos
|
insmod part_msdos
|
||||||
insmod ext2
|
insmod ext2
|
||||||
set root='(hd0,5)'
|
set root='(hd0,4)'
|
||||||
echo 'Loading Linux ...'
|
search --no-floppy --fs-uuid --set 172d7a04-a0ce-4e5a-ac09-a44e1903e0af
|
||||||
linux /vmlinuz root=/dev/sda5 ro quiet
|
echo 'Loading Linux 2.6.32-5-686 ...'
|
||||||
|
linux /boot/vmlinuz-2.6.32-5-686 root=/dev/sda5 ro quiet
|
||||||
echo 'Loading initial ramdisk ...'
|
echo 'Loading initial ramdisk ...'
|
||||||
initrd /initrd.img
|
initrd /boot/initrd.img-2.6.32-5-686
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -29,7 +29,7 @@ if [ $(echo "$LANGSEL" | wc -l) -eq 2 ]; then
|
||||||
else
|
else
|
||||||
# Selected language is the last in the file
|
# Selected language is the last in the file
|
||||||
LANG="$LANGSEL"
|
LANG="$LANGSEL"
|
||||||
NEXTLANG="$(egrep -v '^[[:space:]]*(#.*)?$' langlist | head -n1)"
|
NEXTLANG="$(egrep -v "^[[:space:]]*(#.*)?$" langlist | head -n1)"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
LOCALE=$(echo "$LANG" | cut -d: -f1)
|
LOCALE=$(echo "$LANG" | cut -d: -f1)
|
||||||
|
|
@ -39,7 +39,7 @@ GRUBLINE=$(echo "$LANG" | cut -d: -f4)
|
||||||
sed -i "s/LANGNAME \".*\"/LANGNAME \"$LANGNAME\"/" preseed_early
|
sed -i "s/LANGNAME \".*\"/LANGNAME \"$LANGNAME\"/" preseed_early
|
||||||
|
|
||||||
sed -i "s/locale=.*$/locale=$LOCALE $GRUBLINE/
|
sed -i "s/locale=.*$/locale=$LOCALE $GRUBLINE/
|
||||||
s/^\([[:space:]]*\)set default=\"[[:digit:]]*\"$/\1set default=\"2\"/" $ROOT/boot/grub/grub.cfg
|
s/^set default=.*$/set default=\"2\"/" $ROOT/boot/grub/grub.cfg
|
||||||
|
|
||||||
# Comment out the next three lines if you don't want the language to change
|
# Comment out the next three lines if you don't want the language to change
|
||||||
N_LOCALE=$(echo "$NEXTLANG" | cut -d: -f1)
|
N_LOCALE=$(echo "$NEXTLANG" | cut -d: -f1)
|
||||||
|
|
|
||||||
5
debian/changelog
vendored
Normal file
5
debian/changelog
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
babelbox (0~0) UNRELEASED; urgency=low
|
||||||
|
|
||||||
|
* Initial release. (Closes: #XXXXXX)
|
||||||
|
|
||||||
|
-- Didier Raboud <odyx@debian.org> Tue, 03 Jul 2012 22:20:10 -0600
|
||||||
1
debian/compat
vendored
Normal file
1
debian/compat
vendored
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
8
|
||||||
15
debian/control
vendored
Normal file
15
debian/control
vendored
Normal file
|
|
@ -0,0 +1,15 @@
|
||||||
|
Source: babelbox
|
||||||
|
Section: utils
|
||||||
|
Priority: extra
|
||||||
|
Maintainer: Debian Install System Team <debian-boot@lists.debian.org>
|
||||||
|
Uploaders: Luca Capello <luca@pca.it>, Didier Raboud <odyx@debian.org>
|
||||||
|
Build-Depends:
|
||||||
|
debhelper (>= 8),
|
||||||
|
Standards-Version: 3.9.3
|
||||||
|
Vcs-Browser: http://git.debian.org/?p=d-i/babelbox.git
|
||||||
|
Vcs-Git: git://git.debian.org/d-i/babelbox.git
|
||||||
|
|
||||||
|
Package: babelbox
|
||||||
|
Architecture: any
|
||||||
|
Depends: ${misc:Depends}, debian-installer-netboot-${misc:arch}
|
||||||
|
Description: BabelBox
|
||||||
8
debian/install
vendored
Normal file
8
debian/install
vendored
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
00del_partition /usr/share/babelbox/
|
||||||
|
choose-mirror.postinst /usr/share/babelbox/
|
||||||
|
cronscript /usr/share/babelbox/
|
||||||
|
preseed_early /usr/share/babelbox/
|
||||||
|
preseed_late /usr/share/babelbox/
|
||||||
|
babelbox-grub /usr/share/babelbox/
|
||||||
|
langlist /usr/share/babelbox/
|
||||||
|
preseed.cfg /usr/share/babelbox/
|
||||||
9
debian/rules
vendored
Executable file
9
debian/rules
vendored
Executable file
|
|
@ -0,0 +1,9 @@
|
||||||
|
#!/usr/bin/make -f
|
||||||
|
|
||||||
|
DEB_HOST_ARCH ?= $(dpkg-architecture -qDEB_HOST_ARCH)
|
||||||
|
|
||||||
|
%:
|
||||||
|
dh $@
|
||||||
|
|
||||||
|
override_dh_gencontrol:
|
||||||
|
dh_gencontrol -- -Vmisc:arch="${DEB_HOST_ARCH}"
|
||||||
1
debian/source/format
vendored
Normal file
1
debian/source/format
vendored
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
3.0 (native)
|
||||||
6
langlist
6
langlist
|
|
@ -3,8 +3,8 @@
|
||||||
# The first field must contain a valid locale; the fourth field can
|
# The first field must contain a valid locale; the fourth field can
|
||||||
# optionally contain extra parameters to pass as boot options.
|
# optionally contain extra parameters to pass as boot options.
|
||||||
|
|
||||||
am_ET:x:Amharic
|
am_ET::Amharic
|
||||||
ar_EG::Arabic
|
ar_EG::Arabig
|
||||||
ast_ES::Asturian
|
ast_ES::Asturian
|
||||||
be_BY::Belarusian
|
be_BY::Belarusian
|
||||||
bg_BG::Bulgarian
|
bg_BG::Bulgarian
|
||||||
|
|
@ -70,5 +70,5 @@ tl_PH::Tagalog
|
||||||
tr_TR::Turkish
|
tr_TR::Turkish
|
||||||
uk_UA::Ukrainian
|
uk_UA::Ukrainian
|
||||||
vi_VN::Vietnamese
|
vi_VN::Vietnamese
|
||||||
zh_CN::Chinese (Simplified)
|
zh_CN:X:Chinese (Simplified)
|
||||||
zh_TW::Chinese (Traditional)
|
zh_TW::Chinese (Traditional)
|
||||||
|
|
|
||||||
20
preseed.cfg
20
preseed.cfg
|
|
@ -1,4 +1,4 @@
|
||||||
#### Preseed file for BabelBox
|
#### Preseed file for Babelbox
|
||||||
# See the Installation Guide for other preconfiguration options
|
# See the Installation Guide for other preconfiguration options
|
||||||
|
|
||||||
### Network configuration
|
### Network configuration
|
||||||
|
|
@ -19,10 +19,10 @@ d-i netcfg/dhcp_timeout string 60
|
||||||
#d-i netcfg/disable_dhcp boolean true
|
#d-i netcfg/disable_dhcp boolean true
|
||||||
|
|
||||||
# Static network configuration.
|
# Static network configuration.
|
||||||
d-i netcfg/get_nameservers string 10.0.2.3
|
d-i netcfg/get_nameservers string 192.168.99.1
|
||||||
d-i netcfg/get_ipaddress string 10.0.2.99
|
d-i netcfg/get_ipaddress string 192.168.99.42
|
||||||
d-i netcfg/get_netmask string 255.255.255.0
|
d-i netcfg/get_netmask string 255.255.255.0
|
||||||
d-i netcfg/get_gateway string 10.0.2.2
|
d-i netcfg/get_gateway string 192.168.99.1
|
||||||
d-i netcfg/confirm_static boolean true
|
d-i netcfg/confirm_static boolean true
|
||||||
|
|
||||||
# Any hostname and domain names assigned from dhcp take precedence over
|
# Any hostname and domain names assigned from dhcp take precedence over
|
||||||
|
|
@ -39,9 +39,9 @@ d-i mirror/http/proxy string
|
||||||
|
|
||||||
### Partitioning
|
### Partitioning
|
||||||
# We use the largest free space available and the simple "all in one" recipe
|
# We use the largest free space available and the simple "all in one" recipe
|
||||||
# for BabelBox
|
# for Babelbox
|
||||||
d-i partman-auto/init_automatically_partition select biggest_free
|
d-i partman-auto/init_automatically_partition select biggest_free
|
||||||
d-i partman-auto/choose_recipe select atomic
|
d-i partman-auto/choose_recipe select atomic
|
||||||
|
|
||||||
# This makes partman automatically partition without confirmation.
|
# This makes partman automatically partition without confirmation.
|
||||||
d-i partman/choose_partition select finish
|
d-i partman/choose_partition select finish
|
||||||
|
|
@ -50,7 +50,7 @@ d-i partman/confirm_nooverwrite boolean true
|
||||||
|
|
||||||
### Clock and time zone setup
|
### Clock and time zone setup
|
||||||
# Controls whether or not the hardware clock is set to UTC.
|
# Controls whether or not the hardware clock is set to UTC.
|
||||||
d-i clock-setup/utc boolean true
|
d-i clock-setup/utc boolean false
|
||||||
|
|
||||||
# You may set this to any valid setting for $TZ; see the contents of
|
# You may set this to any valid setting for $TZ; see the contents of
|
||||||
# /usr/share/zoneinfo/ for valid values.
|
# /usr/share/zoneinfo/ for valid values.
|
||||||
|
|
@ -75,14 +75,14 @@ d-i passwd/user-password-again password r00tme
|
||||||
|
|
||||||
### Boot loader installation
|
### Boot loader installation
|
||||||
d-i grub-installer/skip boolean true
|
d-i grub-installer/skip boolean true
|
||||||
d-i lilo-installer/skip boolean true
|
d-i lilo-installer/skip bollean true
|
||||||
|
|
||||||
### Package selection
|
### Package selection
|
||||||
## don't install the desktop task, it takes to long to install
|
## don't install the desktop task, it takes to long to install
|
||||||
tasksel tasksel/first multiselect
|
tasksel tasksel/first multiselect
|
||||||
|
|
||||||
## instead install a quite minimal GNOME setup and desktop-base (for spacefun theme)
|
## instead install a quite minimal GNOME setup and desktop-base (for spacefun theme)
|
||||||
d-i pkgsel/include string gdm3, gnome-session, gnome-icon-theme, desktop-base,
|
d-i pkgsel/include string gdm3, gnome-session, gnome-icon-teme, desktop-base,
|
||||||
xserver-xorg-core, xserver-xorg-input-evdev, xserver-xorg-video-vesa, xserver-xorg
|
xserver-xorg-core, xserver-xorg-input-evdev, xserver-xorg-video-vesa, xserver-xorg
|
||||||
|
|
||||||
# Don't install popcon
|
# Don't install popcon
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
. /usr/share/debconf/confmodule
|
. /usr/share/debconf/confmodule
|
||||||
db_subst babelbox/info LANGNAME "English" || true
|
db_subst babelbox/info LANGNAME "Japanese" || true
|
||||||
db_info babelbox/info || true
|
db_info babelbox/info || true
|
||||||
|
|
||||||
mkdir -p /lib/partman/init.d
|
mkdir -p /lib/partman/init.d
|
||||||
|
|
|
||||||
|
|
@ -11,11 +11,11 @@ echo "@reboot root /root/cronscript; reboot" >>/target/etc/crontab
|
||||||
|
|
||||||
mount /dev/discs/disc0/part1 /hd-media -o remount,rw
|
mount /dev/discs/disc0/part1 /hd-media -o remount,rw
|
||||||
|
|
||||||
sed -i "s/^\([[:space:]]*\)set default=\"[[:digit:]]*\"$/\1set default=\"3\"/" /hd-media/boot/grub/grub.cfg
|
sed -i "s/^set default=.*$/set default=\"3\"/" /hd-media/boot/grub/grub.cfg
|
||||||
|
|
||||||
if [ -d /target/etc/gdm3 ] ; then
|
if [ -d /target/etc/gdm3 ] ; then
|
||||||
# Enable automatic login (chroot because of bug in busybox sed)
|
# Enable automatic login (chroot because of bug in busybox sed)
|
||||||
in-target sed -i "/^\[daemon\]/a\AutomaticLoginEnable = true\nAutomaticLogin = debian" /etc/gdm3/daemon.conf
|
chroot /target sed -i "/^\[daemon\]/a\AutomaticLoginEnable = true\nAutomaticLogin = debian" /etc/gdm3/daemon.conf
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue