removed modified stock blobs

This commit is contained in:
Shaun Inman 2023-03-18 12:31:34 -04:00
parent aa9a0ec79b
commit b69b380a91
8 changed files with 1 additions and 1486 deletions

View file

@ -21,7 +21,7 @@ RELEASE_NAME=$(RELEASE_BASE)-$(RELEASE_DOT)
# TODO: this needs to consider the different platforms, eg. rootfs.ext2 should only be copied in rg35xx-toolchain
all: lib sys all-cores tools dtb bundle readmes zip report
all: lib sys all-cores tools bundle readmes zip report
repack: bundle readmes zip report
@ -41,9 +41,6 @@ tools:
cd ./src/clock && make
cd ./other/DinguxCommander && make -j
dtb:
cd ./src/dts/ && make
bundle:
# ready build
rm -rf ./build
@ -63,7 +60,6 @@ bundle:
# populate system
cp ~/buildroot/output/images/rootfs.ext2 ./build/SYSTEM/rg35xx
cp ./src/dts/kernel.dtb ./build/SYSTEM/rg35xx/dat
cp ./src/libmsettings/libmsettings.so ./build/SYSTEM/rg35xx/lib
cp ./src/keymon/keymon.elf ./build/SYSTEM/rg35xx/bin
cp ./src/minarch/minarch.elf ./build/SYSTEM/rg35xx/bin

View file

@ -1,3 +0,0 @@
stock kernel module (unmodified, required in case Garlic was installed before this)
source: unavailable

Binary file not shown.

View file

@ -1,8 +0,0 @@
stock uImage blob modified by BlackSeraph with
under- and overclocked cpu speeds, reduced overlays
per framebuffer (from 3 to 2), increased fb0 buffers
(up from 2 to 8), reduced fb1 buffers (down 2 to 1),
reduced overlay allocation (since we're using the
tail end of the framebuffer)
source: unavailable

File diff suppressed because it is too large Load diff

View file

@ -1,4 +0,0 @@
all:
dtc -O dtb -o kernel.dtb kernel.dts
clean:
rm -f kernel.dtb

View file

@ -18,10 +18,7 @@ if [ ! -f $FLAG_PATH ]; then
echo "backing up"
BAK_PATH=$TF1_PATH/bak
mkdir -p $BAK_PATH
cp /misc/modules/gpio_keys_polled.ko $BAK_PATH
cp /misc/boot_logo.bmp.gz $BAK_PATH
cp /misc/kernel.dtb $BAK_PATH
cp /misc/uImage $BAK_PATH
fi
was_updated() {
@ -53,15 +50,11 @@ was_updated() {
if [ ! -f $FLAG_PATH ] || was_updated; then
echo "updating misc partition"
mount -o remount,rw /dev/block/actb /misc
rm -f /misc/uImage
cp $SYSTEM_PATH/dat/uImage /misc
cp $SYSTEM_PATH/dat/dmenu.bin /misc
if [ ! -f $FLAG_PATH ]; then
# only replace boot logo on install not update!
cp $SYSTEM_PATH/dat/boot_logo.bmp.gz /misc
fi
cp $SYSTEM_PATH/dat/kernel.dtb /misc
cp $SYSTEM_PATH/dat/gpio_keys_polled.ko /misc/modules
touch $FLAG_PATH
sync && reboot
fi