diff options
author | Max Krummenacher <max.krummenacher@toradex.com> | 2012-12-17 23:06:41 +0100 |
---|---|---|
committer | Max Krummenacher <max.krummenacher@toradex.com> | 2012-12-17 23:06:41 +0100 |
commit | 2e2ceebc25ceb3a0d5d86f692207e8ed333facae (patch) | |
tree | 5100e6d598c39b8c2968c2aff0c8a3ed670cefeb /recipes-mozilla | |
parent | a77f95269721b21e115f4476589f5853163dabe2 (diff) |
firefox: set develper.toradex.com as the homepage
Diffstat (limited to 'recipes-mozilla')
-rw-r--r-- | recipes-mozilla/firefox/files/distribution.ini | 19 | ||||
-rw-r--r-- | recipes-mozilla/firefox/firefox_10.0.2.bbappend | 8 |
2 files changed, 26 insertions, 1 deletions
diff --git a/recipes-mozilla/firefox/files/distribution.ini b/recipes-mozilla/firefox/files/distribution.ini new file mode 100644 index 0000000..5d4f532 --- /dev/null +++ b/recipes-mozilla/firefox/files/distribution.ini @@ -0,0 +1,19 @@ +# Partner Distribution Configuration File +# Author: Max Krummenacher <max.krummenacher@toradex.com> +# Make our developer support the default home page + +[Global] +id=High performance, low power computing +version= +about=Toradex + +[LocalizablePreferences] +browser.startup.homepage="http://developer.toradex.com" + +[BookmarksToolbar] +item.1.title=Toradex Homepage +item.1.link=http://www.toradex.com/ +item.1.description=Lots of cool stuff +item.2.title=Toradex Developer Ressources +item.2.link=http://developer.toradex.com/ +item.2.description=Lots of cool stuff diff --git a/recipes-mozilla/firefox/firefox_10.0.2.bbappend b/recipes-mozilla/firefox/firefox_10.0.2.bbappend index 213e335..fcdc730 100644 --- a/recipes-mozilla/firefox/firefox_10.0.2.bbappend +++ b/recipes-mozilla/firefox/firefox_10.0.2.bbappend @@ -1,6 +1,12 @@ -PRINC = "3" +PRINC = "4" FILESEXTRAPATHS_prepend := "${THISDIR}/files:" SRC_URI += "file://alignment.patch \ + file://distribution.ini \ " +do_install_append() { + install -d ${D}${libdir}/${PN}/distribution + install -m 0644 ${WORKDIR}/distribution.ini ${D}${libdir}/${PN}/distribution/ +} + |