summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 4775ff4b99988a94628561d022c01c0cd3abeaca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
language: c
compiler:
  - gcc
  - clang
sudo: false

addons:
  apt:
    packages:
    - libnl-3-dev
    - libnl-genl-3-dev
    - libnl-route-3-dev
    - libnetfilter-conntrack-dev
    - libgeoip-dev
    - liburcu-dev
    - libpcap-dev
    - libnet1-dev
    - libcli-dev

script: CC=$CC ./configure && make CC=$CC
' onchange='this.form.submit();'>
authorLinus Torvalds <torvalds@linux-foundation.org>2016-09-03 11:36:55 -0700
committerLinus Torvalds <torvalds@linux-foundation.org>2016-09-03 11:36:55 -0700
commit41488202f1afac2e7425cc4d4a3b4208c3e2cc8c (patch)
treea5ccee1c7c95ec760b8abe3c6230a8adfee03c7f /Documentation
parent018c81b827563c4d64ad79f9b90ea985a65bff4d (diff)
parent17d0774f80681020eccc9638d925a23f1fc4f671 (diff)
Merge tag 'driver-core-4.8-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core
Pull driver core fixes from Greg KH: "Here are three small fixes for 4.8-rc5. One for sysfs, one for kernfs, and one documentation fix, all for reported issues. All of these have been in linux-next for a while" * tag 'driver-core-4.8-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core: sysfs: correctly handle read offset on PREALLOC attrs documentation: drivers/core/of: fix name of of_node symlink kernfs: don't depend on d_find_any_alias() when generating notifications
Diffstat (limited to 'Documentation')