2013-02-19 17:30:01 +00:00
|
|
|
# Template file for 'rpi-firmware'
|
|
|
|
pkgname=rpi-firmware
|
2013-05-14 14:06:02 +00:00
|
|
|
version=20130514
|
2013-02-19 17:30:01 +00:00
|
|
|
revision=1
|
|
|
|
short_desc="Firmware files for the Raspberry Pi"
|
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
|
|
license="Propietary -- see /usr/share/licences/${pkgname}/"
|
|
|
|
homepage="https://github.com/raspberrypi/firmware"
|
|
|
|
|
|
|
|
noarch=yes
|
|
|
|
nofetch=yes
|
|
|
|
noextract=yes
|
|
|
|
|
|
|
|
do_fetch() {
|
|
|
|
local url="git://github.com/raspberrypi/firmware.git"
|
2013-05-14 14:06:02 +00:00
|
|
|
# Latest commit from 20130514 is f53948f
|
2013-02-19 17:30:01 +00:00
|
|
|
git clone --depth 1 $url ${pkgname}-${version}
|
|
|
|
}
|
|
|
|
|
|
|
|
do_install() {
|
|
|
|
rm -f boot/kernel.img
|
2013-05-14 14:17:18 +00:00
|
|
|
rm -f boot/kernel_emergency.img
|
|
|
|
rm -f boot/COPYING.linux
|
2013-02-19 17:30:01 +00:00
|
|
|
|
|
|
|
vmkdir boot
|
|
|
|
cp -R boot/* ${DESTDIR}/boot
|
|
|
|
|
|
|
|
vmkdir opt/vc
|
|
|
|
cp -R hardfp/opt/vc/{bin,include,lib,sbin,src,LICENCE} ${DESTDIR}/opt/vc
|
|
|
|
|
|
|
|
vmkdir etc/ld.so.conf.d
|
|
|
|
echo "/opt/vc/lib/" > ${DESTDIR}//etc/ld.so.conf.d/${pkgname}.conf
|
|
|
|
|
|
|
|
vmkdir usr/share/licenses/${pkgname}
|
2013-05-14 14:17:18 +00:00
|
|
|
mv ${DESTDIR}/boot/LICENCE.broadcom ${DESTDIR}/usr/share/licenses/${pkgname}
|
|
|
|
mv ${DESTDIR}/opt/vc/LICENCE ${DESTDIR}/usr/share/licenses/${pkgname}
|
2013-02-27 22:02:53 +00:00
|
|
|
|
|
|
|
# Install configuration files.
|
|
|
|
vinstall ${FILESDIR}/cmdline.txt 644 boot
|
|
|
|
vinstall ${FILESDIR}/config.txt 644 boot
|
2013-02-19 17:30:01 +00:00
|
|
|
}
|
2013-04-14 09:53:56 +00:00
|
|
|
|
|
|
|
rpi-firmware_package() {
|
|
|
|
conf_files="/boot/cmdline.txt /boot/config.txt"
|
|
|
|
noarch="yes"
|
|
|
|
pkg_install() {
|
2013-05-14 14:06:02 +00:00
|
|
|
vmove all
|
2013-04-14 09:53:56 +00:00
|
|
|
}
|
|
|
|
}
|