From 4a487cf40bbec87ab88a2c709ba5079a63fe0e4f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89rico=20Rolim?= Date: Mon, 3 Aug 2020 14:16:19 -0300 Subject: [PATCH] rpi3-firmware: remove package. Obsolete. --- srcpkgs/rpi3-firmware/files/cmdline.txt | 1 - srcpkgs/rpi3-firmware/files/config.txt | 7 ----- srcpkgs/rpi3-firmware/template | 41 ------------------------- 3 files changed, 49 deletions(-) delete mode 100755 srcpkgs/rpi3-firmware/files/cmdline.txt delete mode 100755 srcpkgs/rpi3-firmware/files/config.txt delete mode 100644 srcpkgs/rpi3-firmware/template diff --git a/srcpkgs/rpi3-firmware/files/cmdline.txt b/srcpkgs/rpi3-firmware/files/cmdline.txt deleted file mode 100755 index 530b7f20424..00000000000 --- a/srcpkgs/rpi3-firmware/files/cmdline.txt +++ /dev/null @@ -1 +0,0 @@ -root=/dev/mmcblk0p2 rw rootwait console=ttyS0,115200 smsc95xx.turbo_mode=N dwc_otg.lpm_enable=0 loglevel=4 elevator=noop diff --git a/srcpkgs/rpi3-firmware/files/config.txt b/srcpkgs/rpi3-firmware/files/config.txt deleted file mode 100755 index 0c8ee03208e..00000000000 --- a/srcpkgs/rpi3-firmware/files/config.txt +++ /dev/null @@ -1,7 +0,0 @@ -# 64-bit mode -arm_control=0x200 - -enable_uart=1 - -device_tree=dtbs/bcm2837-rpi-3-b.dtb -kernel=vmlinux-rpi3 diff --git a/srcpkgs/rpi3-firmware/template b/srcpkgs/rpi3-firmware/template deleted file mode 100644 index a7076ab3da0..00000000000 --- a/srcpkgs/rpi3-firmware/template +++ /dev/null @@ -1,41 +0,0 @@ -# Template file for 'rpi3-firmware' -_githash="6df93defc76d5b511838d6802a01a05072964582" -_gitshort="${_githash:0:7}" - -pkgname=rpi3-firmware -version=20170113 -revision=1 -archs="aarch64*" -wrksrc="firmware-${_githash}" -short_desc="Firmware files for the Raspberry Pi 3 (git ${_gitshort})" -maintainer="Leah Neukirchen " -license="3-clause-BSD" -homepage="https://github.com/raspberrypi/firmware" -distfiles="https://github.com/raspberrypi/firmware/archive/${_githash}.tar.gz" -checksum=45e243ce22d2f34f065328d52629cc9bbf52032a23862c6d4c1f044613fc0c48 -nostrip=yes - -conf_files="/boot/cmdline.txt /boot/config.txt" - -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 usr/share/licenses/${pkgname} - mv ${DESTDIR}/boot/LICENCE.broadcom ${DESTDIR}/usr/share/licenses/${pkgname} - - # Install configuration files. - vinstall ${FILESDIR}/cmdline.txt 644 boot - vinstall ${FILESDIR}/config.txt 644 boot - - # Firmware for rpi3 wifi chip - for f in bin txt; do - $XBPS_FETCH_CMD https://archlinuxarm.org/builder/src/brcmfmac43430-sdio.${f} - vinstall brcmfmac43430-sdio.${f} 0644 usr/lib/firmware/brcm - done -}