Skip to content

Commit

Permalink
Merge pull request #20 from r3claimer/dev
Browse files Browse the repository at this point in the history
fix rgb30 led control
  • Loading branch information
r3claimer authored Mar 29, 2024
2 parents b3bcc69 + f1eec1b commit 55c8d5a
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ S922X:

RK3566:
unset DEVICE_ROOT
DEVICE_ROOT=RK3566 PROJECT=Rockchip DEVICE=RK3566 ARCH=arm ./scripts/build_distro
DEVICE_ROOT=RK3566 PROJECT=Rockchip DEVICE=RK3566 ARCH=aarch64 ./scripts/build_distro
PROJECT=Rockchip DEVICE=RK3566 ARCH=arm ./scripts/build_distro
PROJECT=Rockchip DEVICE=RK3566 ARCH=aarch64 ./scripts/build_distro

RK3326:
unset DEVICE_ROOT
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/bin/sh
# SPDX-License-Identifier: GPL-2.0
# Copyright (C) 2023 JELOS (https://github.com/JustEnoughLinuxOS)

cat <<EOF >/storage/.config/profile.d/010-led_control
EOF
12 changes: 6 additions & 6 deletions packages/rocknix/sources/scripts/rocknix-info
Original file line number Diff line number Diff line change
Expand Up @@ -153,11 +153,11 @@ esac
echo "RAM INFORMATION:"
echo "RAM AVAILABLE: ${MEMAV} MB"
echo "RAM CAPACITY: ${MEMT} MB"
if [ ! -z "$CFREQ}" ]; then
echo "RAM CURRENT SPEED: ${CFREQ} MHZ"
if [ ! -z "$MFREQ}" ]; then
echo "RAM MAX SPEED: ${MFREQ} MHZ"
fi
fi
#if [ ! -z "$CFREQ}" ]; then
#echo "RAM CURRENT SPEED: ${CFREQ} MHZ"
# if [ ! -z "$MFREQ}" ]; then
# echo "RAM MAX SPEED: ${MFREQ} MHZ"
# fi
#fi

info_quirks

0 comments on commit 55c8d5a

Please sign in to comment.