diff options
author | Bill Yi <byi@google.com> | 2014-08-08 14:49:41 -0700 |
---|---|---|
committer | Bill Yi <byi@google.com> | 2014-08-08 22:02:28 +0000 |
commit | 158db857476959fd095b9d6ca1c322b739050c79 (patch) | |
tree | e568692715b24ddcd6d7b9d5b9521112de0c45f6 | |
parent | d1d30cfccb90dc59ceb3561c0b8fd7752938283e (diff) | |
download | device_common-158db857476959fd095b9d6ca1c322b739050c79.tar.gz device_common-158db857476959fd095b9d6ca1c322b739050c79.tar.bz2 device_common-158db857476959fd095b9d6ca1c322b739050c79.zip |
Make match more strict
This helps reduce false matches for short company names
BUG: 16463358
Change-Id: I032da8fa018fa453b054e2828cedab14e78a1a7a
-rwxr-xr-x | generate-packages.sh | 2 | ||||
-rwxr-xr-x | populate-new-device.sh | 16 |
2 files changed, 9 insertions, 9 deletions
diff --git a/generate-packages.sh b/generate-packages.sh index 96d07ef..070dfd0 100755 --- a/generate-packages.sh +++ b/generate-packages.sh @@ -41,7 +41,7 @@ do mkdir -p $FILEDIR mkdir -p tmp/vendor/$MANUFACTURER/$ROOTDEVICE - TO_EXTRACT=`sed -n -e '/'"$COMPANY"'/,/;;/ p' $EXTRACT_LIST_FILENAME | tail -n+3 | head -n-2 | sed -e 's/\\\//g'` + TO_EXTRACT=`sed -n -e '/'" $COMPANY"'/,/;;/ p' $EXTRACT_LIST_FILENAME | tail -n+3 | head -n-2 | sed -e 's/\\\//g'` echo \ \ Extracting files from OTA package for ONE_FILE in $TO_EXTRACT diff --git a/populate-new-device.sh b/populate-new-device.sh index 90ab783..09bfd8d 100755 --- a/populate-new-device.sh +++ b/populate-new-device.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -# Copyright 2013 The Android Open Source Project +# Copyright 2014 The Android Open Source Project # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -26,7 +26,7 @@ mkdir -p vendor/$1/$2 cat > device/$1/$2/vendorsetup.sh << EOF # -# Copyright 2013 The Android Open Source Project +# Copyright 2014 The Android Open Source Project # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -46,7 +46,7 @@ EOF cat > device/$1/$2/AndroidProducts.mk << EOF # -# Copyright 2013 The Android Open-Source Project +# Copyright 2014 The Android Open-Source Project # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -66,7 +66,7 @@ EOF cat > device/$1/$2/full_$2.mk << EOF # -# Copyright 2013 The Android Open-Source Project +# Copyright 2014 The Android Open-Source Project # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -92,7 +92,7 @@ EOF cat > device/$1/$2/device.mk << EOF # -# Copyright 2013 The Android Open-Source Project +# Copyright 2014 The Android Open-Source Project # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -121,7 +121,7 @@ EOF cat > device/$1/$2/BoardConfig.mk << EOF # -# Copyright 2013 The Android Open-Source Project +# Copyright 2014 The Android Open-Source Project # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -150,7 +150,7 @@ touch device/$1/$2-kernel/MODULE_LICENSE_GPL cat > vendor/$1/$2/device-vendor.mk << EOF # -# Copyright 2013 The Android Open-Source Project +# Copyright 2014 The Android Open-Source Project # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -168,7 +168,7 @@ EOF cat > vendor/$1/$2/BoardConfigVendor.mk << EOF # -# Copyright 2013 The Android Open-Source Project +# Copyright 2014 The Android Open-Source Project # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. |