-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
…b/scm/linux/kernel/git/shuah/linux-kselftest Pull kselftest updates from Shuah Khan: "This update consists of: - Fixes and improvements to existing tests - Moving code from Documentation to selftests, samples, and tools: * Moves dnotify_test, prctl, ptp, vDSO, ia64, watchdog, and networking tests from Documentation to selftests. * Moves mic/mpssd, misc-devices/mei, timers, watchdog, auxdisplay, and blackfin examples from Documentation to samples. * Moves accounting, laptops/dslm, and pcmcia/crc32hash tools from Documentation to tools. * Deletes BUILD_DOCSRC and its dependencies" * tag 'linux-kselftest-4.9-rc1-update' of git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest: (21 commits) selftests/futex: Check ANSI terminal color support Doc: update 00-INDEX files to reflect the runnable code move samples: move blackfin gptimers-example from Documentation tools: move pcmcia crc32hash tool from Documentation tools: move laptops dslm tool from Documentation tools: move accounting tool from Documentation samples: move auxdisplay example code from Documentation samples: move watchdog example code from Documentation samples: move timers example code from Documentation samples: move misc-devices/mei example code from Documentation samples: move mic/mpssd example code from Documentation selftests: Move networking/timestamping from Documentation selftests: move watchdog tests from Documentation/watchdog selftests: move ia64 tests from Documentation/ia64 selftests: move vDSO tests from Documentation/vDSO selftests: move ptp tests from Documentation/ptp selftests: move prctl tests from Documentation/prctl selftests: move dnotify_test from Documentation/filesystems selftests/timers: Add missing error code assignment before test selftests/zram: replace ZRAM_LZ4_COMPRESS ...
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1 @@ | ||
subdir-y := accounting auxdisplay blackfin \ | ||
filesystems filesystems ia64 laptops mic misc-devices \ | ||
networking pcmcia prctl ptp timers vDSO watchdog | ||
subdir-y := |
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,6 @@ | ||
00-INDEX | ||
- This file | ||
Makefile | ||
- Makefile for gptimers example file. | ||
bfin-gpio-notes.txt | ||
- Notes in developing/using bfin-gpio driver. | ||
bfin-spi-notes.txt | ||
- Notes for using bfin spi bus driver. | ||
gptimers-example.c | ||
- gptimers example |
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6442,6 +6442,7 @@ F: include/linux/mei_cl_bus.h | |
F: drivers/misc/mei/* | ||
F: drivers/watchdog/mei_wdt.c | ||
F: Documentation/misc-devices/mei/* | ||
F: samples/mei/* | ||
|
||
INTEL MIC DRIVERS (mic) | ||
M: Sudeep Dutt <[email protected]> | ||
|
@@ -9383,6 +9384,7 @@ W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia | |
T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git | ||
S: Maintained | ||
F: Documentation/pcmcia/ | ||
F: tools/pcmcia/ | ||
F: drivers/pcmcia/ | ||
F: include/pcmcia/ | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
CC := $(CROSS_COMPILE)gcc | ||
CFLAGS := -I../../usr/include | ||
|
||
PROGS := cfag12864b-example | ||
|
||
all: $(PROGS) | ||
|
||
clean: | ||
rm -fr $(PROGS) |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
obj-$(CONFIG_SAMPLE_BLACKFIN_GPTIMERS) += gptimers-example.o |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
CC := $(CROSS_COMPILE)gcc | ||
CFLAGS := -I../../usr/include | ||
|
||
PROGS := mei-amt-version | ||
|
||
all: $(PROGS) | ||
|
||
clean: | ||
rm -fr $(PROGS) |