aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/symlink-tree.sh
blob: 8be5f6c9671815308f30277e4a8d2096944f37b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/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
ass="k">)") --exclude="staging_dir/$(ARCH)" staging_dir/host staging_dir/target-$(ARCH)_$(LIBC)-$(LIBCV) staging_dir/toolchain-$(ARCH)_gcc-$(GCCV)_$(LIBC)-$(LIBCV) | \ $(TAR) -xf - -C $(SDK_BUILD_DIR) mkdir -p $(SDK_BUILD_DIR)/target/linux $(CP) $(GENERIC_PLATFORM_DIR) $(PLATFORM_DIR) $(SDK_BUILD_DIR)/target/linux/ rm -rf \ $(SDK_BUILD_DIR)/target/linux/*/files \ $(SDK_BUILD_DIR)/target/linux/*/patches $(CP) \ $(TOPDIR)/LICENSE \ $(TOPDIR)/rules.mk \ $(TOPDIR)/.config \ ./files/Config.in \ ./files/Makefile \ ./files/README.SDK \ $(SDK_BUILD_DIR)/ $(CP) \ ./files/package/rules.mk \ $(TOPDIR)/package/Makefile \ $(SDK_BUILD_DIR)/package/ echo "src-svn trunk $(SVN_PACKAGE_URL)" \ > $(SDK_BUILD_DIR)/feeds.conf.default cat $(TOPDIR)/feeds.conf.default \ >> $(SDK_BUILD_DIR)/feeds.conf.default echo REVISION:="$(REVISION)" > $(SDK_BUILD_DIR)/include/version.mk find $(SDK_BUILD_DIR) -name .git | $(XARGS) rm -rf find $(SDK_BUILD_DIR) -name .svn | $(XARGS) rm -rf find $(SDK_BUILD_DIR) -name CVS | $(XARGS) rm -rf (cd $(BUILD_DIR); \ tar cfj $@ $(SDK_NAME); \ ) download: prepare: compile: $(BIN_DIR)/$(SDK_NAME).tar.bz2 install: compile clean: rm -rf $(SDK_BUILD_DIR) $(BIN_DIR)/$(SDK_NAME).tar.bz2