Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ===== new_tarballs.sh ===== <code> #!/bin/sh for f in *.gz *.tgz *.bz2 *.xz *.rpm *.zip *.bin ; do if [ -f $f -a ! -h $f ] ; then echo "Copying $f ..." ; cp $f ~/oe/dist/tarballs/ fi done </code> ===== site.conf ===== <code> SCONF_VERSION = "1" SOURCE_MIRROR_URL ?= "file:///home/rpjday/oe/dist/tarballs/" INHERIT += "own-mirrors" BB_GENERATE_MIRROR_TARBALLS = "1" # BB_NO_NETWORK = "1" </code> oe_yp_new_tarballs.sh.txt Last modified: 2020/02/21 15:02by rpjday