Samsung backlight still not working by default on these machines? I thought this was the kernel default but seems not to work for me. You can install the module manually though:
get samsung-backlight.c from
https://github.com/gregkh/samsung-ba...ng-backlight.c
create this Makefile:
Code:
obj-m := samsung-backlight.o
KERNELDIR ?= /lib/modules/$(shell uname -r)/build
PWD := $(shell pwd)
all:
$(MAKE) -C $(KERNELDIR) M=$(PWD)
clean:
rm -f *.o *~ core .depend .*.cmd *.ko *.mod.c
rm -f Module.markers Module.symvers modules.order
rm -rf .tmp_versions Modules.symvers
then change to the directory containing Makefile and samsung-backlight.c and build and install:
Code:
sudo yum install gcc kernel-devel
make
sudo cp samsung-backlight.ko /lib/modules/$(uname -r)/extra/
sudo depmod
Then reboot, and Fn + Up/Down should control brightness.