LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware > Slackware - ARM
User Name
Password
Slackware - ARM This forum is for the discussion of Slackware ARM.

Notices


Reply
  Search this Thread
Old 06-02-2021, 03:07 AM   #31
Exaga
SARPi Maintainer
 
Registered: Nov 2012
Distribution: Slackware AArch64
Posts: 1,043

Rep: Reputation: 665Reputation: 665Reputation: 665Reputation: 665Reputation: 665Reputation: 665

Quote:
Originally Posted by glorsplitz View Post
I wasn't paying attention to all that came with my rpi4 kit, that power switch thingy is cool.
The reason for the in-line power switch is mainly down to prior experience from constantly powering on/off the Raspberry Pi devices (i.e. repeatedly unpluging and re-connecting the power jack to the 5v sockets an untold number of times on a frequent basis).

With the micro-USB power socket, on all previous models to the Raspberry Pi 4, I found that over years of frequent use, if I had not been gentle and careful enough when connecting and disconnecting the PSU plug, the power socket became stretched and the plug was not a snug fit once it was seated. Not that this caused any real problems with power but I wanted to eliminate the risk of any such faults happenning. The USB-C connector on the Raspberry Pi 4 seems to be a little more robust and may stand the test of time, but I didn't want to encourage any similar issues arising with it.

These in-line power switches are perfect for the job and can stay connected permanently. I use them for both the micro-USB and USB-C sockets on the Raspberry Pi devices nowadays. The Raspberry Pi 4 on the far left of the image ("kron") doesn't feature an in-line power switch because that's the Slackware ARM current Apache server/NTP server system running from a SSD which stays active 24/7.

Last edited by Exaga; 06-02-2021 at 03:13 AM. Reason: yes
 
Old 06-02-2021, 04:05 AM   #32
drmozes
Slackware Contributor
 
Registered: Apr 2008
Distribution: Slackware
Posts: 1,543

Original Poster
Rep: Reputation: 1313Reputation: 1313Reputation: 1313Reputation: 1313Reputation: 1313Reputation: 1313Reputation: 1313Reputation: 1313Reputation: 1313Reputation: 1313
Quote:
Originally Posted by Exaga View Post
With the micro-USB power socket, on all previous models to the Raspberry Pi 4, I found that over years of frequent use, if I had not been gentle and careful enough when connecting and disconnecting the PSU plug, the power socket became stretched and the plug was not a snug fit once it was seated. Not that this caused any real problems with power
I had the same problem and ended up taping the power cable onto the case to keep it securely seated.
You can also get these type of power strips with individual controls for each socket, which is what I now use.
Attached Thumbnails
Click image for larger version

Name:	IMG_6367.jpg
Views:	44
Size:	250.1 KB
ID:	36506  
 
Old 06-02-2021, 06:22 AM   #33
enine
Senior Member
 
Registered: Nov 2003
Distribution: Slackʍɐɹǝ
Posts: 1,486
Blog Entries: 4

Rep: Reputation: 282Reputation: 282Reputation: 282
I've never liked microUSB, it seemed a lot less robust than miniUSB even. I bought cheap protoboards and feed mine via the GPIO.
Attached Thumbnails
Click image for larger version

Name:	shrunk-20210306_180658.jpg
Views:	47
Size:	128.1 KB
ID:	36507  
 
Old 06-02-2021, 06:49 AM   #34
Exaga
SARPi Maintainer
 
Registered: Nov 2012
Distribution: Slackware AArch64
Posts: 1,043

Rep: Reputation: 665Reputation: 665Reputation: 665Reputation: 665Reputation: 665Reputation: 665
Quote:
Originally Posted by drmozes View Post
I had the same problem and ended up taping the power cable onto the case to keep it securely seated.
You can also get these type of power strips with individual controls for each socket, which is what I now use.
I have... (Hmmm, I think we have discussed this in detail in the past...) a power extension like the one in your pic but it has 4x 4Amp USB sockets built-in which I power the SARPi build machines from. Additionally, there's 6x 3-pin 13Amp power sockets with individual on/off switching for PSUs and other power cables, etc.

The brand I chose is Xenta. Like this one: https://www.amazon.co.uk/Xenta-Power.../dp/B01KG2T82C
 
