1 1.24 skrll # $NetBSD: rpi.conf,v 1.24 2013/11/28 13:39:18 skrll Exp $ 2 1.11 jakllsch # Raspberry Pi customization script used by mkimage 3 1.1 christos # 4 1.9 christos 5 1.9 christos board=rpi 6 1.16 christos kernel=$src/sys/arch/evbarm/compile/RPI/netbsd-RPI.bin 7 1.9 christos 8 1.9 christos . ${DIR}/conf/evbarm.conf 9 1.1 christos 10 1.1 christos firmwaredir=$src/external/broadcom/rpi-firmware/dist 11 1.1 christos firmwarefiles="LICENCE.broadcom bootcode.bin fixup.dat fixup_cd.dat start.elf start_cd.elf" 12 1.1 christos 13 1.1 christos make_filesystems() { 14 1.9 christos make_filesystems_evbarm 15 1.1 christos } 16 1.1 christos 17 1.1 christos make_fstab() { 18 1.9 christos make_fstab_evbarm 19 1.1 christos } 20 1.1 christos 21 1.13 christos make_label() { 22 1.13 christos make_label_evbarm 23 1.13 christos } 24 1.13 christos 25 1.1 christos customize() { 26 1.9 christos customize_evbarm 27 1.13 christos cat >> ${mnt}/etc/rc.conf << EOF 28 1.1 christos wscons=YES 29 1.20 jmcneill devpubd=YES 30 1.1 christos EOF 31 1.1 christos 32 1.13 christos } 33 1.13 christos 34 1.13 christos populate() { 35 1.13 christos cat > ${mnt}/boot/cmdline.txt << EOF 36 1.24 skrll root=ld0a console=fb 37 1.10 skrll #fb=1280x1024 # to select a mode, otherwise try EDID 38 1.1 christos #fb=disable # to disable fb completely 39 1.1 christos EOF 40 1.14 christos if [ ! -f ${kernel} ]; then 41 1.14 christos echo ${PROG}: Missing ${kernel} 1>&2 42 1.10 skrll exit 1 43 1.10 skrll fi 44 1.10 skrll 45 1.10 skrll echo "${bar} installing kernel ${bar}" 46 1.16 christos case ${kernel} in 47 1.16 christos *.gz) 48 1.19 riz gzip -dc ${kernel} > ${mnt}/boot/kernel.img 49 1.16 christos ;; 50 1.16 christos *) 51 1.16 christos cp ${kernel} ${mnt}/boot/kernel.img 52 1.16 christos ;; 53 1.16 christos esac 54 1.10 skrll 55 1.17 jmcneill echo "${bar} installing firmware files ${bar}" 56 1.1 christos (cd ${mnt}/boot && 57 1.1 christos for f in ${firmwarefiles}; do 58 1.17 jmcneill echo " $f" 59 1.13 christos cp ${firmwaredir}/${f} . 60 1.1 christos done 61 1.1 christos ) 62 1.1 christos 63 1.1 christos } 64