From 47fa0e4b6da29e9ba5d3b9782ccbea30a66fcd24 Mon Sep 17 00:00:00 2001 From: Conrad Lara - KG6JEI Date: Sun, 24 May 2015 14:55:37 -0700 Subject: [PATCH] bugfix: Reduce file name length. Reduce filename length by 15 characters at all time. Help reduce problems with max name length for TPLink devices. This will not solve all issues as our file name style of branch-buildnumber-8CharCommitID the releases can get long. This will however allow the final build name for a release version to be under the max file length (for now) ref AREDN->ticket:107 --- build/buildsteps/003-buildimage.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/buildsteps/003-buildimage.sh b/build/buildsteps/003-buildimage.sh index 4dd3deb7..e994be14 100755 --- a/build/buildsteps/003-buildimage.sh +++ b/build/buildsteps/003-buildimage.sh @@ -31,5 +31,5 @@ if ( -z "$BUILD_SET_VERSION" ); then else MYBUILDNAME="${SHORT_BRANCH}-${BUILD_NUMBER}-${SHORT_COMMIT}" fi -rename "s/openwrt/AREDN-$MYBUILDNAME/g" bin/ar71xx/* +rename "s/openwrt-ar71xx-generic/AREDN-$MYBUILDNAME/g" bin/ar71xx/*