Skip to content
Snippets Groups Projects
freedombone-image-hardware-setup 6.57 KiB
Newer Older
Bob Mottram's avatar
Bob Mottram committed
#!/bin/sh
Bob Mottram's avatar
Bob Mottram committed
#
# .---.                  .              .
# |                      |              |
# |--- .--. .-.  .-.  .-.|  .-. .--.--. |.-.  .-. .--.  .-.
# |    |   (.-' (.-' (   | (   )|  |  | |   )(   )|  | (.-'
# '    '     --'  --'  -' -  -' '  '   -' -'   -' '   -  --'
#
#                    Freedom in the Cloud
#
# Hardware setup based on bin/freedombox-hardware-setup from freedom-maker
#
# License
# =======
#
# This program is free software: you can redistribute it and/or modify
Bob Mottram's avatar
Bob Mottram committed
# it under the terms of the GNU Affero General Public License as published by
Bob Mottram's avatar
Bob Mottram committed
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Bob Mottram's avatar
Bob Mottram committed
# GNU Affero General Public License for more details.
Bob Mottram's avatar
Bob Mottram committed
#
Bob Mottram's avatar
Bob Mottram committed
# You should have received a copy of the GNU Affero General Public License
Bob Mottram's avatar
Bob Mottram committed
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
Bob Mottram's avatar
Bob Mottram committed

Bob Mottram's avatar
Bob Mottram committed
PROJECT_NAME='freedombone'

Bob Mottram's avatar
Bob Mottram committed
export TEXTDOMAIN=${PROJECT_NAME}-image-hardware-setup
Bob Mottram's avatar
Bob Mottram committed
export TEXTDOMAINDIR="/usr/share/locale"

Bob Mottram's avatar
Bob Mottram committed
enable_serial_console() {
Bob Mottram's avatar
Bob Mottram committed
    # By default, spawn a console on the serial port
    device="$1"
    echo $"Adding a getty on the serial port"
    echo "T0:12345:respawn:/sbin/getty -L $device 115200 vt100" >> /etc/inittab
}

