Results 531 to 540 of 1355
-
2019-11-20, 03:19 #531
- Join Date
- Feb 2006
- Posts
- 31
-
2019-11-20, 03:23 #532
- Join Date
- Apr 2008
- Posts
- 1,440
-
2019-11-20, 03:43 #533
- Join Date
- Feb 2006
- Posts
- 31
-
2019-11-20, 03:50 #534
- Join Date
- Apr 2008
- Posts
- 1,440
32bit b7
I have b1 so I fresh installed that and then did an insitu update to B7. It wouldn't boot after that and I don't have a screen to see what is happening. I did find that I have a b5 version so I am running that and it works fine and gives me what I wanted.
Thanks,
Howard
-
2019-11-20, 07:31 #535
A pi3b/b+ should be using the armv7 kernel. Can you check your config.txt and post it?
As for the spotty helper? Are you supplying a static binary? If so aarch64 should not be a problem. Otherwise how does Perl identify the arch? Can we wrap slimserver.pl with setarch?piCorePlayer a small player for the Raspberry Pi in RAM.
Homepage: https://www.picoreplayer.org
Please donate if you like the piCorePlayer
-
2019-11-20, 12:46 #536piCorePlayer a small player for the Raspberry Pi in RAM.
Homepage: https://www.picoreplayer.org
Please donate if you like the piCorePlayer
-
2019-11-20, 16:19 #537
No, it's not a static binary for ARM. I had one for a while, but it recently caused more problems than the dynamically linked version.
Wouldn't there be a way to get the config.txt from the web UI? I didn't find it...
Code:# For more options and information see # http://rpf.io/configtxt # Some settings may impact device functionality. See link above for details [PI0] initramfs pcp_10.2.gz followkernel kernel kernel41980.img [PI1] initramfs pcp_10.2.gz followkernel kernel kernel41980.img [PI2] initramfs pcp_10.2v7.gz followkernel kernel kernel41980v7.img [PI3] initramfs pcp_10.2v7.gz followkernel kernel kernel41980v7.img [PI4] arm_64bit=1 initramfs pcp_10.2v8.gz followkernel kernel kernel41980v8.img [ALL] cmdline cmdline.txt # uncomment if you get no picture on HDMI for a default "safe" mode #hdmi_safe=1 # uncomment this if your display has a black border of unused pixels visible # and your display can output without overscan #disable_overscan=1 # uncomment the following to adjust overscan. Use positive numbers if console # goes off screen, and negative if there is too much border #overscan_left=16 #overscan_right=16 #overscan_top=16 #overscan_bottom=16 # uncomment to force a console size. By default it will be display's size minus # overscan. #framebuffer_width=1280 #framebuffer_height=720 # uncomment if hdmi display is not detected and composite is being output # uncomment to force a specific HDMI mode (this will force VGA) #hdmi_group=1 #hdmi_mode=1 # uncomment to force a HDMI mode rather than DVI. This can make audio work in # DMT (computer monitor) modes # uncomment to increase signal to HDMI, if you have interference, blanking, or # no display #config_hdmi_boost=4 # uncomment for composite PAL #sdtv_mode=2 #---------------------------------------------------- dtparam=i2c_arm=on,spi=on,i2s=on #---pCP---------------------------------------------- # pCP does not use graphics chip by default, free up most memory gpu_mem=16 initial_turbo=60 disable_pvt=1 # onboard audio overlay dtparam=audio=on audio_pwm_mode=2 #Disable Bluetooth on both rpi3 and rpi0W dtoverlay=disable-bt # uncomment to overclock the arm. 700 MHz is the default. #arm_freq= #gpu_freq= #core_freq= #sdram_freq= #over_voltage= #force_turbo= # Force max current to USB max_usb_current=1 # Remove audio hiss # disable_audio_dither=1 #If booting from USB or network, enable this option to reduce CPU load looking for a non-existing card. #dtoverlay=sdtweak,poll_once # Screen rotation 0 => 0 degrees, 2 => 180 degrees lcd_rotate=2 #Custom Configuration Area, for config settings that are not managed by pCP. #pCP will retain these settings during insitu-update #---Begin-Custom-(Do not alter Begin or End Tags)----- #---End-Custom----------------------------------------
Michael
"It doesn't work - what shall I do?" - "Please check your server.log and/or scanner.log file!"
(LMS: Settings/Information)
-
2019-11-20, 19:40 #538
- Join Date
- Apr 2008
- Posts
- 1,440
-
2019-11-20, 19:47 #539
Okay, the config.txt is good, and the kernel is running would be 32bit. (At least all of my rpi3B/3B+ boards are) Confirm by running uname -a from command line.
I suspect you are looking at the Platform Archtecture reported by lms on the settings information page. That arch is actually not real for the runtime, but the arch of the compile machine that built Perl, even though it was built 32bit, it was showing aarch64, as my build machine is a PI4 4gb running pCP 64 bit kernel.
I updated update my Perl build script to run in a setarch linux32 wrapper, so now Platform arch reads armv8l-linux
Here is my rpi 3B board with the updated perl.
Code:tc@piTouch:~$ uname -a Linux piTouch 4.19.80-pcpCore_v7 #1 SMP Sat Oct 26 00:33:12 EDT 2019 armv7l GNU/Linux tc@piTouch:~$ perl use Config; print $Config{'myarchname'}; armv8l-linux
Last edited by paul-; 2019-11-20 at 20:44.
piCorePlayer a small player for the Raspberry Pi in RAM.
Homepage: https://www.picoreplayer.org
Please donate if you like the piCorePlayer
-
2019-11-20, 19:49 #540piCorePlayer a small player for the Raspberry Pi in RAM.
Homepage: https://www.picoreplayer.org
Please donate if you like the piCorePlayer