ae41855b31
somehow this is the reason of rootfs with f2fs not booting at all
67 lines
1.6 KiB
Text
67 lines
1.6 KiB
Text
# Template file for 'rpi-firmware'
|
|
_githash="a43480416153e88e8499ae85e4a760dcaa4a5810"
|
|
_gitshort="${_githash:0:7}"
|
|
|
|
pkgname=rpi-firmware
|
|
version=20150210
|
|
revision=1
|
|
noarch=yes
|
|
wrksrc="firmware-${_githash}"
|
|
short_desc="Firmware files for the Raspberry Pi (git ${_gitshort})"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
license="Propietary - see /usr/share/licences/${pkgname}/"
|
|
homepage="https://github.com/raspberrypi/firmware"
|
|
distfiles="https://github.com/raspberrypi/firmware/archive/${_githash}.tar.gz"
|
|
checksum=d04473662457755047b6b0a923ceeeea1794f3dd3fb0167c6f21b983f57d6f15
|
|
|
|
conf_files="/boot/cmdline.txt /boot/config.txt"
|
|
shlib_provides="
|
|
libvcsm.so
|
|
libvcos.so
|
|
libvchiq_arm.so
|
|
libopenmaxil.so
|
|
libmmal_vc_client.so
|
|
libmmal_util.so
|
|
libmmal_core.so
|
|
libmmal_components.so
|
|
libmmal.so
|
|
libdebug_sym.so
|
|
libcontainers.so
|
|
libbcm_host.so
|
|
libWFC.so
|
|
libOpenVG.so
|
|
libGLESv2.so
|
|
libEGL.so
|
|
libGLESv1_CM.so"
|
|
|
|
do_install() {
|
|
rm -f boot/*.img
|
|
rm -rf boot/overlays
|
|
rm -f boot/*.dtb
|
|
rm -f boot/COPYING.linux
|
|
|
|
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}
|
|
mv ${DESTDIR}/boot/LICENCE.broadcom ${DESTDIR}/usr/share/licenses/${pkgname}
|
|
mv ${DESTDIR}/opt/vc/LICENCE ${DESTDIR}/usr/share/licenses/${pkgname}
|
|
|
|
# Install configuration files.
|
|
vinstall ${FILESDIR}/cmdline.txt 644 boot
|
|
vinstall ${FILESDIR}/config.txt 644 boot
|
|
}
|
|
|
|
rpi-firmware-src_package() {
|
|
noarch=yes
|
|
short_desc+=" - example sources"
|
|
pkg_install() {
|
|
vmove opt/vc/src
|
|
}
|
|
}
|