-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
92c8432
commit 17805ee
Showing
3 changed files
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
drwxr-xr-x root/root boot/ | ||
-rw-r--r-- root/root boot/LICENCE.broadcom | ||
-rw-r--r-- root/root boot/bootcode.bin | ||
-rw-r--r-- root/root boot/fixup.dat | ||
-rw-r--r-- root/root boot/fixup4.dat | ||
-rw-r--r-- root/root boot/fixup4cd.dat | ||
-rw-r--r-- root/root boot/fixup4db.dat | ||
-rw-r--r-- root/root boot/fixup4x.dat | ||
-rw-r--r-- root/root boot/fixup_cd.dat | ||
-rw-r--r-- root/root boot/fixup_db.dat | ||
-rw-r--r-- root/root boot/fixup_x.dat | ||
-rw-r--r-- root/root boot/start.elf | ||
-rw-r--r-- root/root boot/start4.elf | ||
-rw-r--r-- root/root boot/start4cd.elf | ||
-rw-r--r-- root/root boot/start4db.elf | ||
-rw-r--r-- root/root boot/start4x.elf | ||
-rw-r--r-- root/root boot/start_cd.elf | ||
-rw-r--r-- root/root boot/start_db.elf | ||
-rw-r--r-- root/root boot/start_x.elf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
bc85cefa3dde301c0988375aac0e68db raspi-firmware_1.20240529-1_all.deb |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Description: Firmware for rpi | ||
# URL: https://raspberrypi.org/ | ||
# Maintainer: mac-a-r0ni, j at lngn dot net | ||
# Depends on: | ||
|
||
name=raspi-firmware | ||
version=1.20240529 | ||
release=1 | ||
source=(http://archive.raspberrypi.org/debian/pool/main/r/$name/${name}_${version}-${release}_all.deb) | ||
|
||
build() { | ||
|
||
ar x ${name}_${version}-${release}_all.deb data.tar.xz | ||
tar xvf $SRC/data.tar.xz -C $PKG | ||
rm -rf $PKG/etc | ||
mkdir -p $PKG/boot | ||
mv $PKG/usr/lib/raspi-firmware/* $PKG/boot | ||
rm -rf $PKG/usr | ||
} |