~ubuntu-branches/ubuntu/trusty/debian-cd/trusty-proposed

« back to all changes in this revision

Viewing changes to tools/boot/lenny/boot-armel

  • Committer: Package Import Robot
  • Author(s): Steve McIntyre, Steve McIntyre, Joey Hess, Ian Campbell, Raphaël Hertzog, Philipp Kern, Robert Millan
  • Date: 2012-05-04 16:13:42 UTC
  • Revision ID: package-import@ubuntu.com-20120504161342-xye3fqy6e51cbgq3
Tags: 3.1.8
[ Steve McIntyre ]
* Switch i386 kernel flavours again on advice from Ben:
  + Removed all mention of 686-bigmem as it's now gone
  + Added 686-pae onto CD#1 in place of 686
  + Leave the 486 kernel on CD#1 still, for people who can't use 686-pae
  + Add zfsutils into the generate_d-i+k_list for kfreebsd users.
* Add support for translated package description files. Closes: #495102
  + Add needed dependency on bzip2
  + Other minor cleanups in tools/make_disc_trees.pl
* Fix "expert" mode in yaboot for powerpc. Closes: #636265. Thanks to
  Milan Kupcevic for the patch.
* Update list of Linux kernel packages. Closes: #648690. Thanks to Ben
  Hutchings for the patch.
* Remove lots of old stuff neither needed nor supported any more:
  + removed architectures: alpha arm hppa
  + removed releases: etch lenny
  + removed unversioned data/sparc and data/yaboot, versioned
    equivalents are in place already.
* tools/generate_firmware_task: Add LOCALDEBS support
* Add more armel kernel flavours
* Add armhf as a known architecture, merging common armel/armhf boot
  setup scripts.
* Remove hppa boot script, unsupported now.
* Tweak command line options for creating source images: add -joliet-long

[ Joey Hess ]
* Read tasksel's debian-tasks.desc from its new location.

[ Ian Campbell ]
* Rename "xm-debian.cfg" to just "debian.cfg" for Xen config.

[ Raphaël Hertzog ]
* Changes triggered by various lintian warnings:
  + Switch to “3.0 (native)” source format to get rid of .svn
    directories in the source package (when built from the svn checkout
    directly)
  + Support build-arch/build-indep targets in debian/rules.
  + Drop executable rights from tools/boot/wheezy/boot-hurd
    (and fix debian/rules to not re-add it).
  + Bump Standards-Version to 3.9.2 (no change required).

[ Philipp Kern ]
* Add an extra tweaked version of d390.ins for s390 booting. The
  Hardware Management Console needs the file to be in the root
  directory.

[ Robert Millan ]
* Add kfreebsd 9. Closes: #650926
* Add graphical installer image for kfreebsd-amd64. Closes: #651530
* generate_d-i+k_list: Add ufutils. Closes: #662234

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh
2
 
#
3
 
# Do install stuff for armel, including making bootable CDs
4
 
# Works with debian-installer
5
 
#
6
 
# $1 is the CD number
7
 
# $2 is the temporary CD build dir
8
 
#
9
 
# This is copied from the arm script and it is currently disabled as there
10
 
# doesn't seem to be any bootable armel machines.
11
 
 
12
 
. $BASEDIR/tools/boot/$CODENAME/common.sh
13
 
 
14
 
set -e
15
 
 
16
 
N=$1
17
 
CDDIR=$2
18
 
INSTALLDIR=$CDDIR/install
19
 
if [ "$DI_WWW_HOME" = "default" ];then
20
 
   DI_WWW_HOME="http://people.debian.org/~kmuto/d-i/images/daily"
21
 
   if [ -n "$DI_DIR" ];then
22
 
      DI_DIR="$DI_DIR/~${DI_WWW_HOME#*~}"
23
 
      DI_WWW_HOME=""                     
24
 
   fi
25
 
fi
26
 
if [ ! "$DI_DIST" ]; then
27
 
   DI_DIST="$DI_CODENAME"
28
 
fi
29
 
 
30
 
cd $CDDIR/..
31
 
 
32
 
add_mkisofs_opt $CDDIR/../$N.mkisofs_opts "-J -joliet-long"
33
 
 
34
 
# Armel is currently not bootable in lenny, so bail out here
35
 
echo "Armel booting disabled, check with Sledge/fjp/tbm"
36
 
exit 0
37
 
 
38
 
# Only disk 1* bootable
39
 
if [ $N != 1 ] && [ $N != 1_NONUS ]; then
40
 
        exit 0
41
 
fi
42
 
 
43
 
cd $INSTALLDIR
44
 
 
45
 
# Netwinder currently disabled - fails to boot at the moment, as it's too big. SAM 2008/03/05 
46
 
#for subarch in netwinder; do
47
 
#       if [ ! "$DI_WWW_HOME" ];then
48
 
#               if [ ! "$DI_DIR" ];then
49
 
#                  DI_DIR="$MIRROR/dists/$DI_DIST/main/installer-$ARCH/current/images"
50
 
#               fi
51
 
#               DI_DIR2="$DI_DIR/$subarch/cdrom"
52
 
#       else
53
 
#               DI_DIR2="di_stuff"
54
 
#               wget -r -nd --no-parent --level=1 -P "$DI_DIR2" "$DI_WWW_HOME/$subarch/cdrom/"
55
 
#               rm -f "$DI_DIR2"/index*
56
 
#       fi
57
 
#       cp -a "$DI_DIR2" "$subarch"
58
 
#       rm -rf di_stuff
59
 
#done
60
 
 
61
 
exit 0