Forum Discussion
Altera_Forum
Honored Contributor
16 years agoGIT distribution on a disk?
By now I have a customized branch for our product. We would like to distribute on DVD the entire development environment. So given the distributed nature of GIT, is it possible to create a disk image...
Altera_Forum
Honored Contributor
16 years agoI created the nios2-linux tar ball using this script.
- Hippo mkdir nios2-linux cd nios2-linux for i in binutils gcc3 linux-2.6 toolchain-build uClibc elf2flt insight u-boot uClinux-dist glibc do git clone -n git://sopc.et.ntust.edu.tw/git/$i.git done cd linux-2.6 git remote add linus git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git git remote add linus_http http://www.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git cd .. cd uClinux-dist git remote add blackfin git://sources.blackfin.uclinux.org/git/readonly-mirrors/uclinux-dist.git git remote add blackfin_ssh git+ssh://[email protected]:443/git/readonly-mirrors/uclinux-dist.git cd .. cd uClibc git remote add uclibc git://git.busybox.net/uClibc cd .. cd u-boot git remote add denx git://www.denx.de/git/u-boot.git cd ..