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

« back to all changes in this revision

Viewing changes to tools/boot/etch/boot-ia64

  • 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/bash
2
 
#
3
 
# boot-ia64
4
 
#
5
 
# $1 is the CD number
6
 
# $2 is the temporary CD build dir
7
 
 
8
 
. $BASEDIR/tools/boot/$DI_CODENAME/common.sh
9
 
 
10
 
set -e
11
 
 
12
 
N=$1
13
 
CDDIR=$2
14
 
BOOTDIR=
15
 
if [ "$DI_WWW_HOME" = "default" ];then
16
 
   DI_WWW_HOME="http://people.debian.org/~jbailey/d-i/ia64/daily"
17
 
   if [ -n "$DI_DIR" ];then
18
 
      DI_DIR="$DI_DIR/~${DI_WWW_HOME#*~}"
19
 
      DI_WWW_HOME=""                     
20
 
   fi
21
 
fi
22
 
if [ ! "$DI_DIST" ]; then
23
 
   DI_DIST="$DI_CODENAME"
24
 
fi
25
 
 
26
 
cd $CDDIR/..
27
 
 
28
 
# Only disc 1 bootable
29
 
if [ $N != 1 -a $N != 1_NONUS ]; then 
30
 
    add_mkisofs_opt $CDDIR/../$N.mkisofs_opts "-J"
31
 
        exit 0; 
32
 
fi
33
 
 
34
 
# Download boot images
35
 
for image in boot.img; do
36
 
    if [ ! -e "$image" ]; then
37
 
        if [ ! "$DI_WWW_HOME" ];then
38
 
                if [ ! "$DI_DIR" ];then
39
 
                   DI_DIR="$MIRROR/dists/$DI_DIST/main/installer-$ARCH/current/images"
40
 
                fi
41
 
                cp "$DI_DIR/cdrom/$image" . || \
42
 
                cp "$DI_DIR/$image" .
43
 
        else
44
 
                wget "$DI_WWW_HOME/cdrom/$image" || \
45
 
                wget "$DI_WWW_HOME/$image"
46
 
        fi
47
 
    fi
48
 
done
49
 
 
50
 
install_languages $CDDIR
51
 
 
52
 
mkdir -p boot$N/boot
53
 
cp -f boot.img boot$N/boot/
54
 
 
55
 
add_mkisofs_opt $CDDIR/../$N.mkisofs_opts "-J"
56
 
add_mkisofs_opt $CDDIR/../$N.mkisofs_opts "-no-emul-boot"
57
 
add_mkisofs_opt $CDDIR/../$N.mkisofs_opts "-b boot/boot.img"
58
 
add_mkisofs_opt $CDDIR/../$N.mkisofs_opts "-c boot/boot.catalog"
59
 
 
60
 
add_mkisofs_opt $CDDIR/../$N.mkisofs_dirs "boot$N"
61
 
 
62
 
# done
63