This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff -ur buildroot/package/tzdata/tzdata.mk buildroot-patched/package/tzdata/tzdata.mk | |
| --- buildroot/package/tzdata/tzdata.mk 2020-08-26 21:07:57.000000000 +0200 | |
| +++ buildroot-patched/package/tzdata/tzdata.mk 2020-08-27 16:54:38.000000000 +0200 | |
| @@ -41,18 +41,13 @@ | |
| define TZDATA_INSTALL_TARGET_CMDS | |
| $(INSTALL) -d -m 0755 $(TARGET_DIR)/usr/share/zoneinfo | |
| cp -a $(HOST_DIR)/share/zoneinfo/* $(TARGET_DIR)/usr/share/zoneinfo | |
| - cd $(TARGET_DIR)/usr/share/zoneinfo; \ | |
| - for zone in posix/*; do \ | |
| - ln -sfn "$${zone}" "$${zone##*/}"; \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| let aws = require("aws-sdk"); | |
| let platformArn = "arn:aws:sns:eu-west-1:*******************"; | |
| (async function() { | |
| let sns = new aws.SNS({region: 'eu-west-1'}); | |
| let request = { | |
| "PlatformApplicationArn": platformArn | |
| }; |
OlderNewer