Is there PINE64 official source code repository for android and its kernel?
I only see some personal github address for android 6/7.
Please give the help.
Thank in advance!
I like to use Gkrellm2 on linux Desktop, the one plugin I use the most is gkrellmlaunch, it allows me to get everything done from a simple light weight interface. However, it is never included in distributions, I will attach same for access.
Here is a little script I fire from launch.
Code:
#!/bin/bash
#
# updater designed to keep system at latest state & clean
#
echo 'The following will be completed, Autoremove will require response.'
echo
echo 'Update, Upgrade, Dist-Upgrade, Autoremove and Clean'
echo
read -n1 -r -p "Press SPACE to continue or Ctrl+C to exit ... " key
echo
if [ "$key" = '' ]; then
echo "Continuing ..."
fi
echo
sudo apt-get update && sudo apt-get -y upgrade && sudo apt-get -y dist-upgrade && sudo apt-get autoremove && sudo apt-get clean
echo 'Have a nice day!'
What are the chances of Pine developing a much thinner board?
ie get rid of the double row full size USB hub and ethernet, as well as swapping the pin slots for ones with 90 degree facing ones?
The current board is incredibly thick when put inside a case...particularly when combined with touchscreen. This kind of configuration would want to replicate a relatively thin tablet configuration would it not?
That all worked well, everything is running except on the serial console and in dmesg, I am getting spurious interrupts on irq 27 which I think is the SD card controller.
gic0: Spurious interrupt detected: last irq: 27 on CPU1
gic0: Spurious interrupt detected: last irq: 27 on CPU3
The messages only seem to occur when the SD card is being accessed. I tried a high speed SDHI card and it made no difference, the board is being powered off a 5A USB supply and drawing only about 100mA when the SD card is being accessed, so it doesn't seem to be a power issue.
Is anyone else running FreeBSD and getting the same spurious interrupts?