Bob Mottram's avatar
Bob Mottram committed
setup_flash_kernel() {
    if [ ! -d /etc/flash-kernel ] ; then
       mkdir /etc/flash-kernel
Bob Mottram's avatar
Bob Mottram committed
    fi
    echo -n "$1" > /etc/flash-kernel/machine
    command_line=""
    if [ -n "$2" ] ; then
        command_line="console=$2"
Bob Mottram's avatar
Bob Mottram committed
    fi
Bob Mottram's avatar
Bob Mottram committed

    if [ -n "$command_line" ] ; then
        echo flash-kernel flash-kernel/linux_cmdline string "$command_line" | debconf-set-selections
Bob Mottram's avatar
Bob Mottram committed
    fi
Bob Mottram's avatar
Bob Mottram committed

    apt-get -yq install flash-kernel
Bob Mottram's avatar
Bob Mottram committed
a20_env() {
Bob Mottram's avatar
Bob Mottram committed
    dtb="$1"

    # Setup boot.cmd
Bob Mottram's avatar
Bob Mottram committed
    fstype=ext4
    if grep -q btrfs /etc/fstab; then
Bob Mottram's avatar
Bob Mottram committed
        fstype=btrfs
Bob Mottram's avatar
Bob Mottram committed
    fi

Bob Mottram's avatar
Bob Mottram committed
    if [ -n "$command_line" ] ; then
        echo flash-kernel flash-kernel/linux_cmdline string "$command_line" | debconf-set-selections
    fi
    kernelVersion=$(ls /usr/lib/*/$dtb | head -1 | cut -d/ -f4)
    version=$(echo $kernelVersion | sed 's/linux-image-\(.*\)/\1/')
    initRd=initrd.img-$version
    vmlinuz=vmlinuz-$version

    # Create boot.cmd
    cat >> /boot/boot.cmd <<EOF
setenv mmcdev 0
setenv mmcpart 1

setenv mmcroot /dev/mmcblk0p2 ro
setenv mmcrootfstype $fstype rootwait fixrtc
setenv mmcrootflags subvol=@

setenv console ttyS0,115200n8

setenv kernel_file $vmlinuz
setenv initrd_file $initRd
setenv fdtfile $dtb

setenv loadaddr 0x46000000
setenv initrd_addr 0x48000000
setenv fdtaddr 0x47000000

setenv initrd_high 0xffffffff
setenv fdt_high 0xffffffff

setenv loadkernel load mmc \${mmcdev}:\${mmcpart} \${loadaddr} \${kernel_file}
setenv loadinitrd load mmc \${mmcdev}:\${mmcpart} \${initrd_addr} \${initrd_file}\\; setenv initrd_size \\\${filesize}
setenv loadfdt load mmc \${mmcdev}:\${mmcpart} \${fdtaddr} /dtbs/\${fdtfile}

setenv loadfiles run loadkernel\\; run loadinitrd\\; run loadfdt
setenv mmcargs setenv bootargs console=\${console} root=\${mmcroot} rootfstype=\${mmcrootfstype} rootflags=\${mmcrootflags}

run loadfiles; run mmcargs; bootz \${loadaddr} \${initrd_addr}:\${initrd_size} \${fdtaddr}
EOF

    # boot.scr for Allwinner A20 based device
    mkimage -C none -A arm -T script -d /boot/boot.cmd /boot/boot.scr

    # Copy all DTBs
    mkdir -p /boot/dtbs
    cp /usr/lib/$kernelVersion/* /boot/dtbs

    # extra boot modules
    echo "rtc_sunxi" >> /etc/initramfs-tools/modules
}

Bob Mottram's avatar
Bob Mottram committed
beaglebone_env() {
Bob Mottram's avatar
Bob Mottram committed
    bbb_version=$1

    # Setup uEnv.txt
Bob Mottram's avatar
Bob Mottram committed
    fstype=ext4
Bob Mottram's avatar
Bob Mottram committed
    if grep -q btrfs /etc/fstab ; then
        fstype=btrfs
    fi
    if [ ! $bbb_version ]; then
        kernelVersion=$(ls /usr/lib/*/am335x-boneblack.dtb | head -1 | cut -d/ -f4)
    else
        kernelVersion=$(ls /usr/lib/*/am335x-boneblack-${1}.dtb | head -1 | cut -d/ -f4)
    fi
    version=$(echo $kernelVersion | sed 's/linux-image-\(.*\)/\1/')
    initRd=initrd.img-$version
    vmlinuz=vmlinuz-$version

    #bbb_loadaddr='0x80200000'
    #bbb_initrd_addr='0x81000000'
    #bbb_fdtaddr='0x80F80000'
    #if [[ "$bbb_version" == "wireless" ]]; then
        bbb_loadaddr='0x82000000'
        bbb_initrd_addr='0x88080000'
        bbb_fdtaddr='0x88000000'
    #fi

    # uEnv.txt for Beaglebone
    # based on https://github.com/beagleboard/image-builder/blob/master/target/boot/beagleboard.org.txt
    cat >> /boot/uEnv.txt <<EOF
mmcroot=/dev/mmcblk0p2 ro
mmcrootfstype=$fstype rootwait fixrtc
mmcrootflags=subvol=@

console=ttyO0,115200n8

kernel_file=$vmlinuz
initrd_file=$initRd

loadaddr=$bbb_loadaddr
initrd_addr=$bbb_initrd_addr
fdtaddr=$bbb_fdtaddr

initrd_high=0xffffffff
fdt_high=0xffffffff

loadkernel=load mmc \${mmcdev}:\${mmcpart} \${loadaddr} \${kernel_file}
loadinitrd=load mmc \${mmcdev}:\${mmcpart} \${initrd_addr} \${initrd_file}; setenv intrd_size \${filesize}
loadfdt=load mmc \${mmcdev}:\${mmcpart} \${fdtaddr} /dtbs/\${fdtfile}

loadfiles=run loadkernel; run loadinitrd; run loadfdt
mmcargs=setenv bootargs console=tty0 console=\${console} root=\${mmcroot} rootfstype=\${mmcrootfstype} rootflags=\${mmcrootflags}

uenvcmd=run loadfiles; run mmcargs; bootz \${loadaddr} \${initrd_addr}:\${initrd_size} \${fdtaddr}
EOF

    mkdir -p /boot/dtbs
    cp /usr/lib/linux-image-*-armmp/* /boot/dtbs
}

Bob Mottram's avatar
Bob Mottram committed
case "$MACHINE" in
Bob Mottram's avatar
Bob Mottram committed
    beaglebone)
Bob Mottram's avatar
Bob Mottram committed
        beaglebone_env
        enable_serial_console ttyO0
        setup_flash_kernel 'TI AM335x BeagleBone Black' 'ttyO0'
Bob Mottram's avatar
Bob Mottram committed
        beaglebone_env
        enable_serial_console ttyO0
        setup_flash_kernel 'TI AM335x BeagleBone Black Wireless' 'ttyO0'
Bob Mottram's avatar
Bob Mottram committed
        ;;
    cubietruck)
Bob Mottram's avatar
Bob Mottram committed
        a20_env sun7i-a20-cubietruck.dtb
        enable_serial_console ttyO0
        setup_flash_kernel 'Cubietech Cubietruck'
Bob Mottram's avatar
Bob Mottram committed
        ;;
    a20-olinuxino-lime)
Bob Mottram's avatar
Bob Mottram committed
        a20_env sun7i-a20-olinuxino-lime.dtb
        enable_serial_console ttyO0
        setup_flash_kernel 'Olimex A20-OLinuXino-LIME'
Bob Mottram's avatar
Bob Mottram committed
        ;;
    a20-olinuxino-lime2)
Bob Mottram's avatar
Bob Mottram committed
        a20_env sun7i-a20-olinuxino-lime2.dtb
        enable_serial_console ttyO0
        setup_flash_kernel 'Olimex A20-OLinuXino-LIME2'
Bob Mottram's avatar
Bob Mottram committed
        ;;
    a20-olinuxino-micro)
Bob Mottram's avatar
Bob Mottram committed
        a20_env sun7i-a20-olinuxino-micro.dtb
        enable_serial_console ttyO0
        setup_flash_kernel 'Olimex A20-Olinuxino Micro'
Bob Mottram's avatar
Bob Mottram committed
        ;;
    cubieboard2)
Bob Mottram's avatar
Bob Mottram committed
        a20_env sun7i-a20-cubieboard2.dtb
        enable_serial_console ttyO0
        setup_flash_kernel 'Cubietech Cubieboard2'
        ;;
    pcduino3)
Bob Mottram's avatar
Bob Mottram committed
        a20_env sun7i-a20-pcduino3.dtb
        enable_serial_console ttyO0
        setup_flash_kernel 'LinkSprite pcDuino3'
Bob Mottram's avatar
Bob Mottram committed
        ;;
Bob Mottram's avatar
Bob Mottram committed
esac