update to 20210423git [release 20210423git-1mamba;Fri Apr 23 2021]
This commit is contained in:
parent
0188bbf4b2
commit
6d5c62e301
1
raspberrypi-firmware-udev-vchiq-permissions
Normal file
1
raspberrypi-firmware-udev-vchiq-permissions
Normal file
@ -0,0 +1 @@
|
|||||||
|
SUBSYSTEM=="vchiq", GROUP="video", MODE="0660"
|
@ -1,17 +1,18 @@
|
|||||||
Name: raspberrypi-userland
|
Name: raspberrypi-userland
|
||||||
Version: 20210317git
|
Version: 20210423git
|
||||||
Release: 1mamba
|
Release: 1mamba
|
||||||
Summary: Libraries for interfacing to Raspberry Pi GPU
|
Summary: Libraries for interfacing to Raspberry Pi GPU
|
||||||
Group: System/Libraries
|
Group: System/Libraries
|
||||||
Vendor: openmamba
|
Vendor: openmamba
|
||||||
Distribution: openmamba
|
Distribution: openmamba
|
||||||
Packager: Davide Madrisan <davide.madrisan@gmail.com>
|
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||||
URL: https://www.raspberrypi.org/
|
URL: https://www.raspberrypi.org/
|
||||||
Source: git://github.com/raspberrypi/userland.git/master/userland-%{version}.tar.bz2
|
Source: git://github.com/raspberrypi/userland.git/master/userland-%{version}.tar.bz2
|
||||||
Source1: raspberrypi-userland-ldconfig
|
Source1: raspberrypi-userland-ldconfig
|
||||||
Source2: tvservice-off
|
Source2: tvservice-off
|
||||||
Source3: tvservice-on
|
Source3: tvservice-on
|
||||||
Source4: tvservice-ison
|
Source4: tvservice-ison
|
||||||
|
Source5: raspberrypi-firmware-udev-vchiq-permissions
|
||||||
Patch0: %{name}-20121028git-disable_cmake_toolchain_check.patch
|
Patch0: %{name}-20121028git-disable_cmake_toolchain_check.patch
|
||||||
Patch1: raspberrypi-userland-20210317git-aarch64-brcmegl.patch
|
Patch1: raspberrypi-userland-20210317git-aarch64-brcmegl.patch
|
||||||
License: BSD
|
License: BSD
|
||||||
@ -30,10 +31,10 @@ Libraries for interfacing to Raspberry Pi GPU.
|
|||||||
%package -n raspberrypi-utils
|
%package -n raspberrypi-utils
|
||||||
Group: System/Tools
|
Group: System/Tools
|
||||||
Summary: System tools for the Raspberry Pi
|
Summary: System tools for the Raspberry Pi
|
||||||
|
Requires: libraspberrypi = %{?epoch:%epoch:}%{version}-%{release}
|
||||||
|
|
||||||
%description -n raspberrypi-utils
|
%description -n raspberrypi-utils
|
||||||
This package contains some system tools for the Raspberry Pi.
|
This package contains some system tools for the Raspberry Pi.
|
||||||
Source: https://github.com/raspberrypi/userland.git
|
|
||||||
|
|
||||||
%package -n libraspberrypi
|
%package -n libraspberrypi
|
||||||
Group: System/Libraries
|
Group: System/Libraries
|
||||||
@ -92,11 +93,20 @@ done
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
install -D -m0644 %{S:1} %{buildroot}%{_sysconfdir}/ld.so.conf.d/vmcs.conf
|
install -D -m0644 %{S:1} %{buildroot}%{_sysconfdir}/ld.so.conf.d/vmcs.conf
|
||||||
|
|
||||||
install -m0755 %{S:2} %{buildroot}/opt/vc/bin/tvservice-off
|
install -m0755 %{S:2} %{buildroot}/opt/vc/bin/tvservice-off
|
||||||
install -m0755 %{S:3} %{buildroot}/opt/vc/bin/tvservice-on
|
install -m0755 %{S:3} %{buildroot}/opt/vc/bin/tvservice-on
|
||||||
install -m0755 %{S:4} %{buildroot}/opt/vc/bin/tvservice-ison
|
install -m0755 %{S:4} %{buildroot}/opt/vc/bin/tvservice-ison
|
||||||
|
|
||||||
|
# add /opt/vc/bin to systemd PATH
|
||||||
|
install -d %{buildroot}%{_sysconfdir}/profile.d/
|
||||||
|
cat > %{buildroot}%{_sysconfdir}/profile.d/vmcs.sh << _EOF
|
||||||
|
PATH=$PATH:/opt/vc/bin
|
||||||
|
_EOF
|
||||||
|
|
||||||
|
# udev rules
|
||||||
|
install -D -m 644 %{S:5} \
|
||||||
|
%{buildroot}%{_udevrulesdir}/10-vchiq-permissions.rules
|
||||||
|
|
||||||
# remove unpackaged files
|
# remove unpackaged files
|
||||||
rm -f %{buildroot}/opt/vc/share/install/vmcs.conf
|
rm -f %{buildroot}/opt/vc/share/install/vmcs.conf
|
||||||
rm -fr %{buildroot}/opt/vc/src/hello_pi
|
rm -fr %{buildroot}/opt/vc/src/hello_pi
|
||||||
@ -118,6 +128,7 @@ mv %{buildroot}/opt/vc/lib/pkgconfig %{buildroot}%{_libdir}/
|
|||||||
|
|
||||||
%files -n raspberrypi-utils
|
%files -n raspberrypi-utils
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
|
%{_sysconfdir}/profile.d/vmcs.sh
|
||||||
#/opt/vc/bin/raspicam
|
#/opt/vc/bin/raspicam
|
||||||
/opt/vc/bin/*
|
/opt/vc/bin/*
|
||||||
%doc LICENCE
|
%doc LICENCE
|
||||||
@ -125,6 +136,7 @@ mv %{buildroot}/opt/vc/lib/pkgconfig %{buildroot}%{_libdir}/
|
|||||||
%files -n libraspberrypi
|
%files -n libraspberrypi
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%{_sysconfdir}/ld.so.conf.d/vmcs.conf
|
%{_sysconfdir}/ld.so.conf.d/vmcs.conf
|
||||||
|
%{_udevrulesdir}/10-vchiq-permissions.rules
|
||||||
%dir /opt/vc
|
%dir /opt/vc
|
||||||
%dir /opt/vc/lib
|
%dir /opt/vc/lib
|
||||||
/opt/vc/lib/lib*.so
|
/opt/vc/lib/lib*.so
|
||||||
@ -150,6 +162,9 @@ mv %{buildroot}/opt/vc/lib/pkgconfig %{buildroot}%{_libdir}/
|
|||||||
%{_libdir}/pkgconfig/*.pc
|
%{_libdir}/pkgconfig/*.pc
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri Apr 23 2021 Silvan Calarco <silvan.calarco@mambasoft.it> 20210423git-1mamba
|
||||||
|
- update to 20210423git
|
||||||
|
|
||||||
* Wed Mar 17 2021 Silvan Calarco <silvan.calarco@mambasoft.it> 20210317git-1mamba
|
* Wed Mar 17 2021 Silvan Calarco <silvan.calarco@mambasoft.it> 20210317git-1mamba
|
||||||
- update to 20210317git
|
- update to 20210317git
|
||||||
- libraspberrypi-userland-devel: move pkgconfig files to %_libdir
|
- libraspberrypi-userland-devel: move pkgconfig files to %_libdir
|
||||||
|
Loading…
Reference in New Issue
Block a user