1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/sys/include/net/gnrc
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
```
2017-03-15 09:31:20 +01:00
..
icmpv6 *: remove trailing underscores from header guards 2017-01-19 18:30:53 +01:00
ipv6 Merge pull request #6684 from OlegHahm/ng_cleanup 2017-03-11 20:09:49 +01:00
mac netdev2: rename to netdev and remove gnrc_netdev 2017-03-15 09:31:20 +01:00
ndp *: remove trailing underscores from header guards 2017-01-19 18:30:53 +01:00
netdev netdev2: rename to netdev and remove gnrc_netdev 2017-03-15 09:31:20 +01:00
netif doc: gnrc: fix doxygen and add missing doc 2017-03-10 14:56:28 +01:00
rpl doc: gnrc: fix doxygen and add missing doc 2017-03-10 14:56:28 +01:00
sixlowpan doc: gnrc: fix doxygen and add missing doc 2017-03-10 14:56:28 +01:00
tcp gnrc_tcp: cleanup: removed unnecessary includes 2017-02-26 17:31:23 +01:00
conn.h net: cleanup ng_ remnants 2017-03-02 14:19:25 +01:00
icmpv6.h *: remove trailing underscores from header guards 2017-01-19 18:30:53 +01:00
ipv6.h gnrc, ipv6: add documentation on MACRO GNRC_IPV6_STATIC_LLADDR 2017-02-28 20:09:40 +01:00
ndp.h *: remove trailing underscores from header guards 2017-01-19 18:30:53 +01:00
netapi.h *: remove trailing underscores from header guards 2017-01-19 18:30:53 +01:00
netdev.h netdev2: rename to netdev and remove gnrc_netdev 2017-03-15 09:31:20 +01:00
neterr.h *: remove trailing underscores from header guards 2017-01-19 18:30:53 +01:00
netif.h *: remove trailing underscores from header guards 2017-01-19 18:30:53 +01:00
netreg.h doc: gnrc: fix doxygen and add missing doc 2017-03-10 14:56:28 +01:00
nettest.h *: remove trailing underscores from header guards 2017-01-19 18:30:53 +01:00
nettype.h *: remove trailing underscores from header guards 2017-01-19 18:30:53 +01:00
pkt.h *: remove trailing underscores from header guards 2017-01-19 18:30:53 +01:00
pktbuf.h gnrc/pktbuf: remove unused #include "atomic.h" 2017-02-08 16:23:47 +01:00
pktdump.h *: remove trailing underscores from header guards 2017-01-19 18:30:53 +01:00
pktqueue.h *: remove trailing underscores from header guards 2017-01-19 18:30:53 +01:00
priority_pktqueue.h gnrc_priority_queue: fix doxygen document. 2016-12-10 18:56:13 +01:00
rpl.h *: remove trailing underscores from header guards 2017-01-19 18:30:53 +01:00
sixlowpan.h *: remove trailing underscores from header guards 2017-01-19 18:30:53 +01:00
slip.h *: remove trailing underscores from header guards 2017-01-19 18:30:53 +01:00
tcp.h gnrc_tcp: cleanup: removed unnecessary includes 2017-02-26 17:31:23 +01:00
tftp.h *: remove trailing underscores from header guards 2017-01-19 18:30:53 +01:00
udp.h *: remove trailing underscores from header guards 2017-01-19 18:30:53 +01:00