projects
/
akaros.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Basic layout of the driver is sorta done.
[akaros.git]
/
scripts
/
fixincludes
1
#!/bin/sh
2
# N.B. Preserve blank line we match against so this is idempotent.
3
sed -i '/^#include/,/^$/c\
4
#include <vfs.h>\
5
#include <kfs.h>\
6
#include <slab.h>\
7
#include <kmalloc.h>\
8
#include <kref.h>\
9
#include <string.h>\
10
#include <stdio.h>\
11
#include <assert.h>\
12
#include <error.h>\
13
#include <cpio.h>\
14
#include <pmap.h>\
15
#include <smp.h>\
16
#include <ip.h>\
17
' $1