├── .gitignore ├── .travis.yml ├── Makefile.am ├── README.md ├── autogen.sh ├── bin ├── bbb-armhf.sh ├── fit ├── flash_script.sh ├── spl └── uboot ├── compile_tools.sh ├── configure.ac ├── include ├── arp.h ├── bootp.h ├── ether2.h ├── ipv4.h ├── rndis.h ├── tftp.h ├── udp.h └── utils.h ├── src ├── Makefile.am ├── arp.c ├── bootp.c ├── ether2.c ├── ipv4.c ├── main.c ├── rndis.c ├── tftp.c ├── udp.c └── utils.c └── tools ├── 42-am335x.rules ├── USB_FLash.patch ├── init └── maker.its /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungureanuvladvictor/BBBlfs/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungureanuvladvictor/BBBlfs/HEAD/.travis.yml -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | dist_doc_DATA = README.md 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungureanuvladvictor/BBBlfs/HEAD/README.md -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungureanuvladvictor/BBBlfs/HEAD/autogen.sh -------------------------------------------------------------------------------- /bin/bbb-armhf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungureanuvladvictor/BBBlfs/HEAD/bin/bbb-armhf.sh -------------------------------------------------------------------------------- /bin/fit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungureanuvladvictor/BBBlfs/HEAD/bin/fit -------------------------------------------------------------------------------- /bin/flash_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungureanuvladvictor/BBBlfs/HEAD/bin/flash_script.sh -------------------------------------------------------------------------------- /bin/spl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungureanuvladvictor/BBBlfs/HEAD/bin/spl -------------------------------------------------------------------------------- /bin/uboot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungureanuvladvictor/BBBlfs/HEAD/bin/uboot -------------------------------------------------------------------------------- /compile_tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungureanuvladvictor/BBBlfs/HEAD/compile_tools.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungureanuvladvictor/BBBlfs/HEAD/configure.ac -------------------------------------------------------------------------------- /include/arp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungureanuvladvictor/BBBlfs/HEAD/include/arp.h -------------------------------------------------------------------------------- /include/bootp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungureanuvladvictor/BBBlfs/HEAD/include/bootp.h -------------------------------------------------------------------------------- /include/ether2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungureanuvladvictor/BBBlfs/HEAD/include/ether2.h -------------------------------------------------------------------------------- /include/ipv4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungureanuvladvictor/BBBlfs/HEAD/include/ipv4.h -------------------------------------------------------------------------------- /include/rndis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungureanuvladvictor/BBBlfs/HEAD/include/rndis.h -------------------------------------------------------------------------------- /include/tftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungureanuvladvictor/BBBlfs/HEAD/include/tftp.h -------------------------------------------------------------------------------- /include/udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungureanuvladvictor/BBBlfs/HEAD/include/udp.h -------------------------------------------------------------------------------- /include/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungureanuvladvictor/BBBlfs/HEAD/include/utils.h -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungureanuvladvictor/BBBlfs/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/arp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungureanuvladvictor/BBBlfs/HEAD/src/arp.c -------------------------------------------------------------------------------- /src/bootp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungureanuvladvictor/BBBlfs/HEAD/src/bootp.c -------------------------------------------------------------------------------- /src/ether2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungureanuvladvictor/BBBlfs/HEAD/src/ether2.c -------------------------------------------------------------------------------- /src/ipv4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungureanuvladvictor/BBBlfs/HEAD/src/ipv4.c -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungureanuvladvictor/BBBlfs/HEAD/src/main.c -------------------------------------------------------------------------------- /src/rndis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungureanuvladvictor/BBBlfs/HEAD/src/rndis.c -------------------------------------------------------------------------------- /src/tftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungureanuvladvictor/BBBlfs/HEAD/src/tftp.c -------------------------------------------------------------------------------- /src/udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungureanuvladvictor/BBBlfs/HEAD/src/udp.c -------------------------------------------------------------------------------- /src/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungureanuvladvictor/BBBlfs/HEAD/src/utils.c -------------------------------------------------------------------------------- /tools/42-am335x.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungureanuvladvictor/BBBlfs/HEAD/tools/42-am335x.rules -------------------------------------------------------------------------------- /tools/USB_FLash.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungureanuvladvictor/BBBlfs/HEAD/tools/USB_FLash.patch -------------------------------------------------------------------------------- /tools/init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungureanuvladvictor/BBBlfs/HEAD/tools/init -------------------------------------------------------------------------------- /tools/maker.its: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungureanuvladvictor/BBBlfs/HEAD/tools/maker.its --------------------------------------------------------------------------------