This file is indexed.

/usr/share/debian-cd/tools/boot/wheezy/boot-kfreebsd is in debian-cd 3.1.17.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
# This script gets sourced from boot-kfreebsd-i386 and boot-kfreebsd-amd64.
#
# Do install stuff for kfreebsd, including making bootable CDs
# Works with debian-installer
#
# $1 is the CD number
# $2 is the temporary CD build dir

. $BASEDIR/tools/boot/$DI_CODENAME/common.sh
. $BASEDIR/tools/boot/$DI_CODENAME/x86-desktop.sh

set -e
#set -x

N=$1
CDDIR=$2
BOOTDIR=
if [ "$DI_WWW_HOME" = "default" ];then
    if [ "$ARCH" = kfreebsd-i386 ]; then
        DI_WWW_HOME="http://d-i.debian.org/daily-images/kfreebsd-i386/daily/"
    else
        DI_WWW_HOME="http://d-i.debian.org/daily-images/kfreebsd-amd64/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/..

# Only disc 1 bootable
if [ $N != 1 ]; then
       add_mkisofs_opt $CDDIR/../$N.mkisofs_opts "-J -joliet-long"
       exit 0
fi

# Download boot images.
BOOT_IMAGES="cdrom/debian-cd_info.tar.gz cdrom/kfreebsd.gz cdrom/kfreebsd-9.gz cdrom/initrd.gz"

if [ "$ARCH" = kfreebsd-amd64 ]; then
	BOOT_IMAGES="$BOOT_IMAGES cdrom/gtk/initrd.gz"
fi

for image in $BOOT_IMAGES; do
       if [ ! -e "$image" ]; then
               dir=$(dirname $image)
               mkdir -p $dir
               if [ ! "$DI_WWW_HOME" ];then
                       if [ ! "$DI_DIR" ];then
                               DI_DIR="$MIRROR/dists/$DI_DIST/main/installer-$ARCH/current/images"
                       fi
                       cp "$DI_DIR/$image" $image || true
               else
                       wget "$DI_WWW_HOME/$image" -O $image
               fi
       fi
done

# Install kernel and initrd
mkdir -p $CDDIR/boot/kernel/
cp "cdrom/kfreebsd.gz" "$CDDIR/boot/kernel/kfreebsd.gz"
if [ -f cdrom/kfreebsd-9.gz ] ; then
   cp "cdrom/kfreebsd-9.gz" "$CDDIR/boot/kernel/kfreebsd-9.gz"
fi
cp "cdrom/initrd.gz" "$CDDIR/boot/mfsroot.gz"

if [ "$ARCH" = kfreebsd-amd64 ] && [ -f cdrom/gtk/initrd.gz ] ; then
	mkdir -p $CDDIR/boot/gtk/
	cp "cdrom/gtk/initrd.gz" "$CDDIR/boot/gtk/mfsroot.gz"
fi

# Install bootloader
mkdir -p boot$N
tar -C boot$N -zxf cdrom/debian-cd_info.tar.gz
add_mkisofs_opt $CDDIR/../$N.mkisofs_opts "-J -joliet-long"
add_mkisofs_opt $CDDIR/../$N.mkisofs_opts "-b boot/grub/grub_eltorito"
add_mkisofs_opt $CDDIR/../$N.mkisofs_opts "-c boot/boot.cat"
add_mkisofs_opt $CDDIR/../$N.mkisofs_opts "-no-emul-boot"

bls=4 # Specify 4 for BIOS boot, don't calculate it
add_mkisofs_opt $CDDIR/../$N.mkisofs_opts "-boot-load-size $bls"
add_mkisofs_opt $CDDIR/../$N.mkisofs_opts "-boot-info-table"
add_mkisofs_opt $CDDIR/../$N.mkisofs_opts "-cache-inodes"
add_mkisofs_opt $CDDIR/../$N.mkisofs_dirs "boot$N"

# Add autorun
if [ -f $CDDIR/README.html ]; then
       todos > $CDDIR/autorun.inf <<EOF
[autorun]
open=autorun.bat
label=Install Debian GNU/kFreeBSD
EOF
       todos > $CDDIR/autorun.bat <<EOF
@echo Starting "README.html"...
@start README.html
@exit
EOF
fi

# Install languages
install_languages $CDDIR

# Cleanup
rm -rf cdrom

# done