mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-04-21 12:27:27 +03:00
move target/default/target_skeleton into package/base-files, put all the default files in ipkg packages, cleanup some junk in toolchain/, toolchain/ no longer changes build_mipsel/root
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1494 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
32
package/base-files/default/sbin/backup
Executable file
32
package/base-files/default/sbin/backup
Executable file
@@ -0,0 +1,32 @@
|
||||
#!/bin/sh
|
||||
for param in $*; do
|
||||
case "$param" in
|
||||
*)
|
||||
OUTPUT_FILE="$param"
|
||||
;;
|
||||
esac
|
||||
done
|
||||
|
||||
if [ "$OUTPUT_FILE" = "-" ]; then
|
||||
echo "Writing backup to stdout.." >&2
|
||||
elif [ "$OUTPUT_FILE" = "" ]; then
|
||||
echo "No output file."
|
||||
exit 1
|
||||
else
|
||||
echo "Writing backup to $OUTPUT_FILE" >&2
|
||||
exec > "$OUTPUT_FILE"
|
||||
fi
|
||||
|
||||
echo __FILELIST__
|
||||
find /etc -type f > /tmp/.wlbackup_files
|
||||
cat /tmp/.wlbackup_files
|
||||
|
||||
echo __IPKG__
|
||||
cat /etc/ipkg.conf
|
||||
|
||||
echo __PACKAGES__
|
||||
grep '^Package:' /usr/lib/ipkg/status | cut -d' ' -f2
|
||||
|
||||
echo __FILES__
|
||||
tar -T /tmp/.wlbackup_files -cz 2>/dev/null
|
||||
rm -f /tmp/.wlbackup_files
|
||||
Reference in New Issue
Block a user