ArmbianHelper changed the topic of #armbian to: armbian - Linux for ARM development boards | www.armbian.com | Github: github.com/armbian | Commits: #armbian-commits | Developer talk: #armbian-devel | Forum/Twitter feed: #armbian-rss | Logs: -> irc.armbian.com
norwich_ has joined #armbian
norwich has quit [Ping timeout: 272 seconds]
norwich_ is now known as norwich
tafama has joined #armbian
tafa has quit [Ping timeout: 268 seconds]
califax has quit [Ping timeout: 258 seconds]
califax has joined #armbian
archetech has quit [Quit: Konversation terminated!]
marco44 has quit [Ping timeout: 260 seconds]
marco44 has joined #armbian
riotz has quit [Quit: Leaving]
The_Loko has joined #armbian
aasami_ has joined #armbian
Dagger has quit [Ping timeout: 252 seconds]
Dagger has joined #armbian
xoan has joined #armbian
archetech has joined #armbian
LanDi has joined #armbian
archetech has quit [Quit: Konversation terminated!]
Proxysna has quit [Remote host closed the connection]
archetech has joined #armbian
LanDi has quit [Remote host closed the connection]
califax has quit [Remote host closed the connection]
califax has joined #armbian
califax has quit [Remote host closed the connection]
califax has joined #armbian
xoan has quit [Read error: Connection reset by peer]
xoan has joined #armbian
alekksander has joined #armbian
The_Loko has quit [Quit: Leaving]
califax has quit [Remote host closed the connection]
califax has joined #armbian
lyri has joined #armbian
arch3r has quit [Quit: bye]
arch3r has joined #armbian
xoan8 has joined #armbian
xoan has quit [Ping timeout: 240 seconds]
xoan8 is now known as xoan
riotz has joined #armbian
<Armbian-Discord> <d​ave> @stipa: Apple's NVMe drives are very fast, so swapping isn't a big deal
<stipa> Dagger: you mean using software GPU ?
<Armbian-Discord> <d​ave> What causes the auto-login for armbian on UART?
<stipa> dave*
<Armbian-Discord> <d​ave> you were saying 8GB isn't mich
<Armbian-Discord> <d​ave> *much
<stipa> oh right
<stipa> not much yeah
<Armbian-Discord> <T​enkawa> @dave uart autologin on most systemd distribs is just a another unit
<stipa> doing fast reads and writes on the nvme is kinda sucidal
<stipa> non stop
<Armbian-Discord> <I​gorPec> autologin on first boot is default
<Armbian-Discord> <T​enkawa> I assume it is on Armbian as well
<Armbian-Discord> <I​gorPec> uart is yet another login console for armbian
xoan0 has joined #armbian
<Armbian-Discord> <T​enkawa> @IgorPec that still won't login on is own without a getty
<Armbian-Discord> <T​enkawa> so it needs a unit file
<Armbian-Discord> <T​enkawa> right?
<Armbian-Discord> <d​ave> hmm lemme try rebooting and see
<Armbian-Discord> <I​gorPec> getty is there, yes
<Armbian-Discord> <I​gorPec> but as i said, 1st login accepts login on all consoles
<Armbian-Discord> <I​gorPec> first takes control, logouts others
<Armbian-Discord> <I​gorPec> this is how its designed
<Armbian-Discord> <d​ave> even after a reboot, still have automatic login on serial
<Armbian-Discord> <I​gorPec> if you haven't created root password, that would be normal
xoan has quit [Ping timeout: 260 seconds]
xoan0 is now known as xoan
<Armbian-Discord> <I​gorPec> or if there is SD card failure
<Armbian-Discord> <d​ave> I do have a root password, set it during build time
<Armbian-Discord> <I​gorPec> ahaaa
<Armbian-Discord> <I​gorPec> that's another story
<Armbian-Discord> <I​gorPec> you need to rm /root/.not_logged_in or something
<Armbian-Discord> <d​ave> I did that.
<Armbian-Discord> <I​gorPec> in the build process and this will not start
<Armbian-Discord> <d​ave> rm -f /root/.not_logged_in_yet
<Armbian-Discord> <I​gorPec> hmm
<Armbian-Discord> <I​gorPec> let me check
<ArmbianHelper> ^ build/distro-agnostic.sh at master · armbian/build · GitHub
<Armbian-Discord> <d​ave> so I should add this to my customize-image.sdh? rm -rf /etc/systemd/system/getty@.service.d/ rm -rf /etc/systemd/system/serial-getty@.service.d/
<Armbian-Discord> <I​gorPec> i think you only need to remove this /etc/systemd/system/getty@.service.d/override.conf
<Armbian-Discord> <I​gorPec> if you care, we can also rework this part with a switch
<Armbian-Discord> <d​ave> yeah a switch would be great.
<Armbian-Discord> <d​ave> wouldn't I also need to remove the serial-getty@.service.d override?
<Armbian-Discord> <d​ave> you know what, lemme test it
<Armbian-Discord> <I​gorPec> yeah, and if it works just make a PR
<Armbian-Discord> <I​gorPec> ENABLE_AUTOLOGIN="yes/no" ?
<Armbian-Discord> <d​ave> yeah removing just /etc/systemd/system/getty@.service.d/override.conf doesn't stop auto-login on serial
<Armbian-Discord> <d​ave> had to remove the serial one too, now it's working (asks for login)
<Armbian-Discord> <I​gorPec> whole section under IF then
<Armbian-Discord> <d​ave> Done. https://github.com/armbian/build/pull/4353
<ArmbianHelper> ^ Only enable serial logins if enabled. by Manouchehri · Pull Request #4353 · armbian/build · GitHub
<Armbian-Discord> <I​gorPec> default is enabled
<Armbian-Discord> <I​gorPec> we are changing this for you 😉
<Armbian-Discord> <d​ave> sure 🙂
<Armbian-Discord> <d​ave> so should I check for if [[ -z ${DESKTOP_AUTOLOGIN} == no ]]; then?
<ArmbianHelper> ^ build/main-config.sh at master · armbian/build · GitHub
<ArmbianHelper> ^ build/main-config.sh at master · armbian/build · GitHub
<Armbian-Discord> <d​ave> done
<Armbian-Discord> <I​gorPec> @dave its not just serial. this is for all
<Armbian-Discord> <I​gorPec> CONSOLE_AUTOLOGIN
<Armbian-Discord> <d​ave> ahhh
<Armbian-Discord> <I​gorPec> we don't need to seperate
<Armbian-Discord> <d​ave> aside from the rename, do my changes look fine?
<Armbian-Discord> <I​gorPec> yes, this is it
<Armbian-Discord> <d​ave> kk testing now
<Armbian-Discord> <I​gorPec> ok, when merging check if https://github.com/armbian/build/actions/workflows/build-train.yml is not in full swing
<ArmbianHelper> ^ Actions · armbian/build · GitHub
<Armbian-Discord> <I​gorPec> cause it kills that job and start from scratch
<Armbian-Discord> <I​gorPec> i have to improve this someday
forestj has joined #armbian
<forestj> Hello :) This IRC channel used to be bridged to a matrix channel, is that bridge gone now?
<IgorPec> hellow
<IgorPec> @werner do we have matrix bridge?
<IgorPec> we have bridge to discord
<forestj> I I'm certainly not demanding a matrix bridge, just asking.    Personally I don't think the matrix<-->IRC bridge software is ready for use yet.   It conforms to matrix norms and plays by matrix rules.  So it abuses  IRC users and acts in ways that are offensive to them
<stipa> you can't have enough bridges
<stipa> more is better
riotz has quit [Ping timeout: 240 seconds]
califax has quit [Remote host closed the connection]
califax has joined #armbian
forestj has quit [Quit: Client closed]
<Armbian-Discord> <j​oekhoobyar> Lol stipa
arch3r has quit [Ping timeout: 272 seconds]
arch3r has joined #armbian
<Armbian-Discord> <W​erner> IRC Matrix bridge is provided by Libera Chat
<Armbian-Discord> <W​erner> Out of scope for us if it goes down
xoan has quit [Quit: leaving...]
califax has quit [Ping timeout: 258 seconds]
arch3r has quit [Ping timeout: 246 seconds]
archetech has quit [Quit: Konversation terminated!]
archetech has joined #armbian
CosmicDJ has joined #armbian
arch3r has joined #armbian
<lyri> hi, i'm trying to connect a tft screen (cheap 2.8 320x240 for raspberry pi) to a bananapi m2 zero but all tutorials didnt work. i'm using Ubuntu 22.04.1 LTS. is there an image version and tutorial that works?
arch3r has quit [Ping timeout: 240 seconds]
arch3r has joined #armbian
<stipa> lyri: take a look at the armbian forum if you haven't
<IgorPec> yes, forum would be (only) best place. meeting a person on a live chat with so specific problem is close to impossible
arch3r has quit [Ping timeout: 272 seconds]
alekksander has quit [Quit: Konversation terminated!]
arch3r has joined #armbian
arch3r has quit [Ping timeout: 240 seconds]
arch3r has joined #armbian
arch3r has quit [Ping timeout: 252 seconds]
arch3r has joined #armbian
<Manouchehri> IgorPec: I disagree, I tracked down the u-boot rockchip rng guy and asked him for help ;P
<Armbian-Discord> <I​gorPec> luck doesn't count 😉
lyri has quit [Ping timeout: 240 seconds]
LiberatedSheep has joined #armbian
archetech has quit [Quit: Leaving]
arch3r has quit [Ping timeout: 272 seconds]
arch3r has joined #armbian
<stipa> screen guys usually come and go
arch3r has quit [Ping timeout: 250 seconds]
arch3r has joined #armbian
archetech has joined #armbian
ajfriesen has quit [Quit: The Lounge - https://thelounge.chat]
ajfriesen has joined #armbian
arch3r has quit [Ping timeout: 272 seconds]
arch3r has joined #armbian
aasami_ has quit [Quit: leaving]
willmore_ is now known as willmore
riotz has joined #armbian