The SDK Makefile still trys to copy the docs folder which was removed
with 882f4d2d63. This causes an SDK build
error.
All other removals are just cleanup.
Signed-off-by: Mathias Kresin <dev@kresin.me>
		
	
		
			
				
	
	
		
			52 lines
		
	
	
		
			820 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			52 lines
		
	
	
		
			820 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/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
 | 
						|
	Config.in
 | 
						|
	LICENSE
 | 
						|
	Makefile
 | 
						|
	README
 | 
						|
	dl
 | 
						|
	feeds.conf.default
 | 
						|
	include
 | 
						|
	package
 | 
						|
	rules.mk
 | 
						|
	scripts
 | 
						|
	target
 | 
						|
	toolchain
 | 
						|
	tools"
 | 
						|
 | 
						|
OPTIONAL_FILES="
 | 
						|
	.git"
 | 
						|
 | 
						|
if [ -f feeds.conf ] ; then
 | 
						|
	FILES="$FILES feeds.conf"
 | 
						|
fi
 | 
						|
 | 
						|
if [ -z "$1" ]; then
 | 
						|
	echo "Syntax: $0 <destination>" >&2
 | 
						|
	exit 1
 | 
						|
fi
 | 
						|
 | 
						|
if [ -e "$1" ]; then
 | 
						|
	echo "Error: $1 already exists" >&2
 | 
						|
	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" >&2
 | 
						|
		exit 1
 | 
						|
	}
 | 
						|
	ln -s "$PWD/$file" "$1/"
 | 
						|
done
 | 
						|
for file in $OPTIONAL_FILES; do
 | 
						|
	[ -e "$PWD/$file" ] && ln -s "$PWD/$file" "$1/"
 | 
						|
done
 | 
						|
exit 0
 |