initial commit of lk (little kernel) project

This commit is contained in:
Travis Geiselbrecht
2008-09-01 02:26:09 -07:00
commit 1d0df69964
329 changed files with 49563 additions and 0 deletions

7
scripts/buildall Executable file
View File

@@ -0,0 +1,7 @@
#!/bin/sh
PROJECTS="armemu-test armemu-lwip sam7ex256-test osk5912-test qemu-arm-test beagle-test"
for p in $PROJECTS; do
PROJECT=$p make -j2
done

7
scripts/do-armemu-lwip Executable file
View File

@@ -0,0 +1,7 @@
#!/bin/sh
export PROJECT=armemu-lwip
make -C ../armemu &&
make &&
(cd build-$PROJECT; sudo ../../armemu/build-generic/armemu)

7
scripts/do-armemu-test Executable file
View File

@@ -0,0 +1,7 @@
#!/bin/sh
export PROJECT=armemu-test
make -C ../armemu &&
make &&
(cd build-$PROJECT; ../../armemu/build-generic/armemu)

6
scripts/do-beagle-test Executable file
View File

@@ -0,0 +1,6 @@
#!/bin/sh
export PROJECT=beagle-test
make &&
scp build-beagle-test/lk.bin mbp:/Volumes/FOO

6
scripts/do-osk5912-test Executable file
View File

@@ -0,0 +1,6 @@
#!/bin/sh
export PROJECT=osk5912-test
make &&
scp build-osk5912-test/lk.bin four:/tftproot

6
scripts/do-sam7ex256-test Executable file
View File

@@ -0,0 +1,6 @@
#!/bin/sh
export DEBUG=true
export PROJECT=sam7ex256-test
make

7
scripts/tagit Executable file
View File

@@ -0,0 +1,7 @@
#!/bin/sh
FILES=`find . -type f -regex ".*\.[chS]\|.*\.cpp"`
echo running ctags
exuberant-ctags $FILES