aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/mxs/profiles
Commit message (Expand)AuthorAgeFilesLines
* mxs: enable uboot-mxs-duckbill build for duckbill profileZoltan Herpai2015-03-261-1/+1
* mxs: add i2c and spi packages to profilesZoltan Herpai2014-12-123-3/+6
* mxs: rename files so that profiles are sorted alphabeticallyZoltan Herpai2014-05-033-5/+4
* mxs: enable usbgadget feature for DuckbillsZoltan Herpai2014-04-281-0/+1
* mxs: build/profile-related changes - change uImage creation to use zImage - u...Zoltan Herpai2013-11-202-5/+26
* mxs: - update uboot-mxs to 3.10 - enable building uboot for imx23 along sbIma...Zoltan Herpai2013-11-121-3/+4
* imx23: build DCP crypto co-processor support by defaultZoltan Herpai2013-10-141-1/+1
* mxs: add support for I2SE Duckbill devicesZoltan Herpai2013-10-141-0/+20
* imx23: rename imx23 to mxs for upcoming imx23/28 supportZoltan Herpai2013-10-141-0/+19
ght .py { color: #336699; font-weight: bold } /* Name.Property */ .highlight .nt { color: #bb0066; font-weight: bold } /* Name.Tag */ .highlight .nv { color: #336699 } /* Name.Variable */ .highlight .ow { color: #008800 } /* Operator.Word */ .highlight .w { color: #bbbbbb } /* Text.Whitespace */ .highlight .mb { color: #0000DD; font-weight: bold } /* Literal.Number.Bin */ .highlight .mf { color: #0000DD; font-weight: bold } /* Literal.Number.Float */ .highlight .mh { color: #0000DD; font-weight: bold } /* Literal.Number.Hex */ .highlight .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */ .highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */ .highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
#!/usr/bin/env bash
# Create a new openwrt tree with symlinks pointing at the current tree
# Usage: ./scripts/symlink-tree.sh <destination>

FILES="
	BSDmakefile
	Config.in
	LICENSE
	Makefile
	README
	dl
	docs
	feeds.conf.default
	include
	package
	rules.mk
	scripts
	target
	toolchain
	tools"

if [ -f feeds.conf ] ; then
	FILES="$FILES feeds.conf"
fi

if [ -z "$1" ]; then
	echo "Syntax: $0 <destination>"
	exit 1
fi

if [ -e "$1" ]; then
	echo "Error: $1 already exists"
	exit 1
fi

set -e # fail if any commands fails
mkdir -p dl "$1"
for file in $FILES; do
	[ -e "$PWD/$file" ] || {
		echo "ERROR: $file does not exist in the current tree"
		exit 1
	}
	ln -s "$PWD/$file" "$1/"
done
exit 0