├── .gitignore ├── .gitmodules ├── Makefile ├── README.md ├── bin └── ldd ├── conf ├── busybear.config ├── busybox.config └── linux.config ├── etc ├── fstab ├── group ├── gshadow ├── hosts ├── init.d │ ├── S01mdev │ └── rcS ├── inittab ├── motd ├── network │ └── interfaces ├── nsswitch.conf ├── ntp.conf ├── passwd ├── profile ├── resolv.conf ├── services ├── shadow └── shells └── scripts ├── build.sh ├── ifdown.sh ├── ifup.sh ├── image.sh └── start-qemu.sh /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | build/ 3 | archives/ 4 | busybear.bin 5 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeljclark/busybear-linux/HEAD/.gitmodules -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeljclark/busybear-linux/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeljclark/busybear-linux/HEAD/README.md -------------------------------------------------------------------------------- /bin/ldd: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | LD_TRACE_LOADED_OBJECTS=1 $* 3 | -------------------------------------------------------------------------------- /conf/busybear.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeljclark/busybear-linux/HEAD/conf/busybear.config -------------------------------------------------------------------------------- /conf/busybox.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeljclark/busybear-linux/HEAD/conf/busybox.config -------------------------------------------------------------------------------- /conf/linux.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeljclark/busybear-linux/HEAD/conf/linux.config -------------------------------------------------------------------------------- /etc/fstab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeljclark/busybear-linux/HEAD/etc/fstab -------------------------------------------------------------------------------- /etc/group: -------------------------------------------------------------------------------- 1 | root:x:0: 2 | -------------------------------------------------------------------------------- /etc/gshadow: -------------------------------------------------------------------------------- 1 | root:*:: 2 | -------------------------------------------------------------------------------- /etc/hosts: -------------------------------------------------------------------------------- 1 | 127.0.0.1 localhost 2 | -------------------------------------------------------------------------------- /etc/init.d/S01mdev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeljclark/busybear-linux/HEAD/etc/init.d/S01mdev -------------------------------------------------------------------------------- /etc/init.d/rcS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeljclark/busybear-linux/HEAD/etc/init.d/rcS -------------------------------------------------------------------------------- /etc/inittab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeljclark/busybear-linux/HEAD/etc/inittab -------------------------------------------------------------------------------- /etc/motd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeljclark/busybear-linux/HEAD/etc/motd -------------------------------------------------------------------------------- /etc/network/interfaces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeljclark/busybear-linux/HEAD/etc/network/interfaces -------------------------------------------------------------------------------- /etc/nsswitch.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeljclark/busybear-linux/HEAD/etc/nsswitch.conf -------------------------------------------------------------------------------- /etc/ntp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeljclark/busybear-linux/HEAD/etc/ntp.conf -------------------------------------------------------------------------------- /etc/passwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeljclark/busybear-linux/HEAD/etc/passwd -------------------------------------------------------------------------------- /etc/profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeljclark/busybear-linux/HEAD/etc/profile -------------------------------------------------------------------------------- /etc/resolv.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeljclark/busybear-linux/HEAD/etc/resolv.conf -------------------------------------------------------------------------------- /etc/services: -------------------------------------------------------------------------------- 1 | ssh 22/tcp 2 | -------------------------------------------------------------------------------- /etc/shadow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeljclark/busybear-linux/HEAD/etc/shadow -------------------------------------------------------------------------------- /etc/shells: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeljclark/busybear-linux/HEAD/etc/shells -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeljclark/busybear-linux/HEAD/scripts/build.sh -------------------------------------------------------------------------------- /scripts/ifdown.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | ifconfig $1 down 4 | brctl delif virbr0 $1 5 | -------------------------------------------------------------------------------- /scripts/ifup.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | brctl addif virbr0 $1 4 | ifconfig $1 up 5 | -------------------------------------------------------------------------------- /scripts/image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeljclark/busybear-linux/HEAD/scripts/image.sh -------------------------------------------------------------------------------- /scripts/start-qemu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeljclark/busybear-linux/HEAD/scripts/start-qemu.sh --------------------------------------------------------------------------------