]> git.donarmstrong.com Git - neurodebian.git/blobdiff - live/auto/config
give sensible values for the volume label and use it for .iso filename
[neurodebian.git] / live / auto / config
index accb4ecfbab34ed9beb2b9195c500f48174f34cf..30bcc3be92963ebbbfc8fc43c758171243e75d7f 100755 (executable)
@@ -5,40 +5,44 @@ set -eu
 # the Debian release to use as a basis for the live-cd
 nd_basedist="squeeze"
 nd_version="6.0.0"
+nd_arch=i386
 
 deb_mirror="http://debproxy:9999"
 
 # Prepare splash screen
-if [ ! -e neurodebian-splash.xpm.gz ]; then
+if [ ! -e neurodebian-splash.png ]; then
     # For Grub2 it should be .tga;
        # NOTE: RLE compression is not supported by imagemagick for write
-       xcf2png -o neurodebian-splash.png ../artwork/wallpaper_hotbrain.xcf
-       convert neurodebian-splash.png -geometry 640x480 neurodebian-splash.xpm.gz
+       xcf2png -o neurodebian-splash-big.png ../artwork/wallpaper_hotbrain.xcf
+       convert neurodebian-splash-big.png -crop 1400x1050+280 -geometry 640x480 \
+               neurodebian-splash.png
 fi
 
 # enable recommends for now since we care about 'typical' use patterns atm
 lb config noauto \
   --apt apt \
   --apt-recommends true \
-  --architecture i386 \
+  --architecture ${nd_arch} \
   --archive-areas "main contrib non-free" \
   --binary-images iso-hybrid \
   --binary-indices none \
   --bootstrap-flavour standard \
   --debian-installer netinst \
   --distribution ${nd_basedist} \
-  --grub-splash neurodebian-splash.xpm.gz \
   --hostname neurodebian \
   --iso-application "NeuroDebian Live" \
-  --iso-preparer "NeuroDebian v.{nd_version}; http://neuro.debian.net" \
+  --iso-preparer "NeuroDebian ${nd_version}; http://neuro.debian.net" \
   --iso-publisher "NeuroDebian project; http://neuro.debian.net" \
+  --iso-volume "NeuroDebian Live ${nd_version} ($nd_arch)" \
   --keyring-packages "debian-archive-keyring neurodebian-keyring" \
+  --memtest memtest86+ \
   --mirror-bootstrap "${deb_mirror}/debian/" \
   --mirror-chroot "${deb_mirror}/debian/" \
   --mirror-chroot-security "${deb_mirror}/security/" \
-  --packages-lists "nd-core nd-neuroimaging nd-electrphysiology" \
+  --packages-lists "nd-core nd-neuroimaging nd-neuroimaging-doc nd-electrphysiology nd-electrphysiology-doc" \
   --repositories neuro.debian.net \
   --security true \
+  --syslinux-splash neurodebian-splash.png \
   --syslinux-timeout 10 \
   --username brain \
   --win32-loader enabled \