Old 06-13-2021, 08:46 AM   #35
mralk3
Slackware Contributor
 
Registered: May 2015
Distribution: Slackware
Posts: 1,900

Rep: Reputation: 1050Reputation: 1050Reputation: 1050Reputation: 1050Reputation: 1050Reputation: 1050Reputation: 1050Reputation: 1050
I have an installation of Slackware Aarch64-current running on the Raspberry Pi 4.

I used the mainline kernel, dtbs, modules and firmware that come with Slackware. No need to (re)compile a kernel anymore. I did use the raspberry pi firmware for /boot from GitHub.

Next steps will be to fill in the blanks in the platform script within the initrd. Then adjust the installer to accommodate minor changes.

Any suggestions are welcome.

Progress!
Attached Thumbnails
Click image for larger version

Name:	oXVGd1d.jpg
Views:	48
Size:	271.6 KB
ID:	36604  
 
2 members found this post helpful.
Old 06-18-2021, 05:46 PM   #36
slac-in-the-box
Member
 
Registered: Mar 2010
Location: oregon
Distribution: slackware64-15.0 / slarm64-current
Posts: 780
Blog Entries: 1

Rep: Reputation: 432Reputation: 432Reputation: 432Reputation: 432Reputation: 432
I've been running slarm64-current on the pinebook pro with LUKS+LVM.

To do that, I started with sndwvs' microsd as a base, from which I built custom kernel and then installed on internal eMMC.

The only reason I built a custom kernel and deviated from our community's build was due to the following note on custom kernels in slackware's README_CRYPT.TXT file:

Quote:
A note on custom kernels
------------------------

If you want to compile your own custom kernel to work with LUKS encrypted
partitions, you need to enable at least the following two options in your
kernel configuration:

Multiple devices driver support (RAID and LVM) --->
<*> Device mapper support
<*> Crypt target support

This is equivalent to the following options in your .config file:

CONFIG_BLK_DEV_DM=y
CONFIG_DM_CRYPT=y

Do not compile these as module! They are required in your kernel.
The kernel shipped with the pinebook pro image shared at the pine64 forum, had those two kernel options configured as modules. Those were the only changes to the kernel configuration I made.

The LUKS works, but the key has to be entered in the dark (the display hasn't lit up yet, even though it's at the prompt). Just another level of stealth

I mention it here in case those revisions want to be included.


--cheers

Last edited by slac-in-the-box; 06-18-2021 at 05:48 PM. Reason: added the -current
 
Old 06-27-2021, 06:12 AM   #37
Linux.tar.gz
Senior Member
 
Registered: Dec 2003
Location: Paris
Distribution: Slackware forever.
Posts: 2,534

Rep: Reputation: 100Reputation: 100
Any update on this ?
The slackwareaarch64-current/ folder vanished from arm.slackware.com !
 
Old 06-27-2021, 06:45 AM   #38
pchristy
Senior Member
 
Registered: Oct 2012
Location: South Devon, UK
Distribution: Slackware
Posts: 1,119

Rep: Reputation: Disabled
Its vanished from Slackware.uk too!

Re-structuring prior to release? We can but wait in anticipation!



--
Pete
 
Old 06-27-2021, 04:16 PM   #39
slac-in-the-box
Member
 
Registered: Mar 2010
Location: oregon
Distribution: slackware64-15.0 / slarm64-current
Posts: 780
Blog Entries: 1

Rep: Reputation: 432Reputation: 432Reputation: 432Reputation: 432Reputation: 432
I noticed this mirror: https://dl.slarm64.org/slarm64/slarm64-current/ (I manually accepted the certificate the first time, when firefox complained about it being self-signed)...
 
Old 06-28-2021, 06:03 AM   #40
Exaga
SARPi Maintainer
 
Registered: Nov 2012
Distribution: Slackware AArch64
Posts: 1,043

Rep: Reputation: 665Reputation: 665Reputation: 665Reputation: 665Reputation: 665Reputation: 665
Quote:
Originally Posted by Linux.tar.gz View Post
Any update on this ?
The slackwareaarch64-current/ folder vanished from arm.slackware.com !
I wouldn't be too concerned at this point. MoZes is not known for releasing anything that's less than perfect as possible, if not 100% perfect in all aspects. Just hang on in there and keep your eyes peeled.

