]> 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 4dad0fa8b1c61bbe8b2624ec11112d41179dea5d..30bcc3be92963ebbbfc8fc43c758171243e75d7f 100755 (executable)
@@ -5,6 +5,7 @@ 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"
 
@@ -13,14 +14,15 @@ 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-big.png ../artwork/wallpaper_hotbrain.xcf
-       convert neurodebian-splash-big.png -geometry 640x480 neurodebian-splash.png
+       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 \
@@ -29,14 +31,15 @@ lb config noauto \
   --distribution ${nd_basedist} \
   --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 \