Radix cross Linux

The main Radix cross Linux repository contains the build scripts of packages, which have the most complete and common functionality for desktop machines

383 Commits   1 Branch   1 Tag
Index: 4.5/Makefile
===================================================================
--- 4.5/Makefile	(nonexistent)
+++ 4.5/Makefile	(revision 5)
@@ -0,0 +1,208 @@
+
+COMPONENT_TARGETS  = $(HARDWARE_INTEL_PC32)
+COMPONENT_TARGETS += $(HARDWARE_INTEL_PC64)
+COMPONENT_TARGETS += $(HARDWARE_EBOX_3350DX2)
+COMPONENT_TARGETS += $(HARDWARE_CB1X)
+COMPONENT_TARGETS += $(HARDWARE_CB2X)
+COMPONENT_TARGETS += $(HARDWARE_CB3X)
+COMPONENT_TARGETS += $(HARDWARE_ORANGE_PP2E)
+COMPONENT_TARGETS += $(HARDWARE_NANOPI_NEO)
+COMPONENT_TARGETS += $(HARDWARE_ORANGE_PP)
+COMPONENT_TARGETS += $(HARDWARE_ORANGE_PL2)
+COMPONENT_TARGETS += $(HARDWARE_WECHIP_TX6)
+COMPONENT_TARGETS += $(HARDWARE_FFRK3288)
+COMPONENT_TARGETS += $(HARDWARE_POIN2)
+COMPONENT_TARGETS += $(HARDWARE_RK3328_CC)
+COMPONENT_TARGETS += $(HARDWARE_KHADAS_EDGE)
+COMPONENT_TARGETS += $(HARDWARE_LEEZ_P710)
+COMPONENT_TARGETS += $(HARDWARE_M201)
+COMPONENT_TARGETS += $(HARDWARE_MXV)
+COMPONENT_TARGETS += $(HARDWARE_P201)
+COMPONENT_TARGETS += $(HARDWARE_NEXBOX_A95X)
+COMPONENT_TARGETS += $(HARDWARE_ODROID_C2)
+COMPONENT_TARGETS += $(HARDWARE_P212)
+COMPONENT_TARGETS += $(HARDWARE_KHADAS_VIM)
+COMPONENT_TARGETS += $(HARDWARE_Q201)
+COMPONENT_TARGETS += $(HARDWARE_ENYBOX_X2)
+COMPONENT_TARGETS += $(HARDWARE_KHADAS_VIM2)
+COMPONENT_TARGETS += $(HARDWARE_NIT6Q)
+COMPONENT_TARGETS += $(HARDWARE_OKMX6DL_C)
+COMPONENT_TARGETS += $(HARDWARE_OKMX6Q_C)
+COMPONENT_TARGETS += $(HARDWARE_BONE_BLACK)
+COMPONENT_TARGETS += $(HARDWARE_OMAP5UEVM)
+COMPONENT_TARGETS += $(HARDWARE_DRA7XXEVM)
+COMPONENT_TARGETS += $(HARDWARE_CI20)
+COMPONENT_TARGETS += $(HARDWARE_BAIKAL_T1)
+COMPONENT_TARGETS += $(HARDWARE_BAIKAL_M1)
+COMPONENT_TARGETS += $(HARDWARE_S824L)
+COMPONENT_TARGETS += $(HARDWARE_VESNIN)
+COMPONENT_TARGETS += $(HARDWARE_S824L_LSB)
+COMPONENT_TARGETS += $(HARDWARE_VESNIN_LSB)
+COMPONENT_TARGETS += $(HARDWARE_TL2WK2)
+COMPONENT_TARGETS += $(HARDWARE_TL2SV2)
+COMPONENT_TARGETS += $(HARDWARE_TL2WK2_LSB)
+COMPONENT_TARGETS += $(HARDWARE_TL2SV2_LSB)
+COMPONENT_TARGETS += $(HARDWARE_SIFIVE_U740)
+
+
+NEED_ABS_PATH      = true
+COMPONENT_IS_3PP   = true
+
+
+include ../../../build-system/constants.mk
+
+
+SOURCE_REQUIRES    = sources/packages/a/dcron
+
+ifeq ($(__USE_BUILT_GCC_LIBS__),yes)
+REQUIRES           = dev/gcc/12.2.0
+else
+REQUIRES           = libs/glibc/2.36
+endif
+
+# ======= __END_OF_REQUIRES__ =======
+
+
+version             = 4.5
+tar_gz_archive      = $(SRC_PACKAGE_PATH)/packages/a/dcron/dcron-$(version).tar.gz
+SRC_ARCHIVE         = $(tar_gz_archive)
+SRC_DIR             = $(TARGET_BUILD_DIR)/dcron-$(version)
+src_dir_name        = dcron-$(version)
+src_done            = $(TARGET_BUILD_DIR)/.source_done
+
+rc_crond            = $(CURDIR)/scripts/rc.crond
+crond_default       = $(CURDIR)/scripts/crond.default
+crontab_root        = $(CURDIR)/scripts/crontab-root
+run_parts           = $(CURDIR)/scripts/run-parts
+run_parts_man       = $(CURDIR)/man/run-parts.8
+
+PATCHES = PATCHES
+
+build_target        = $(TARGET_BUILD_DIR)/.build_done
+install_target      = $(TARGET_BUILD_DIR)/.install_done
+
+
+####### Targets
+
+PKG_GROUP = app
+
+#
+# *PKG_NAME & *PKG_VERSION shouldn't be a reference to value.
+#
+DCRON_PKG_NAME                = dcron
+DCRON_PKG_VERSION             = 4.5
+DCRON_PKG_ARCH                = $(PKGARCH)
+DCRON_PKG_DISTRO_NAME         = $(DISTRO_NAME)
+DCRON_PKG_DISTRO_VERSION      = $(DISTRO_VERSION)
+DCRON_PKG_GROUP               = $(PKG_GROUP)
+###                            |---handy-ruler-------------------------------|
+DCRON_PKG_SHORT_DESCRIPTION   = Lightweight Cron daemon
+DCRON_PKG_URL                 = $(BUG_URL)
+DCRON_PKG_LICENSE             = GPLv2
+DCRON_PKG_DESCRIPTION_FILE    = $(TARGET_BUILD_DIR)/$(DCRON_PKG_NAME)-pkg-description
+DCRON_PKG_DESCRIPTION_FILE_IN = $(DCRON_PKG_NAME)-pkg-description.in
+DCRON_PKG_INSTALL_SCRIPT      = $(DCRON_PKG_NAME)-pkg-install.sh
+
+DCRON_PKG        = $(CURDIR)/$(TARGET_BUILD_DIR)/$(DCRON_PKG_NAME)-package
+
+pkg_basename     = $(DCRON_PKG_NAME)-$(DCRON_PKG_VERSION)-$(DCRON_PKG_ARCH)-$(DCRON_PKG_DISTRO_NAME)-$(DCRON_PKG_DISTRO_VERSION)
+
+pkg_archive      = $(TARGET_BUILD_DIR)/$(PKG_GROUP)/$(pkg_basename).$(pkg_arch_suffix)
+pkg_certificate  = $(call cert-name,$(pkg_archive))
+pkg_signature    = $(call sign-name,$(pkg_archive))
+pkg_description  = $(call desc-name,$(pkg_archive))
+products         = $(call pkg-files,$(pkg_archive))
+
+BUILD_TARGETS    = $(build_target)
+BUILD_TARGETS   += $(install_target)
+
+PRODUCT_TARGETS  = $(products)
+
+ROOTFS_TARGETS   = $(pkg_archive)
+
+
+include ../../../build-system/core.mk
+
+
+####### Dependencies
+
+$(src_done): $(SRC_ARCHIVE) $(PATCHES_DEP)
+	$(UNPACK_SRC_ARCHIVE)
+	$(APPLY_PATCHES)
+	@touch $@
+
+$(build_target): $(src_done)
+	@cd $(SRC_DIR) && $(BUILD_ENVIRONMENT) $(MAKE)
+	@touch $@
+
+$(install_target): $(build_target)
+	@mkdir -p $(DCRON_PKG)/usr/{bin,sbin}
+	@( cd $(SRC_DIR) ; \
+	   cat crond > $(DCRON_PKG)/usr/sbin/crond ; \
+	   cat crontab > $(DCRON_PKG)/usr/bin/crontab ; \
+	   chmod 0755 $(DCRON_PKG)/usr/sbin/crond ; \
+	   chmod 4711 $(DCRON_PKG)/usr/bin/crontab ; \
+	 )
+	@cp -a $(run_parts) $(DCRON_PKG)/usr/bin/run-parts
+	@chmod 0755 $(DCRON_PKG)/usr/bin/run-parts
+	# ======= man pages =======
+	@mkdir -p $(DCRON_PKG)/usr/share/man/man{1,8}
+	@( cd $(SRC_DIR) ; \
+	   cat crontab.1 | gzip -9c > $(DCRON_PKG)/usr/share/man/man1/crontab.1.gz ; \
+	   cat crond.8 | gzip -9c > $(DCRON_PKG)/usr/share/man/man8/crond.8.gz ; \
+	 )
+	@cat $(run_parts_man) | gzip -9c > $(DCRON_PKG)/usr/share/man/man8/run-parts.8.gz
+	# ======= Install the init script =======
+	@mkdir -p $(DCRON_PKG)/etc/rc.d
+	@cp -a $(rc_crond) $(DCRON_PKG)/etc/rc.d/rc.crond.new
+	@chmod 0755 $(DCRON_PKG)/etc/rc.d/rc.crond.new
+	@mkdir -p $(DCRON_PKG)/etc/default
+	@cp -a $(crond_default) $(DCRON_PKG)/etc/default/crond.new
+	@chmod 0644 $(DCRON_PKG)/etc/default/crond.new
+	# ======= create some other stuff =======
+	@mkdir -p $(DCRON_PKG)/etc/cron.{hourly,daily,weekly,monthly}
+	@mkdir -p $(DCRON_PKG)/var/spool/cron/crontabs
+	@mkdir -p $(DCRON_PKG)/var/spool/cron/cronstamps
+	@chmod 0751 $(DCRON_PKG)/var/spool/cron
+	@chmod 0750 $(DCRON_PKG)/var/spool/cron/crontabs $(DCRON_PKG)/var/spool/cron/cronstamps
+	@cat $(crontab_root) > $(DCRON_PKG)/var/spool/cron/crontabs/root.new
+	@chmod 0600 $(DCRON_PKG)/var/spool/cron/crontabs/root.new
+	# ======= dcron will whine about "unable to scan" this directory, so we'll create it =======
+	@mkdir -p $(DCRON_PKG)/etc/cron.d
+	# ======= documentation =======
+	@mkdir -p $(DCRON_PKG)/usr/share/doc/$(src_dir_name)
+	@( cd $(SRC_DIR) ; \
+	   cp -a CHANGELOG README extra \
+	         $(DCRON_PKG)/usr/share/doc/$(src_dir_name) ; \
+	 )
+	# ======= Install the same to $(TARGET_DEST_DIR) =======
+	$(call install-into-devenv, $(DCRON_PKG))
+	# ======= Strip binaries =======
+	@( cd $(DCRON_PKG) ; \
+	   find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs $(STRIP) --strip-unneeded 2> /dev/null \
+	 )
+	@touch $@
+
+$(DCRON_PKG_DESCRIPTION_FILE): $(DCRON_PKG_DESCRIPTION_FILE_IN)
+	@cat $< | $(SED) -e "s/@VERSION@/$(version)/g" > $@
+
+$(pkg_certificate) : $(pkg_archive) ;
+$(pkg_signature)   : $(pkg_archive) ;
+$(pkg_description) : $(pkg_archive) ;
+
+$(pkg_archive): $(install_target) $(DCRON_PKG_DESCRIPTION_FILE) $(DCRON_PKG_INSTALL_SCRIPT)
+	@cp $(DCRON_PKG_DESCRIPTION_FILE) $(DCRON_PKG)/.DESCRIPTION
+	@cp $(DCRON_PKG_INSTALL_SCRIPT) $(DCRON_PKG)/.INSTALL
+	@$(BUILD_PKG_REQUIRES) $(DCRON_PKG)/.REQUIRES
+	@echo "pkgname=$(DCRON_PKG_NAME)"                            >  $(DCRON_PKG)/.PKGINFO ; \
+	 echo "pkgver=$(DCRON_PKG_VERSION)"                          >> $(DCRON_PKG)/.PKGINFO ; \
+	 echo "arch=$(DCRON_PKG_ARCH)"                               >> $(DCRON_PKG)/.PKGINFO ; \
+	 echo "distroname=$(DCRON_PKG_DISTRO_NAME)"                  >> $(DCRON_PKG)/.PKGINFO ; \
+	 echo "distrover=$(DCRON_PKG_DISTRO_VERSION)"                >> $(DCRON_PKG)/.PKGINFO ; \
+	 echo "group=$(DCRON_PKG_GROUP)"                             >> $(DCRON_PKG)/.PKGINFO ; \
+	 echo "short_description=\"$(DCRON_PKG_SHORT_DESCRIPTION)\"" >> $(DCRON_PKG)/.PKGINFO ; \
+	 echo "url=$(DCRON_PKG_URL)"                                 >> $(DCRON_PKG)/.PKGINFO ; \
+	 echo "license=$(DCRON_PKG_LICENSE)"                         >> $(DCRON_PKG)/.PKGINFO
+	@$(PSEUDO) sh -c "cd $(DCRON_PKG) && \
+	                  chown -R root:root . && \
+	                  $(MAKE_PACKAGE) -J --linkadd=yes $(GNUPG_OPTIONS) -m -d .. ."
Index: 4.5/PATCHES
===================================================================
--- 4.5/PATCHES	(nonexistent)
+++ 4.5/PATCHES	(revision 5)
@@ -0,0 +1,2 @@
+
+../../../sources/packages/a/dcron/patches/dcron-4.5.patch -p0
Index: 4.5/dcron-pkg-description.in
===================================================================
--- 4.5/dcron-pkg-description.in	(nonexistent)
+++ 4.5/dcron-pkg-description.in	(revision 5)
@@ -0,0 +1,19 @@
+# HOW TO EDIT THIS FILE:
+# The "handy ruler" below makes it easier to edit a package description.  Line
+# up the first '|' above the ':' following the base package name, and the '|'
+# on the right side marks the last column you can put a character in.  You must
+# make exactly 11 lines for the formatting to be correct.  It's also
+# customary to leave one space after the ':'.
+
+     |-----handy-ruler------------------------------------------------------|
+dcron: dcron @VERSION@ (Dillon's Lightweight Cron daemon)
+dcron:
+dcron: This lightweight cron daemon aims to be simple and secure, with just
+dcron: enough features to stay useful. The dcron runs in the background and
+dcron: executes tasks on behalf of users at the appropriate time.
+dcron: Many timed system tasks are started with cron, such as the nightly
+dcron: indexing with updatedb.
+dcron:
+dcron: dcron was written entirely from scratch by Matthew Dillon in 1994.
+dcron: It's now developed and maintained by Jim Pryor.
+dcron:
Index: 4.5/dcron-pkg-install.sh
===================================================================
--- 4.5/dcron-pkg-install.sh	(nonexistent)
+++ 4.5/dcron-pkg-install.sh	(revision 5)
@@ -0,0 +1,67 @@
+#!/bin/sh
+
+# Preserve new files
+install_file() {
+  NEW="$1"
+  OLD="`dirname $NEW`/`basename $NEW .new`"
+  # If there's no file by that name, mv it over:
+  if [ ! -r $OLD ]; then
+    mv $NEW $OLD
+  elif [ "`cat $OLD | md5sum`" = "`cat $NEW | md5sum`" ]; then # toss the redundant copy
+    rm $NEW
+  fi
+  # Otherwise, we leave the .new copy for the admin to consider...
+}
+
+preserve_perms() {
+  NEW="$1"
+  OLD="$(dirname $NEW)/$(basename $NEW .new)"
+  if [ -e $OLD ]; then
+    cp -a $OLD ${NEW}.incoming
+    cat $NEW > ${NEW}.incoming
+    mv ${NEW}.incoming $NEW
+  fi
+  install_file $NEW
+}
+
+
+# arg 1:  the new package version
+pre_install() {
+  /bin/true
+}
+
+# arg 1:  the new package version
+post_install() {
+  preserve_perms etc/rc.d/rc.crond.new
+  install_file etc/default/crond.new
+  install_file var/spool/cron/crontabs/root.new
+  rm -f var/spool/cron/crontabs/root.new
+}
+
+# arg 1:  the new package version
+# arg 2:  the old package version
+pre_update() {
+  /bin/true
+}
+
+# arg 1:  the new package version
+# arg 2:  the old package version
+post_update() {
+  post_install
+}
+
+# arg 1:  the old package version
+pre_remove() {
+  /bin/true
+}
+
+# arg 1:  the old package version
+post_remove() {
+  /bin/true
+}
+
+
+operation=$1
+shift
+
+$operation $*

Property changes on: 4.5/dcron-pkg-install.sh
___________________________________________________________________
Added: svn:executable
## -0,0 +1 ##
+*
\ No newline at end of property
Index: 4.5/man/run-parts.8
===================================================================
--- 4.5/man/run-parts.8	(nonexistent)
+++ 4.5/man/run-parts.8	(revision 5)
@@ -0,0 +1,36 @@
+.\" -*- nroff -*-
+.ds g \" empty
+.ds G \" empty
+.\" Like TP, but if specified indent is more than half
+.\" the current line-length - indent, use the default indent.
+.de Tp
+.ie \\n(.$=0:((0\\$1)*2u>(\\n(.lu-\\n(.iu)) .TP
+.el .TP "\\$1"
+..
+.TH RUN-PARTS 8 "14 Apr 2002" "Slackware Version 8.1.0
+.SH NAME
+run-parts \- run scripts found in a directory
+.SH SYNOPSIS
+.B run-parts <directory>
+.LP
+.SH DESCRIPTION
+.B run-parts
+is a utility that will run scripts that are found in a directory.  For example,
+it might be useful to create an /etc/cron.daily directory and put scripts in
+there for daily cron jobs.  Then
+.B run-parts
+can be called once a day from root's crontab to run all the scripts found in
+/etc/cron.daily:
+
+40 4 * * * run-parts /etc/cron.daily
+
+.B run-parts
+automatically skips files with certain suffixes that are generally associated
+with backup or extra files.  Any file that ends in one of these will be silently
+ignored:  ~ ^ , .bak .new .rpmsave .rpmorig .rpmnew .swp
+.SH AUTHOR
+Patrick J. Volkerding <volkerdi@slackware.com>, with ideas borrowed from the
+Red Hat and Debian versions of this utility.
+.SH "SEE ALSO"
+.BR crond(8),
+.BR crontab(8).
Index: 4.5/man
===================================================================
--- 4.5/man	(nonexistent)
+++ 4.5/man	(revision 5)

Property changes on: 4.5/man
___________________________________________________________________
Added: svn:ignore
## -0,0 +1,73 ##
+
+# install dir
+dist
+
+# Target build dirs
+.a1x-newlib
+.a2x-newlib
+.at91sam7s-newlib
+
+.build-machine
+
+.a1x-glibc
+.a2x-glibc
+.h3-glibc
+.h5-glibc
+.i586-glibc
+.i686-glibc
+.imx6-glibc
+.jz47xx-glibc
+.makefile
+.am335x-glibc
+.omap543x-glibc
+.p5600-glibc
+.power8-glibc
+.power8le-glibc
+.power9-glibc
+.power9le-glibc
+.m1000-glibc
+.riscv64-glibc
+.rk328x-glibc
+.rk33xx-glibc
+.rk339x-glibc
+.s8xx-glibc
+.s9xx-glibc
+.x86_64-glibc
+
+# Hidden files (each file)
+.makefile
+.dist
+.rootfs
+
+# src & hw requires
+.src_requires
+.src_requires_depend
+.requires
+.requires_depend
+
+# Tarballs
+*.gz
+*.bz2
+*.lz
+*.xz
+*.tgz
+*.txz
+
+# Signatures
+*.asc
+*.sig
+*.sign
+*.sha1sum
+
+# Patches
+*.patch
+
+# Descriptions
+*.dsc
+*.txt
+
+# Default linux config files
+*.defconfig
+
+# backup copies
+*~
Index: 4.5/scripts/crond.default
===================================================================
--- 4.5/scripts/crond.default	(nonexistent)
+++ 4.5/scripts/crond.default	(revision 5)
@@ -0,0 +1,10 @@
+# Default log level is "notice". If you want cron to actually log activity
+# to /var/log/cron, then change "-l notice" to "-l info" to increase the
+# logging level.
+#
+# Valid log levels are:
+# alert, crit, debug, emerg, err, error (deprecated synonym for err),
+# info, notice, panic (deprecated synonym for emerg), warning,
+# warn (deprecated synonym for warning).
+
+CROND_OPTS="-l notice"
Index: 4.5/scripts/crontab-root
===================================================================
--- 4.5/scripts/crontab-root	(nonexistent)
+++ 4.5/scripts/crontab-root	(revision 5)
@@ -0,0 +1,22 @@
+# If you don't want the output of a cron job mailed to you, you have to direct
+# any output to /dev/null.  We'll do this here since these jobs should run
+# properly on a newly installed system.  If a script fails, run-parts will
+# mail a notice to root.
+#
+# Run the hourly, daily, weekly, and monthly cron jobs.
+# Jobs that need different timing may be entered into the crontab as before,
+# but most really don't need greater granularity than this.  If the exact
+# times of the hourly, daily, weekly, and monthly cron jobs do not suit your
+# needs, feel free to adjust them.
+#
+# Run hourly cron jobs at 47 minutes after the hour:
+47 * * * * /usr/bin/run-parts /etc/cron.hourly 1> /dev/null
+#
+# Run daily cron jobs at 4:40 every day:
+40 4 * * * /usr/bin/run-parts /etc/cron.daily 1> /dev/null
+#
+# Run weekly cron jobs at 4:30 on the first day of the week:
+30 4 * * 0 /usr/bin/run-parts /etc/cron.weekly 1> /dev/null
+#
+# Run monthly cron jobs at 4:20 on the first day of the month:
+20 4 1 * * /usr/bin/run-parts /etc/cron.monthly 1> /dev/null
Index: 4.5/scripts/rc.crond
===================================================================
--- 4.5/scripts/rc.crond	(nonexistent)
+++ 4.5/scripts/rc.crond	(revision 5)
@@ -0,0 +1,40 @@
+#!/bin/sh
+# /etc/rc.d/rc.crond - start/stop the cron daemon
+
+# To change the default options, edit /etc/default/crond.
+if [ -r /etc/default/crond ]; then
+  . /etc/default/crond
+fi
+
+start_crond() {
+  if ! /usr/bin/pgrep --ns $$ --euid root -f "^/usr/sbin/crond" 1> /dev/null 2> /dev/null ; then
+    echo "Starting crond:  /usr/sbin/crond $CROND_OPTS"
+    mkdir -p /run/cron
+    /usr/sbin/crond $CROND_OPTS
+  fi
+}
+
+stop_crond() {
+  echo "Stopping crond."
+  /usr/bin/pkill --ns $$ --euid root -f "^/usr/sbin/crond" 2> /dev/null 
+}
+
+restart_crond() {
+  stop_crond
+  sleep 1
+  start_crond
+}
+
+case "$1" in
+'start')
+  start_crond
+  ;;
+'stop')
+  stop_crond
+  ;;
+'restart')
+  restart_crond
+  ;;
+*)
+  echo "usage $0 start|stop|restart"
+esac
Index: 4.5/scripts/run-parts
===================================================================
--- 4.5/scripts/run-parts	(nonexistent)
+++ 4.5/scripts/run-parts	(revision 5)
@@ -0,0 +1,46 @@
+#!/bin/sh
+# run-parts:  Runs all the scripts found in a directory.
+
+# keep going when something fails
+set +e
+
+if [ $# -lt 1 ]; then
+  echo "Usage: run-parts <directory>"
+  exit 1
+fi
+
+if [ ! -d $1 ]; then
+  echo "Not a directory: $1"
+  echo "Usage: run-parts <directory>"
+  exit 1
+fi
+
+# There are several types of files that we would like to
+# ignore automatically, as they are likely to be backups
+# of other scripts:
+IGNORE_SUFFIXES="~ ^ , .bak .new .rpmsave .rpmorig .rpmnew .swp"
+
+# Main loop:
+for SCRIPT in $1/* ; do
+  # If this is not a regular file, skip it:
+  if [ ! -f $SCRIPT ]; then
+    continue
+  fi
+  # Determine if this file should be skipped by suffix:
+  SKIP=false
+  for SUFFIX in $IGNORE_SUFFIXES ; do
+    if [ ! "$(basename $SCRIPT $SUFFIX)" = "$(basename $SCRIPT)" ]; then
+      SKIP=true
+      break
+    fi
+  done
+  if [ "$SKIP" = "true" ]; then
+    continue
+  fi
+  # If we've made it this far, then run the script if it's executable:
+  if [ -x $SCRIPT ]; then
+    $SCRIPT || echo "$SCRIPT failed."
+  fi
+done
+
+exit 0
Index: 4.5/scripts
===================================================================
--- 4.5/scripts	(nonexistent)
+++ 4.5/scripts	(revision 5)

Property changes on: 4.5/scripts
___________________________________________________________________
Added: svn:ignore
## -0,0 +1,73 ##
+
+# install dir
+dist
+
+# Target build dirs
+.a1x-newlib
+.a2x-newlib
+.at91sam7s-newlib
+
+.build-machine
+
+.a1x-glibc
+.a2x-glibc
+.h3-glibc
+.h5-glibc
+.i586-glibc
+.i686-glibc
+.imx6-glibc
+.jz47xx-glibc
+.makefile
+.am335x-glibc
+.omap543x-glibc
+.p5600-glibc
+.power8-glibc
+.power8le-glibc
+.power9-glibc
+.power9le-glibc
+.m1000-glibc
+.riscv64-glibc
+.rk328x-glibc
+.rk33xx-glibc
+.rk339x-glibc
+.s8xx-glibc
+.s9xx-glibc
+.x86_64-glibc
+
+# Hidden files (each file)
+.makefile
+.dist
+.rootfs
+
+# src & hw requires
+.src_requires
+.src_requires_depend
+.requires
+.requires_depend
+
+# Tarballs
+*.gz
+*.bz2
+*.lz
+*.xz
+*.tgz
+*.txz
+
+# Signatures
+*.asc
+*.sig
+*.sign
+*.sha1sum
+
+# Patches
+*.patch
+
+# Descriptions
+*.dsc
+*.txt
+
+# Default linux config files
+*.defconfig
+
+# backup copies
+*~
Index: 4.5
===================================================================
--- 4.5	(nonexistent)
+++ 4.5	(revision 5)

Property changes on: 4.5
___________________________________________________________________
Added: svn:ignore
## -0,0 +1,73 ##
+
+# install dir
+dist
+
+# Target build dirs
+.a1x-newlib
+.a2x-newlib
+.at91sam7s-newlib
+
+.build-machine
+
+.a1x-glibc
+.a2x-glibc
+.h3-glibc
+.h5-glibc
+.i586-glibc
+.i686-glibc
+.imx6-glibc
+.jz47xx-glibc
+.makefile
+.am335x-glibc
+.omap543x-glibc
+.p5600-glibc
+.power8-glibc
+.power8le-glibc
+.power9-glibc
+.power9le-glibc
+.m1000-glibc
+.riscv64-glibc
+.rk328x-glibc
+.rk33xx-glibc
+.rk339x-glibc
+.s8xx-glibc
+.s9xx-glibc
+.x86_64-glibc
+
+# Hidden files (each file)
+.makefile
+.dist
+.rootfs
+
+# src & hw requires
+.src_requires
+.src_requires_depend
+.requires
+.requires_depend
+
+# Tarballs
+*.gz
+*.bz2
+*.lz
+*.xz
+*.tgz
+*.txz
+
+# Signatures
+*.asc
+*.sig
+*.sign
+*.sha1sum
+
+# Patches
+*.patch
+
+# Descriptions
+*.dsc
+*.txt
+
+# Default linux config files
+*.defconfig
+
+# backup copies
+*~
Index: .
===================================================================
--- .	(nonexistent)
+++ .	(revision 5)

Property changes on: .
___________________________________________________________________
Added: svn:ignore
## -0,0 +1,73 ##
+
+# install dir
+dist
+
+# Target build dirs
+.a1x-newlib
+.a2x-newlib
+.at91sam7s-newlib
+
+.build-machine
+
+.a1x-glibc
+.a2x-glibc
+.h3-glibc
+.h5-glibc
+.i586-glibc
+.i686-glibc
+.imx6-glibc
+.jz47xx-glibc
+.makefile
+.am335x-glibc
+.omap543x-glibc
+.p5600-glibc
+.power8-glibc
+.power8le-glibc
+.power9-glibc
+.power9le-glibc
+.m1000-glibc
+.riscv64-glibc
+.rk328x-glibc
+.rk33xx-glibc
+.rk339x-glibc
+.s8xx-glibc
+.s9xx-glibc
+.x86_64-glibc
+
+# Hidden files (each file)
+.makefile
+.dist
+.rootfs
+
+# src & hw requires
+.src_requires
+.src_requires_depend
+.requires
+.requires_depend
+
+# Tarballs
+*.gz
+*.bz2
+*.lz
+*.xz
+*.tgz
+*.txz
+
+# Signatures
+*.asc
+*.sig
+*.sign
+*.sha1sum
+
+# Patches
+*.patch
+
+# Descriptions
+*.dsc
+*.txt
+
+# Default linux config files
+*.defconfig
+
+# backup copies
+*~