Add armhf architecture
This commit is contained in:
parent
31a7b9ed9b
commit
730ee51310
|
@ -20,6 +20,8 @@ debian-cd (3.1.8) UNRELEASED; urgency=low
|
||||||
equivalents are in place already.
|
equivalents are in place already.
|
||||||
* tools/generate_firmware_task: Add LOCALDEBS support
|
* tools/generate_firmware_task: Add LOCALDEBS support
|
||||||
* Add more armel kernel flavours
|
* Add more armel kernel flavours
|
||||||
|
* Add armhf as a known architecture, merging common armel/armhf boot
|
||||||
|
setup scripts.
|
||||||
|
|
||||||
[ Joey Hess ]
|
[ Joey Hess ]
|
||||||
* Read tasksel's debian-tasks.desc from its new location.
|
* Read tasksel's debian-tasks.desc from its new location.
|
||||||
|
|
|
@ -0,0 +1,40 @@
|
||||||
|
#!/bin/sh
|
||||||
|
#
|
||||||
|
# Do install stuff for arm*, including making bootable CDs
|
||||||
|
# Works with debian-installer
|
||||||
|
#
|
||||||
|
# $1 is the CD number
|
||||||
|
# $2 is the temporary CD build dir
|
||||||
|
#
|
||||||
|
# This is copied from the old arm script and it is currently disabled as there
|
||||||
|
# don't seem to be any bootable armel/armhf machines.
|
||||||
|
|
||||||
|
. $BASEDIR/tools/boot/$CODENAME/common.sh
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
N=$1
|
||||||
|
CDDIR=$2
|
||||||
|
if [ "$DI_WWW_HOME" = "default" ];then
|
||||||
|
if [ "$ARCH" = armel ]; then
|
||||||
|
DI_WWW_HOME="http://d-i.debian.org/daily-images/armel/daily"
|
||||||
|
else
|
||||||
|
DI_WWW_HOME="http://d-i.debian.org/daily-images/armhf/daily"
|
||||||
|
fi
|
||||||
|
if [ -n "$DI_DIR" ];then
|
||||||
|
DI_DIR="$DI_DIR/${DI_WWW_HOME#*http://}"
|
||||||
|
DI_WWW_HOME=""
|
||||||
|
echo "Using images from $DI_DIR"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
if [ ! "$DI_DIST" ]; then
|
||||||
|
DI_DIST="$DI_CODENAME"
|
||||||
|
fi
|
||||||
|
|
||||||
|
cd $CDDIR/..
|
||||||
|
|
||||||
|
add_mkisofs_opt $CDDIR/../$N.mkisofs_opts "-J -joliet-long"
|
||||||
|
|
||||||
|
# Arm* is currently not bootable directly from CD in wheezy, so bail out here
|
||||||
|
echo "Armel/armhf booting disabled, check with Sledge"
|
||||||
|
exit 0
|
|
@ -1,61 +1,2 @@
|
||||||
#!/bin/sh
|
#!/bin/bash
|
||||||
#
|
. $BASEDIR/tools/boot/$DI_CODENAME/boot-arm
|
||||||
# Do install stuff for armel, including making bootable CDs
|
|
||||||
# Works with debian-installer
|
|
||||||
#
|
|
||||||
# $1 is the CD number
|
|
||||||
# $2 is the temporary CD build dir
|
|
||||||
#
|
|
||||||
# This is copied from the arm script and it is currently disabled as there
|
|
||||||
# doesn't seem to be any bootable armel machines.
|
|
||||||
|
|
||||||
. $BASEDIR/tools/boot/$CODENAME/common.sh
|
|
||||||
|
|
||||||
set -e
|
|
||||||
|
|
||||||
N=$1
|
|
||||||
CDDIR=$2
|
|
||||||
INSTALLDIR=$CDDIR/install
|
|
||||||
if [ "$DI_WWW_HOME" = "default" ];then
|
|
||||||
DI_WWW_HOME="http://d-i.debian.org/daily-images/armel/daily"
|
|
||||||
if [ -n "$DI_DIR" ];then
|
|
||||||
DI_DIR="$DI_DIR/${DI_WWW_HOME#*http://}"
|
|
||||||
DI_WWW_HOME=""
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
if [ ! "$DI_DIST" ]; then
|
|
||||||
DI_DIST="$DI_CODENAME"
|
|
||||||
fi
|
|
||||||
|
|
||||||
cd $CDDIR/..
|
|
||||||
|
|
||||||
add_mkisofs_opt $CDDIR/../$N.mkisofs_opts "-J -joliet-long"
|
|
||||||
|
|
||||||
# Armel is currently not bootable in wheezy, so bail out here
|
|
||||||
echo "Armel booting disabled, check with Sledge/fjp/tbm"
|
|
||||||
exit 0
|
|
||||||
|
|
||||||
# Only disk 1* bootable
|
|
||||||
if [ $N != 1 ] && [ $N != 1_NONUS ]; then
|
|
||||||
exit 0
|
|
||||||
fi
|
|
||||||
|
|
||||||
cd $INSTALLDIR
|
|
||||||
|
|
||||||
# Netwinder currently disabled - fails to boot at the moment, as it's too big. SAM 2008/03/05
|
|
||||||
#for subarch in netwinder; do
|
|
||||||
# if [ ! "$DI_WWW_HOME" ];then
|
|
||||||
# if [ ! "$DI_DIR" ];then
|
|
||||||
# DI_DIR="$MIRROR/dists/$DI_DIST/main/installer-$ARCH/current/images"
|
|
||||||
# fi
|
|
||||||
# DI_DIR2="$DI_DIR/$subarch/cdrom"
|
|
||||||
# else
|
|
||||||
# DI_DIR2="di_stuff"
|
|
||||||
# wget -r -nd --no-parent --level=1 -P "$DI_DIR2" "$DI_WWW_HOME/$subarch/cdrom/"
|
|
||||||
# rm -f "$DI_DIR2"/index*
|
|
||||||
# fi
|
|
||||||
# cp -a "$DI_DIR2" "$subarch"
|
|
||||||
# rm -rf di_stuff
|
|
||||||
#done
|
|
||||||
|
|
||||||
exit 0
|
|
||||||
|
|
|
@ -0,0 +1,2 @@
|
||||||
|
#!/bin/bash
|
||||||
|
. $BASEDIR/tools/boot/$DI_CODENAME/boot-arm
|
|
@ -179,6 +179,14 @@ linux-image-orion5x
|
||||||
linux-image-versatile
|
linux-image-versatile
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef ARCH_armhf
|
||||||
|
initramfs-tools
|
||||||
|
busybox
|
||||||
|
flash-kernel
|
||||||
|
linux-image-mx5
|
||||||
|
linux-image-omap
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef ARCH_sparc
|
#ifdef ARCH_sparc
|
||||||
initramfs-tools
|
initramfs-tools
|
||||||
busybox
|
busybox
|
||||||
|
|
|
@ -90,7 +90,7 @@ CAPCODE=`perl -e "print ucfirst("$CODENAME")"`
|
||||||
export FIRSTVER CAPCODE
|
export FIRSTVER CAPCODE
|
||||||
|
|
||||||
if [ "$ARCHLIST"x = ""x ] ; then
|
if [ "$ARCHLIST"x = ""x ] ; then
|
||||||
ARCHLIST="armel amd64 i386 ia64 mips mipsel powerpc s390 sparc source kfreebsd-amd64 kfreebsd-i386" # amd64 # all dealt with specially
|
ARCHLIST="armel armhf amd64 i386 ia64 mips mipsel powerpc s390 sparc source kfreebsd-amd64 kfreebsd-i386" # amd64 # all dealt with specially
|
||||||
fi
|
fi
|
||||||
|
|
||||||
export TDIR NONFREE VER MIRROR CODENAME OUT BASEDIR
|
export TDIR NONFREE VER MIRROR CODENAME OUT BASEDIR
|
||||||
|
|
Loading…
Reference in New Issue