listsrcdirs revision 1.1
1# $NetBSD: listsrcdirs,v 1.1 2013/02/13 18:45:20 pooka Exp $ 2# 3 4# 5# Run this script with a shell which supports brace expansion (bash, csh, etc.) 6# It will echo all of the NetBSD source directories required to build rump 7# kernels with TOOLS_BUILDRUMP=yes (used for example by buildrump.sh). 8# Feed the output to whichever method you use to obtain NetBSD sources, e.g. 9# 10# bash listsrcdirs | xargs cvs -d anoncvs@anoncvs.netbsd.org:/cvsroot -z3 co -P 11# 12 13echo src/{build.sh,Makefile,Makefile.inc} \ 14 src/{sys,tools,common,include} \ 15 src/share/mk \ 16 src/etc/{Makefile.params,master.passwd,group} \ 17 src/lib/lib{c,util} \ 18 src/lib/librump{user,client,,dev,net,vfs} \ 19 src/external/bsd/{flex,mdocml,byacc} \ 20 src/external/historical/nawk \ 21 src/external/cddl/osnet \ 22 src/usr.bin/{make,xinstall,config,mktemp,sed,tsort,cksum,m4,mkdep,lorder} \ 23 src/usr.bin/join \ 24 src/usr.sbin/mtree 25