Coming back to this. You stated that by booting Raspbian in the same HW configuration (display connectivity) gives you a brighter text console.
By default, Raspbian has all the options in /boot/config.txt disabled, except turning on the audio: dtparam=audio=on
This is what led me to believe that you might have some other options enabled in /boot/config.txt for your Slackware installation.
There are many related to the video configuration, not sure if any of them could influence the brightness:
https://www.raspberrypi.org/document...g-txt/video.md
I'm rarely booting Raspbian, mostly for getting the kernel headers for the official Raspberry kernel, but I don't remember observing any brightness differences between the Raspbian console and the Slackware one, for both Slackware ARM 14.2 & -current.
You can apply a "trick" that I'm using on very old/tired displays when working in bright environments, setting the console text on bold white - actually it will be bright white:
Code:
/usr/bin/setterm -foreground white -bold on -store
If you want to make it default for the active user, just create a file .bash_profile in the home of the user and put the command from above inside it.
Note that with this you'll loose some highlighting defined in /etc/DIR_COLORS, which is the file you can play with for defining your own shell colors, together with /etc/profile for defining the shell prompt colors & other personalizations. Handle with care.
https://unix.stackexchange.com/quest...ll-environment
Another option would be to boot the latest official kernel from Raspberry, the one Raspbian is booting and check if you still have the brightness problem.
If you want to try this, go to the section "Follow the manual installation method" from this post:
https://www.linuxquestions.org/quest...4/#post5862696
Use the latest Raspbian image:
http://director.downloads.raspberryp...retch-lite.zip
Use the default /boot/config.txt and /boot/cmdline.txt that you extracted from the Raspbian image and don't forget to modify the /boot/cmdline.txt before you reboot, like this (check with mount or cat /etc/fstab to make sure your root partition is on /dev/mmcblk0p2):
Code:
dwc_otg.lpm_enable=0 console=serial0,115200 console=tty1 root=/dev/mmcblk0p2 rootfstype=ext4 elevator=deadline fsck.repair=yes rootwait
P.S.
If you like to change the console font, you can use setconsolefont
https://docs.slackware.com/slackware...e_console_font
And this might be also useful for orientation:
https://docs.slackware.com/howtos:cli_manual:shells