ath79: qca955x: assert mdio/gmac reset together
[openwrt/staging/wigyori.git] / scripts / symlink-tree.sh
index e44ebdabbfa96bdf52efb1ab04d983c11c9356f3..aa169e2455f810f9f5ec4eb8123f9e9bbc82c049 100755 (executable)
@@ -4,12 +4,12 @@
 
 FILES="
        BSDmakefile
+       config
        Config.in
        LICENSE
        Makefile
        README
        dl
-       docs
        feeds.conf.default
        include
        package
@@ -19,6 +19,9 @@ FILES="
        toolchain
        tools"
 
+OPTIONAL_FILES="
+       .git"
+
 if [ -f feeds.conf ] ; then
        FILES="$FILES feeds.conf"
 fi
@@ -42,4 +45,7 @@ for file in $FILES; do
        }
        ln -s "$PWD/$file" "$1/"
 done
+for file in $OPTIONAL_FILES; do
+       [ -e "$PWD/$file" ] && ln -s "$PWD/$file" "$1/"
+done
 exit 0