You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
RIOT/sys
Martine Lenders 29842bb5e4 netdev2: rename to netdev and remove `gnrc_netdev`
With some minor hand-edits I used the following chain of commands:

```sh
git rm sys/include/net/gnrc/netdev.h
git grep --name-only -i netdev2 | \
        xargs sed -i -e 's/^\(NETDEV\)2\(.*\)\( [("]\)/\1\2 \3/g' \
                     -e 's/\(netdev\)2\(.*\)\( \/\*\*<\)/\1\2 \3/I' \
                     -e 's/\(netdev\)2/\1/gI'
git add -p
git commit --amend
git ls-tree --full-tree -r HEAD --name-only | \
        grep "netdev2" | xargs -I'{}' dirname '{}' | uniq | \
        grep "netdev2" | while read dir; do
                new_dir="$(echo "$dir" | sed "s/netdev2/netdev/g")"
                git mv -f "$dir" "$new_dir"
        done
git commit --amend
git ls-tree --full-tree -r HEAD --name-only | \
        grep "netdev2" | while read file; do
                new_file="$(echo "$file" | sed "s/netdev2/netdev/g")"
                git mv -f "$file" "$new_file"
        done
git commit --amend
git grep --name-only "\<drivers_netdev_netdev\>" | \
        xargs sed -i "s/\<drivers_netdev_netdev\>/drivers_netdev_api/g"
git add -p
git commit --amend
```
6 years ago
..
analog_util sys: s/adc_util/analog_util/ and added DAC mapping 7 years ago
arduino sys/arduino: Make SerialPort constructor explicit 6 years ago
auto_init netdev2: rename to netdev and remove `gnrc_netdev` 6 years ago
base64 sys/base64: corrected output size determination 6 years ago
bitfield core: Fix/refactor function naming in core/incude/irq.h 7 years ago
bloom
cbor cbor: Packed struct to bypass unaligned stack 6 years ago
checksum tests: provide unittests for ucrc16 6 years ago
color sys/color: added RGB inversion and complementary color 7 years ago
cpp11-compat doc: fix and update cpp11 compat doxygen 6 years ago
crypto sys: crypto: remove twofish and rc5 6 years ago
div sys/div: Add support for big 64 bit numbers 6 years ago
ecc sys/ecc/hamming256: fix variableScope 7 years ago
embunit *: remove trailing underscores from header guards 6 years ago
fmt sys: fmt: include stdio.h for mips. 6 years ago
fs devfs: Dynamic file system for device nodes 6 years ago
hashes Merge pull request #6283 from OTAkeys/pr/hmac_iterative_calc 6 years ago
include netdev2: rename to netdev and remove `gnrc_netdev` 6 years ago
isrpipe sys: add isrpipe 6 years ago
libc/include/sys
log sys: fix include headers guards 6 years ago
luid sys/drivers: renamed uuid module to luid 6 years ago
mineplex sys: added 5x5 font 'Mineplex' 6 years ago
net netdev2: rename to netdev and remove `gnrc_netdev` 6 years ago
newlib newlib: Use vfs for file I/O syscalls 6 years ago
od sys: od: Fix build on MIPS gcc. 6 years ago
oneway-malloc sys: fix include headers guards 6 years ago
phydat sys/phydat: adding illuminance unit (Lux) 7 years ago
pipe tests: adapt for arduino uno and duemilanove support 7 years ago
pm_layered sys/pm_layered: fixed doxygen group 6 years ago
posix Merge pull request #6697 from francois-berder-imgtec/awalwm2m 6 years ago
ps ps: Add current stack pointer and start of stack to isr_stack ps output (DEVELHELP) 7 years ago
quad_math
random Added random_init_by_array to tinymt32 wrapper 7 years ago
rtt_stdio rtt_stdio: update for new xtimer api 6 years ago
saul_reg sys/saul_reg: fixed return value for rm() 7 years ago
sema sys/sema: re-implement without IPC 6 years ago
seq seq: bitwise and instead of mod 7 years ago
shell sys/vfs: A virtual file system (VFS) layer for RIOT 6 years ago
timex timex: unambiguous time conversion macros 6 years ago
trickle timex: unambiguous time conversion macros 6 years ago
tsrb
uart_stdio uart_stdio: Bind uart_stdio to vfs fds for stdin/out/err 6 years ago
ubjson
universal_address universal_address: replaced returned literals by defined constants 7 years ago
vfs sys/vfs: A virtual file system (VFS) layer for RIOT 6 years ago
xtimer Merge pull request #6428 from OTAkeys/fix/xtimer_mutex_infinite_loop 6 years ago
Makefile netdev2: rename to netdev and remove `gnrc_netdev` 6 years ago
Makefile.include sys/vfs: A virtual file system (VFS) layer for RIOT 6 years ago
doc.txt