Sorry I didn’t see this earlier. You can use the samsung-backlight driver provided by the Voria PPA to enable the FN brightness buttons on your samung laptop.
If you are still interested or if anyone else is interested this guide may be useful.
*Tested on a Samsung R510/P510 and R530/R730, openSUSE 11.4
How to enable Samsung Fn Brightness buttons in openSUSE 11.4
Please make sure your system is fully up to date, if you are not sure update your system this very moment and reboot.
1. Compile and Install the samsung-backlight driver
Open a terminal
su -c 'zypper install gcc make kernel-devel'
mkdir samsung
cd samsung
wget http://dl.dropbox.com/u/16953763/samsung-backlight.c
wget http://dl.dropbox.com/u/16953763/Makefile
make
su -c 'cp samsung-backlight.ko /lib/modules/$(uname -r)/kernel/'
su -c 'depmod -a'
2. Add acpi_backlight=vendor to your kernel grub entry
Navigate to YaST > System > Boot Loader
Highlight your default kernel entry as shown in the picture below, then click on the ‘Edit’ button.
https://lh3.googleusercontent.com/_-5GrmpmXtLM/TclMegtzRKI/AAAAAAAABe8/xOcJ54Jq07s/1.jpg
In the Optional Kernel Command Line Parameter box add acpi_backlight=vendor as illustrated below.
https://lh3.googleusercontent.com/_-5GrmpmXtLM/TclMf2hKOxI/AAAAAAAABfA/p46mRHlBb4w/2.jpg
Click on ‘OK’ when finished.
3. Additional step for proprietary Nvidia users only (Not applicable to Intel / ATi or Nouveau users)
As an Nvidia user you may also need to add Option “RegistryDwords” “EnableBrightnessControl=1” to your xorg.conf as described in the post above.
4. Reboot your system.
If everything goes well your Fn Brightness buttons will now be functional. However, please note that after every kernel update you will how to recompile the samsung-backlight module and insert it in your kernel.
Therefore do not delete the samsung folder.
4.1 To regain the Fn button functionality after a Kernel update
cd samsung
make
su -c 'cp samsung-backlight.ko /lib/modules/$(uname -r)/kernel/'
su -c 'depmod -a'
And reboot your system.