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 --git a/build/module.mk b/build/module.mk | |
index b69019c..4ed8e3e 100644 | |
--- a/build/module.mk | |
+++ b/build/module.mk | |
@@ -25,10 +25,10 @@ luasource: | |
cp -pR htdocs/* dist$(HTDOCS) 2>/dev/null || true | |
for i in $$(find dist -name .svn -o -name .gitignore); do rm -rf $$i || true; done | |
ifneq ($(PO),) | |
- mkdir -p dist$(LUCI_I18NDIR) | |
- for file in $(PO); do \ |
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 --git a/target/linux/ar71xx/generic/profiles/tp-link.mk b/target/linux/ar71xx/generic/profiles/tp-link.mk | |
index d6516fe..c892022 100644 | |
--- a/target/linux/ar71xx/generic/profiles/tp-link.mk | |
+++ b/target/linux/ar71xx/generic/profiles/tp-link.mk | |
@@ -129,6 +129,18 @@ endef | |
$(eval $(call Profile,TLWR720)) | |
+define Profile/TLFCALL | |
+ NAME:=TP-LINK TL-FCALL |
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
#!/bin/sh | |
#high chance need have a change ... | |
if [ ! $# -eq 2 ]; then | |
echo "usage: $0 UBOOTFILE MD5" | |
exit | |
fi | |
UBOOT_NAME=$1 | |
MD5SUM_SHOULD_BE=$2 |
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 --git a/target/linux/ar71xx/files/drivers/mtd/tplinkpart.c b/target/linux/ar71xx/files/drivers/mtd/tplinkpart.c | |
index ab952b6..effcac7 100644 | |
--- a/target/linux/ar71xx/files/drivers/mtd/tplinkpart.c | |
+++ b/target/linux/ar71xx/files/drivers/mtd/tplinkpart.c | |
@@ -149,7 +149,6 @@ static int tplink_parse_partitions(struct mtd_info *master, | |
parts[0].name = "u-boot"; | |
parts[0].offset = 0; | |
parts[0].size = offset; | |
- parts[0].mask_flags = MTD_WRITEABLE; | |
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
#!/bin/bash | |
# From http://tech.serbinn.net/2010/shell-script-to-create-ramdisk-on-mac-os-x/ | |
# | |
ARGS=2 | |
E_BADARGS=99 | |
if [ $# -ne $ARGS ] # correct number of arguments to the script; | |
then |
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
# | |
# UPDATE for 10.10.4+: please consider this patch obsolete, as apple provides a tool called "trimforce" to enable trim support for 3rd party SSDs | |
# just run "sudo trimforce enable" to activate the trim support from now on! | |
# | |
# Original version by Grant Parnell is offline (http://digitaldj.net/2011/07/21/trim-enabler-for-lion/) | |
# Update July 2014: no longer offline, see https://digitaldj.net/blog/2011/11/17/trim-enabler-for-os-x-lion-mountain-lion-mavericks/ | |
# | |
# Looks for "Apple" string in HD kext, changes it to a wildcard match for anything | |
# | |
# Alternative to http://www.groths.org/trim-enabler-3-0-released/ |