Quote:
Originally Posted by pchristy View Post
Its vanished from Slackware.uk too!
Slackware.uk mirrors arm.slackware.com so if it's missing from the main repository then it's not at all surprising.
 
Old 06-28-2021, 06:10 AM   #41
pchristy
Senior Member
 
Registered: Oct 2012
Location: South Devon, UK
Distribution: Slackware
Posts: 1,119

Rep: Reputation: Disabled
I'm not unduly worried! The "missing" folders didn't seem to have anything like a full system, so I assumed the were just "holding" pending being filled.

The fact they have disappeared may actually be good news! Maybe he's filling them up on his local server prior to releasing? Either way, I'm sure he'll be along in a while with an update for those of us chomping at the bit!

In the meantime, Slarm64 is doing sterling service!

--
Pete

Last edited by pchristy; 06-28-2021 at 06:11 AM.
 
1 members found this post helpful.
Old 09-21-2021, 09:48 AM   #42
mralk3
Slackware Contributor
 
Registered: May 2015
Distribution: Slackware
Posts: 1,900

Rep: Reputation: 1050Reputation: 1050Reputation: 1050Reputation: 1050Reputation: 1050Reputation: 1050Reputation: 1050Reputation: 1050
A small update on my end: https://exitstatus.one/slackware-aar...-pinebook-pro/

I've also modified the way I am booting my Raspberry Pi 4 so that no modifications are required to be made in the Slackware tree.

U-boot and SD Image scripts: https://slackware.uk/slackwarearm/pe...e-aarch64-rpi/
 
Old 09-22-2021, 03:27 AM   #43
drmozes
Slackware Contributor
 
Registered: Apr 2008
Distribution: Slackware
Posts: 1,543

Original Poster
Rep: Reputation: 1313Reputation: 1313Reputation: 1313Reputation: 1313Reputation: 1313Reputation: 1313Reputation: 1313Reputation: 1313Reputation: 1313Reputation: 1313
Quote:
Originally Posted by mralk3 View Post
Thanks Brent. I've added libahci ahci sdhci sdhci_pltfm roles to the main loader script for all Hardware Models.
'drm' is already loaded so you don't need that one.

For the others, you could move them into the rpi4 loader script and I'll include them within the next build.
 
Old 09-22-2021, 08:53 AM   #44
mralk3
Slackware Contributor
 
Registered: May 2015
Distribution: Slackware
Posts: 1,900

Rep: Reputation: 1050Reputation: 1050Reputation: 1050Reputation: 1050Reputation: 1050Reputation: 1050Reputation: 1050Reputation: 1050
My bcm2711 script is here: https://slackware.uk/slackwarearm/pe...64-rpi/bcm2711

I will be able to test it this weekend. I have a NAS case and miscellaneous coming in the mail. Yes, I am just now getting a proper case for the RockPro64.
 
Old 09-23-2021, 03:23 AM   #45
drmozes
Slackware Contributor
 
Registered: Apr 2008
Distribution: Slackware
Posts: 1,543

Original Poster
Rep: Reputation: 1313Reputation: 1313Reputation: 1313Reputation: 1313Reputation: 1313Reputation: 1313Reputation: 1313Reputation: 1313Reputation: 1313Reputation: 1313
Quote:
Originally Posted by mralk3 View Post
My bcm2711 script is here: https://slackware.uk/slackwarearm/pe...64-rpi/bcm2711

I will be able to test it this weekend. I have a NAS case and miscellaneous coming in the mail. Yes, I am just now getting a proper case for the RockPro64.
Ok, I've merged those modules in. I've also made os-initrd-mgr handle /etc/mdadm.conf.
You bought the big black case? I like those ones.
 
  


Reply

Tags
aarch64, arm64, sa64, slackware aarch64, slackware-aarch64



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
AArch64 kernel and modules to install Slackware ARM current on the RPi3 Exaga Slackware - ARM 27 02-07-2017 10:45 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware > Slackware - ARM

All times are GMT -5. The time now is 10:15 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration