• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

.gitignoreH A D18-Apr-202016 21

COPYINGH A D18-Apr-20205.4 KiB10989

MakefileH A D18-Apr-20201.1 KiB4129

READMEH A D18-Apr-20201.2 KiB4335

acpi-video-intel-backlight.conf.inH A D18-Apr-2020174 76

asmc_backlight.shH A D18-Apr-20201.4 KiB6957

intel_backlight.1H A D18-Apr-20203.4 KiB111110

intel_backlight.cH A D18-Apr-20204.1 KiB15195

intel_chipset.hH A D18-Apr-202012.4 KiB333265

intel_drm.cH A D18-Apr-20204.5 KiB199135

intel_gpu_tools.hH A D18-Apr-20203.4 KiB11868

intel_mmio.cH A D18-Apr-20206.3 KiB295207

intel_pci.cH A D18-Apr-20203.1 KiB13084

intel_reg.hH A D18-Apr-2020120.3 KiB3,8192,634

intel_reg_map.cH A D18-Apr-20206.2 KiB180137

isl_backlight.shH A D18-Apr-2020712 4237

README

1This allows to control the backlight level on certain Intel(R) GPUs,
2including i915.
3
4This has been taken from intel-gpu-tools which can be found
5here: http://cgit.freedesktop.org/xorg/app/intel-gpu-tools/
6
7Originally ported to FreeBSD by "emmex" of the FreeBSD forums.
8
9Build:
10  pkg install libpciaccess libdrm
11  make
12  make install-setuid-strip
13
14(this installs intel_backlight setuid root, so any user can execute it).
15
16Usage:
17  $ intel_backlight
18  current backlight value: 30% (281/937)
19  $ intel_backlight 50
20  current backlight value: 15% (141/937)
21  set backlight to 50% (469/937)
22  $ intel_backlight incr
23  current backlight value: 50% (469/937)
24  set backlight to 51% (478/937)
25  $ intel_backlight incr
26  current backlight value: 51% (478/937)
27  set backlight to 60% (562/937)
28  $ intel_backlight incr
29  current backlight value: 60% (562/937)
30  set backlight to 70% (656/937)
31  $ intel_backlight decr
32  current backlight value: 70% (656/937)
33  set backlight to 60% (562/937)
34  $ intel_backlight decr
35  current backlight value: 60% (562/937)
36  set backlight to 51% (478/937)
37
38The included example allows adjusting brightness automatically based on the
39input of the isl driver (currently not part of standard FreeBSD).
40
41Usage:
42  ./isl_backlight.sh &
43