diff options
Diffstat (limited to 'meta')
44 files changed, 430 insertions, 2757 deletions
diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass index 1f280a0dc5..e801fd12a9 100644 --- a/meta/classes/base.bbclass +++ b/meta/classes/base.bbclass | |||
@@ -681,9 +681,20 @@ def oe_unpack_file(file, data, url = None): | |||
681 | if os.path.samefile(file, dest): | 681 | if os.path.samefile(file, dest): |
682 | return True | 682 | return True |
683 | 683 | ||
684 | # Change to subdir before executing command | ||
685 | save_cwd = os.getcwd(); | ||
686 | parm = bb.decodeurl(url)[5] | ||
687 | if 'subdir' in parm: | ||
688 | newdir = ("%s/%s" % (os.getcwd(), parm['subdir'])) | ||
689 | bb.mkdirhier(newdir) | ||
690 | os.chdir(newdir) | ||
691 | |||
684 | cmd = "PATH=\"%s\" %s" % (bb.data.getVar('PATH', data, 1), cmd) | 692 | cmd = "PATH=\"%s\" %s" % (bb.data.getVar('PATH', data, 1), cmd) |
685 | bb.note("Unpacking %s to %s/" % (file, os.getcwd())) | 693 | bb.note("Unpacking %s to %s/" % (file, os.getcwd())) |
686 | ret = os.system(cmd) | 694 | ret = os.system(cmd) |
695 | |||
696 | os.chdir(save_cwd) | ||
697 | |||
687 | return ret == 0 | 698 | return ret == 0 |
688 | 699 | ||
689 | addtask unpack after do_fetch | 700 | addtask unpack after do_fetch |
diff --git a/meta/classes/package.bbclass b/meta/classes/package.bbclass index fa53b1358c..df870142f1 100644 --- a/meta/classes/package.bbclass +++ b/meta/classes/package.bbclass | |||
@@ -23,7 +23,7 @@ def legitimize_package_name(s): | |||
23 | # Remaining package name validity fixes | 23 | # Remaining package name validity fixes |
24 | return s.lower().replace('_', '-').replace('@', '+').replace(',', '+').replace('/', '-') | 24 | return s.lower().replace('_', '-').replace('@', '+').replace(',', '+').replace('/', '-') |
25 | 25 | ||
26 | def do_split_packages(d, root, file_regex, output_pattern, description, postinst=None, recursive=False, hook=None, extra_depends=None, aux_files_pattern=None, postrm=None, allow_dirs=False, prepend=False, match_path=False, aux_files_pattern_verbatim=None): | 26 | def do_split_packages(d, root, file_regex, output_pattern, description, postinst=None, recursive=False, hook=None, extra_depends=None, aux_files_pattern=None, postrm=None, allow_dirs=False, prepend=False, match_path=False, aux_files_pattern_verbatim=None, allow_links=False): |
27 | """ | 27 | """ |
28 | Used in .bb files to split up dynamically generated subpackages of a | 28 | Used in .bb files to split up dynamically generated subpackages of a |
29 | given package, usually plugins or modules. | 29 | given package, usually plugins or modules. |
@@ -72,7 +72,7 @@ def do_split_packages(d, root, file_regex, output_pattern, description, postinst | |||
72 | continue | 72 | continue |
73 | f = os.path.join(dvar + root, o) | 73 | f = os.path.join(dvar + root, o) |
74 | mode = os.lstat(f).st_mode | 74 | mode = os.lstat(f).st_mode |
75 | if not (stat.S_ISREG(mode) or (allow_dirs and stat.S_ISDIR(mode))): | 75 | if not (stat.S_ISREG(mode) or (allow_links and stat.S_ISLNK(mode)) or (allow_dirs and stat.S_ISDIR(mode))): |
76 | continue | 76 | continue |
77 | on = legitimize_package_name(m.group(1)) | 77 | on = legitimize_package_name(m.group(1)) |
78 | pkg = output_pattern % on | 78 | pkg = output_pattern % on |
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index 692d9b1622..7f0da1b965 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf | |||
@@ -295,7 +295,7 @@ IMAGE_ROOTFS = "${TMPDIR}/rootfs" | |||
295 | IMAGE_BASENAME = "${PN}" | 295 | IMAGE_BASENAME = "${PN}" |
296 | IMAGE_NAME = "${IMAGE_BASENAME}-${MACHINE}-${DATETIME}" | 296 | IMAGE_NAME = "${IMAGE_BASENAME}-${MACHINE}-${DATETIME}" |
297 | IMAGE_LINK_NAME = "${IMAGE_BASENAME}-${MACHINE}" | 297 | IMAGE_LINK_NAME = "${IMAGE_BASENAME}-${MACHINE}" |
298 | IMAGE_EXTRA_SPACE = 10240 | 298 | IMAGE_EXTRA_SPACE = 40240 |
299 | 299 | ||
300 | IMAGE_CMD = "" | 300 | IMAGE_CMD = "" |
301 | IMAGE_CMD_jffs2 = "mkfs.jffs2 --root=${IMAGE_ROOTFS} --faketime --output=${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.rootfs.jffs2 ${EXTRA_IMAGECMD}" | 301 | IMAGE_CMD_jffs2 = "mkfs.jffs2 --root=${IMAGE_ROOTFS} --faketime --output=${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.rootfs.jffs2 ${EXTRA_IMAGECMD}" |
@@ -424,7 +424,7 @@ EXTRA_OEMAKE_prepend_task-compile = "${PARALLEL_MAKE} " | |||
424 | # Optimization flags. | 424 | # Optimization flags. |
425 | ################################################################## | 425 | ################################################################## |
426 | 426 | ||
427 | FULL_OPTIMIZATION = "-fexpensive-optimizations -fomit-frame-pointer -frename-registers -O2" | 427 | FULL_OPTIMIZATION = "-fexpensive-optimizations -fomit-frame-pointer -frename-registers -O2 -ggdb -feliminate-unused-debug-types" |
428 | DEBUG_OPTIMIZATION = "-O -fno-omit-frame-pointer -g" | 428 | DEBUG_OPTIMIZATION = "-O -fno-omit-frame-pointer -g" |
429 | SELECTED_OPTIMIZATION = "${@bb.data.getVar(['FULL_OPTIMIZATION', 'DEBUG_OPTIMIZATION'][bb.data.getVar('DEBUG_BUILD', d, 1) == '1'], d, 1)}" | 429 | SELECTED_OPTIMIZATION = "${@bb.data.getVar(['FULL_OPTIMIZATION', 'DEBUG_OPTIMIZATION'][bb.data.getVar('DEBUG_BUILD', d, 1) == '1'], d, 1)}" |
430 | BUILD_OPTIMIZATION = "-O2" | 430 | BUILD_OPTIMIZATION = "-O2" |
diff --git a/meta/conf/checksums.ini b/meta/conf/checksums.ini index daf64cfd0b..f45e5560d2 100644 --- a/meta/conf/checksums.ini +++ b/meta/conf/checksums.ini | |||
@@ -702,6 +702,10 @@ sha256=140828e8aa7d690d8f2a9a54faeac38bcbf40ea18c1f44a186af51bd6964cd13 | |||
702 | md5=1ef201f29283179c8e5ab618529cac78 | 702 | md5=1ef201f29283179c8e5ab618529cac78 |
703 | sha256=744d8f3a8206fbc45a5558d92163d5ef7e5e0cc0700283bb6a617fb1201629f9 | 703 | sha256=744d8f3a8206fbc45a5558d92163d5ef7e5e0cc0700283bb6a617fb1201629f9 |
704 | 704 | ||
705 | [http://archive.apache.org/dist/tomcat/tomcat-4/v4.1.37/src/apache-tomcat-4.1.37-src.tar.gz] | ||
706 | md5=fe50177a25a084ad1abf4a201d08c2a6 | ||
707 | sha256=65e4cc9d3ea4a7f30044bfd6c660c772adb75ac152d775342deb6049a0d19d74 | ||
708 | |||
705 | [ftp://ftp.buici.com/pub/apex/apex-1.4.11.tar.gz] | 709 | [ftp://ftp.buici.com/pub/apex/apex-1.4.11.tar.gz] |
706 | md5=7259a49d93b1853b1b3435753893ab7c | 710 | md5=7259a49d93b1853b1b3435753893ab7c |
707 | sha256=bce6638d95fa8d32b109176a7cef6aa71e40c130068fac71b0df369d1a36c82c | 711 | sha256=bce6638d95fa8d32b109176a7cef6aa71e40c130068fac71b0df369d1a36c82c |
@@ -946,6 +950,10 @@ sha256=e25caa0e9639ea54dd7c4f21e8146ac9859a61fa126f397edf874b5fdc147430 | |||
946 | md5=4510391e6b3edaa4cffb3ced87c9560c | 950 | md5=4510391e6b3edaa4cffb3ced87c9560c |
947 | sha256=b26a3499672b0eddcbd87c8e61dfb60ae74d9ee0cc181a5d924fb73db62a25ec | 951 | sha256=b26a3499672b0eddcbd87c8e61dfb60ae74d9ee0cc181a5d924fb73db62a25ec |
948 | 952 | ||
953 | [ftp://ftp.gnu.org/gnu/automake/automake-1.10.2.tar.bz2] | ||
954 | md5=1498208ab1c8393dcbd9afb7d06df6d5 | ||
955 | sha256=c38ac9fe53d9492b0a0a02a8e691cd2c96d7f4cc13aedeedc6d08613b77e640f | ||
956 | |||
949 | [ftp://ftp.gnu.org/gnu/automake/automake-1.10.tar.bz2] | 957 | [ftp://ftp.gnu.org/gnu/automake/automake-1.10.tar.bz2] |
950 | md5=0e2e0f757f9e1e89b66033905860fded | 958 | md5=0e2e0f757f9e1e89b66033905860fded |
951 | sha256=2efebda5dd64fd52599a19564041d63dcaba68fafacc0080ffa6e8f0df8da697 | 959 | sha256=2efebda5dd64fd52599a19564041d63dcaba68fafacc0080ffa6e8f0df8da697 |
@@ -1310,6 +1318,10 @@ sha256=ac6a5c3f4aa88f39e8f04fe43f00972f0235674ac3edb994c70ac802a1ed0219 | |||
1310 | md5=5a6228512bcce7d9fabe8fc2d66269bf | 1318 | md5=5a6228512bcce7d9fabe8fc2d66269bf |
1311 | sha256=5cd1a5aeace83a9305f7221e9ec95127b5a26870c619fd00ae48f1962d59f48b | 1319 | sha256=5cd1a5aeace83a9305f7221e9ec95127b5a26870c619fd00ae48f1962d59f48b |
1312 | 1320 | ||
1321 | [ftp://ftp.debian.org/debian/pool/main/b/blktool/blktool_4.orig.tar.gz] | ||
1322 | md5=62edc09c9908107e69391c87f4f3fd40 | ||
1323 | sha256=b1e6d5912546d2a4b704ec65c2b9664aa3b4663e7d800e06803330335a2cb764 | ||
1324 | |||
1313 | [ftp://ftp.pl.debian.org/pub/debian/pool/main/b/blktool/blktool_4.orig.tar.gz] | 1325 | [ftp://ftp.pl.debian.org/pub/debian/pool/main/b/blktool/blktool_4.orig.tar.gz] |
1314 | md5=62edc09c9908107e69391c87f4f3fd40 | 1326 | md5=62edc09c9908107e69391c87f4f3fd40 |
1315 | sha256=b1e6d5912546d2a4b704ec65c2b9664aa3b4663e7d800e06803330335a2cb764 | 1327 | sha256=b1e6d5912546d2a4b704ec65c2b9664aa3b4663e7d800e06803330335a2cb764 |
@@ -1594,6 +1606,14 @@ sha256=f7bf5368309d76e5daf3a89d4d1bea688dac7780742e7a0ae1af19be9316fe22 | |||
1594 | md5=badb4563a02d4188b478df31fa1b657d | 1606 | md5=badb4563a02d4188b478df31fa1b657d |
1595 | sha256=5c4594f71eab62e24d12c67ae6a6aead306c537cf71e946c4e9fbebbe9786243 | 1607 | sha256=5c4594f71eab62e24d12c67ae6a6aead306c537cf71e946c4e9fbebbe9786243 |
1596 | 1608 | ||
1609 | [http://www.complang.tuwien.ac.at/cacaojvm/download/cacao-0.98/cacao-0.98.tar.bz2] | ||
1610 | md5=8b8907c8b925761c9410bcadb9705346 | ||
1611 | sha256=cb9363add825cedf77764fc49a223aaf43f0a9f485b711ba8c92f16b13fff188 | ||
1612 | |||
1613 | [http://www.complang.tuwien.ac.at/cacaojvm/download/cacao-0.99.3/cacao-0.99.3.tar.bz2] | ||
1614 | md5=db93ab31c6d1b7f1e213771bb81bde58 | ||
1615 | sha256=1ea5bd257f755ffcae2c7a1935c37147c7392478922410e0870361eea08b6c27 | ||
1616 | |||
1597 | [http://cairographics.org/releases/cairo-1.2.2.tar.gz] | 1617 | [http://cairographics.org/releases/cairo-1.2.2.tar.gz] |
1598 | md5=2460487b1257a5583c889b1b9d2033ec | 1618 | md5=2460487b1257a5583c889b1b9d2033ec |
1599 | sha256=9d53b8dd0bf76dd0da7cdbe65a6c6934be49bd3942dc5f7ef7bbcc7529d9ee02 | 1619 | sha256=9d53b8dd0bf76dd0da7cdbe65a6c6934be49bd3942dc5f7ef7bbcc7529d9ee02 |
@@ -1806,6 +1826,18 @@ sha256=6a068f70f908ee4de0ba4d7e1d5127b12ad548da371494c668966d1ff98e05a2 | |||
1806 | md5=cf5aaaf07fe43567fa605b33165355d7 | 1826 | md5=cf5aaaf07fe43567fa605b33165355d7 |
1807 | sha256=4f2824c42062dea269e489c1acb2769c015bf78cdaa929ee75441d412f10a03b | 1827 | sha256=4f2824c42062dea269e489c1acb2769c015bf78cdaa929ee75441d412f10a03b |
1808 | 1828 | ||
1829 | [ftp://ftp.gnu.org/gnu/classpath/classpath-0.93.tar.gz] | ||
1830 | md5=ffa9e9cac31c5acbf0ea9eff9efa923d | ||
1831 | sha256=df2d093612abd23fe67e9409d89bb2a8e79b1664fe2b2da40e1c8ed693e32945 | ||
1832 | |||
1833 | [ftp://ftp.gnu.org/gnu/classpath/classpath-0.96.1.tar.gz] | ||
1834 | md5=a2ffb40f13fc76c2dda8f8311b30add9 | ||
1835 | sha256=ee464d20ef9df2196e238302d5d06954cb96a11e73c4c44c6ef376859de2a078 | ||
1836 | |||
1837 | [ftp://ftp.gnu.org/gnu/classpath/classpath-0.97.2.tar.gz] | ||
1838 | md5=6a35347901ace03c31cc49751b338f31 | ||
1839 | sha256=001fee5ad3ddd043783d59593153510f09064b0d9b5aea82f535266f62f02db4 | ||
1840 | |||
1809 | [http://downloads.sourceforge.net/sylpheed-claws/claws-mail-2.7.2.tar.bz2] | 1841 | [http://downloads.sourceforge.net/sylpheed-claws/claws-mail-2.7.2.tar.bz2] |
1810 | md5=079f167fba6e17ae2c688a0dae858b0f | 1842 | md5=079f167fba6e17ae2c688a0dae858b0f |
1811 | sha256=a47a079f583581c2d049195f12a26524390e272c820b2c7233a37582e887a5b5 | 1843 | sha256=a47a079f583581c2d049195f12a26524390e272c820b2c7233a37582e887a5b5 |
@@ -2182,6 +2214,10 @@ sha256=4be82f4ef8f4657f997a44b3daddba3f95dbb6518487509767d803dd72bf529e | |||
2182 | md5=c552b9bc4b69e4c602644abc21b7661e | 2214 | md5=c552b9bc4b69e4c602644abc21b7661e |
2183 | sha256=6f1fca18af9214e896c5c0a11f94fe05a0345c641ed57da886a93a4e3b33147e | 2215 | sha256=6f1fca18af9214e896c5c0a11f94fe05a0345c641ed57da886a93a4e3b33147e |
2184 | 2216 | ||
2217 | [http://dbus.freedesktop.org/releases/dbus/dbus-1.2.4.tar.gz] | ||
2218 | md5=2e643910a09f44b000a0d76038637999 | ||
2219 | sha256=ab3c24d8028a5792e62e8e3b40a9733b10b21327dc4c578e34b092a1793afbb8 | ||
2220 | |||
2185 | [http://freedesktop.org/software/dbus/releases/dbus-glib-0.71.tar.gz] | 2221 | [http://freedesktop.org/software/dbus/releases/dbus-glib-0.71.tar.gz] |
2186 | md5=4e1e7348b26ee8b6485452113f4221cc | 2222 | md5=4e1e7348b26ee8b6485452113f4221cc |
2187 | sha256=b58a489fdd35a70d241f512bc08f3b6d9d8e05110f4a1d5341cff6a0b7d854b7 | 2223 | sha256=b58a489fdd35a70d241f512bc08f3b6d9d8e05110f4a1d5341cff6a0b7d854b7 |
@@ -2418,6 +2454,10 @@ sha256=cc2c86cbd0ec020a4486ac9d195e6a848a0d11a280c3194e095719f60c9751a9 | |||
2418 | md5=ab066a97c226066485ad20e5ad5ce424 | 2454 | md5=ab066a97c226066485ad20e5ad5ce424 |
2419 | sha256=54f3e9ac2bd9f622b28ab0d5149e9bc13d62d8826be085c32abc929bc30dda6a | 2455 | sha256=54f3e9ac2bd9f622b28ab0d5149e9bc13d62d8826be085c32abc929bc30dda6a |
2420 | 2456 | ||
2457 | [http://www.thekelleys.org.uk/dnsmasq/dnsmasq-2.46.tar.gz] | ||
2458 | md5=79ec740d1a10ee75f13efa4ff36d0250 | ||
2459 | sha256=9888d96d7d91e518c96a034dc863f8f7d961acd9334a1acde849c6022e540212 | ||
2460 | |||
2421 | [ftp://sources.redhat.com/pub/docbook-tools/new-trials/SOURCES/docbook-utils-0.6.13.tar.gz] | 2461 | [ftp://sources.redhat.com/pub/docbook-tools/new-trials/SOURCES/docbook-utils-0.6.13.tar.gz] |
2422 | md5=af785716b207a7a562551851298a3b1a | 2462 | md5=af785716b207a7a562551851298a3b1a |
2423 | sha256=f74e9485f1e1f7484be432f4979415afbd9d8c20d0bdf6eab42eb2931b9b5d97 | 2463 | sha256=f74e9485f1e1f7484be432f4979415afbd9d8c20d0bdf6eab42eb2931b9b5d97 |
@@ -2506,6 +2546,22 @@ sha256=c4e482687d0cff240d02a70fcf423cc14296b6a7869cd8dd42d5404d098e0bb7 | |||
2506 | md5=1c1c5177aea9a23b45b9b3f5b3241819 | 2546 | md5=1c1c5177aea9a23b45b9b3f5b3241819 |
2507 | sha256=635d6d07e5a4d615e599c051166af965baa754f9ff7435e746de1a5d2a5c0d56 | 2547 | sha256=635d6d07e5a4d615e599c051166af965baa754f9ff7435e746de1a5d2a5c0d56 |
2508 | 2548 | ||
2549 | [http://downloads.sourceforge.net/e2fsprogs/e2fsprogs-libs-1.33.tar.gz] | ||
2550 | md5=c7545bb05e0c2fc59174f0dc455c6519 | ||
2551 | sha256=a65d064bee3e97c164d07a490692db0e73da8da10019ad9a89866706c93ae703 | ||
2552 | |||
2553 | [http://downloads.sourceforge.net/e2fsprogs/e2fsprogs-libs-1.34.tar.gz] | ||
2554 | md5=b51824f1c34be88e8581d96fc418d224 | ||
2555 | sha256=2c505a14157fe591bd540b9a0dca11f5d842e3b6c34a23dbbbd9eafcc9fa33fa | ||
2556 | |||
2557 | [http://downloads.sourceforge.net/e2fsprogs/e2fsprogs-libs-1.35.tar.gz] | ||
2558 | md5=d31301cc2756dc9b0254b6aac03c376e | ||
2559 | sha256=236f1c173fe378b1306db797dc31f1884208ceac3ab81ad52f69e01f7bf61277 | ||
2560 | |||
2561 | [http://downloads.sourceforge.net/e2fsprogs/e2fsprogs-libs-1.39.tar.gz] | ||
2562 | md5=32a2f67223feb2d70233eb3f41e73311 | ||
2563 | sha256=fe3c72d861f2a3791f31ea33043d25e29e9a4e3d6a3833b151237a62c5c703f9 | ||
2564 | |||
2509 | [http://www.pobox.com/~sheff/sw/e2tools/e2tools-0.0.16.tar.gz] | 2565 | [http://www.pobox.com/~sheff/sw/e2tools/e2tools-0.0.16.tar.gz] |
2510 | md5=1829b2b261e0e0d07566066769b5b28b | 2566 | md5=1829b2b261e0e0d07566066769b5b28b |
2511 | sha256=4e3c8e17786ccc03fc9fb4145724edf332bb50e1b3c91b6f33e0e3a54861949b | 2567 | sha256=4e3c8e17786ccc03fc9fb4145724edf332bb50e1b3c91b6f33e0e3a54861949b |
@@ -2530,6 +2586,10 @@ sha256=6b5a71790120977a96d5a468ed69987107c5079f14b0a4081f460b3b14fbf952 | |||
2530 | md5=c3c60c83f6df30021e11da50a699dec9 | 2586 | md5=c3c60c83f6df30021e11da50a699dec9 |
2531 | sha256=2382f315fda4241a0043bac1dfc669f006d8e93e87fa382b263b1672972f4077 | 2587 | sha256=2382f315fda4241a0043bac1dfc669f006d8e93e87fa382b263b1672972f4077 |
2532 | 2588 | ||
2589 | [http://mirrors.ibiblio.org/pub/mirrors/eclipse/eclipse/downloads/drops/R-3.4-200806172000/ecjsrc-3.4.zip] | ||
2590 | md5=f7b84d912e61dfdd77b7173065845250 | ||
2591 | sha256=a6ce5f0682462e85e5e47229e5b16555f74c60188fa0bb17536beb1138c537b4 | ||
2592 | |||
2533 | [http://enlightenment.freedesktop.org/files/ecore-0.9.9.037.tar.gz] | 2593 | [http://enlightenment.freedesktop.org/files/ecore-0.9.9.037.tar.gz] |
2534 | md5=ec6d00a39ca6648f12f58f8d4f2208cc | 2594 | md5=ec6d00a39ca6648f12f58f8d4f2208cc |
2535 | sha256=2c31372ccfc9b411edc73785450c5212dc4a2fe286de9f49f38a02dd24895aea | 2595 | sha256=2c31372ccfc9b411edc73785450c5212dc4a2fe286de9f49f38a02dd24895aea |
@@ -2822,6 +2882,10 @@ sha256=52b31fa70151b97ef871d44ad9214e90279f7cbd95144c6b40da49079ed0f1ce | |||
2822 | md5=3654bbbf01deeb0d804df194e1b1a2b3 | 2882 | md5=3654bbbf01deeb0d804df194e1b1a2b3 |
2823 | sha256=52b31fa70151b97ef871d44ad9214e90279f7cbd95144c6b40da49079ed0f1ce | 2883 | sha256=52b31fa70151b97ef871d44ad9214e90279f7cbd95144c6b40da49079ed0f1ce |
2824 | 2884 | ||
2885 | [ftp://ftp.debian.org/debian/pool/main/f/fakeroot/fakeroot_1.9.4.tar.gz] | ||
2886 | md5=c324eb1e157edad17d98b1b2c8b99e25 | ||
2887 | sha256=8c55b1640c726bd421b68a1119f20b002eb29d95ae58d480a1d5d7d8afba1e81 | ||
2888 | |||
2825 | [ftp://ftp.pl.debian.org/pub/debian/pool/main/f/fakeroot/fakeroot_1.9.4.tar.gz] | 2889 | [ftp://ftp.pl.debian.org/pub/debian/pool/main/f/fakeroot/fakeroot_1.9.4.tar.gz] |
2826 | md5=c324eb1e157edad17d98b1b2c8b99e25 | 2890 | md5=c324eb1e157edad17d98b1b2c8b99e25 |
2827 | sha256=8c55b1640c726bd421b68a1119f20b002eb29d95ae58d480a1d5d7d8afba1e81 | 2891 | sha256=8c55b1640c726bd421b68a1119f20b002eb29d95ae58d480a1d5d7d8afba1e81 |
@@ -2838,6 +2902,10 @@ sha256=1e0aa136693a3e9f4b43ebd71e7bd934cea31817a4a6cba2edc7aac353b8a93f | |||
2838 | md5=2aaf871471a9ec037763c5dc7c193c57 | 2902 | md5=2aaf871471a9ec037763c5dc7c193c57 |
2839 | sha256=6b9785167934948a582839f9723e37214cab1607a9764c35f10d555f8e662575 | 2903 | sha256=6b9785167934948a582839f9723e37214cab1607a9764c35f10d555f8e662575 |
2840 | 2904 | ||
2905 | [http://download.savannah.nongnu.org/releases/fastjar/fastjar-0.95.tar.gz] | ||
2906 | md5=92a70f9e56223b653bce0f58f90cf950 | ||
2907 | sha256=ca03811490c965abc9f466e75418ae48bb71f14d8e8ed4c43e8109207b85ce54 | ||
2908 | |||
2841 | [http://ftp3.ie.freebsd.org/pub/gentoo/distfiles/fbgetty-0.1.698.tar.gz] | 2909 | [http://ftp3.ie.freebsd.org/pub/gentoo/distfiles/fbgetty-0.1.698.tar.gz] |
2842 | md5=1705bc0f8f1e03fe50d324ba84ac4e56 | 2910 | md5=1705bc0f8f1e03fe50d324ba84ac4e56 |
2843 | sha256=332cbffa7c489b39a7d13d12d581c27dfc57ba098041431a6845b44785cf2d35 | 2911 | sha256=332cbffa7c489b39a7d13d12d581c27dfc57ba098041431a6845b44785cf2d35 |
@@ -3498,6 +3566,10 @@ sha256=63dc1c03a107ec73871151bb765da7d5dfc1d699c0d0d6a3d244cf5ccb030913 | |||
3498 | md5=b594ff4ea4fbef4ba9220887de713dfe | 3566 | md5=b594ff4ea4fbef4ba9220887de713dfe |
3499 | sha256=3444179840638cb8664e8e53604900c4521d29d57785a5091202ee4937d8d0fd | 3567 | sha256=3444179840638cb8664e8e53604900c4521d29d57785a5091202ee4937d8d0fd |
3500 | 3568 | ||
3569 | [ftp://ftp.gnu.org/gnu/gcc/gcc-3.4.6/gcc-3.4.6.tar.bz2] | ||
3570 | md5=4a21ac777d4b5617283ce488b808da7b | ||
3571 | sha256=7791a601878b765669022b8b3409fba33cc72f9e39340fec8af6d0e6f72dec39 | ||
3572 | |||
3501 | [ftp://ftp.gnu.org/gnu/gcc/gcc-4.0.0/gcc-4.0.0.tar.bz2] | 3573 | [ftp://ftp.gnu.org/gnu/gcc/gcc-4.0.0/gcc-4.0.0.tar.bz2] |
3502 | md5=55ee7df1b29f719138ec063c57b89db6 | 3574 | md5=55ee7df1b29f719138ec063c57b89db6 |
3503 | sha256=38a9a01e195000976dcd04ec854c398478ada839510b1de384ffbd5f99791bdc | 3575 | sha256=38a9a01e195000976dcd04ec854c398478ada839510b1de384ffbd5f99791bdc |
@@ -5598,6 +5670,10 @@ sha256=ef6b1c8def236f16ea914eccbb050c84ee314c0028b03c560ed20ff96776f74c | |||
5598 | md5=641ec45fe377529c7fd914f77b11b44f | 5670 | md5=641ec45fe377529c7fd914f77b11b44f |
5599 | sha256=9ff8360375432a7a5c476cc6d55b3fdea9d6f3edc080d295a60421d8f47b1834 | 5671 | sha256=9ff8360375432a7a5c476cc6d55b3fdea9d6f3edc080d295a60421d8f47b1834 |
5600 | 5672 | ||
5673 | [http://jalimo.evolvis.org/repository/sources/icepick-0.0+hg20080118.tar.bz2] | ||
5674 | md5=ce7b1827e6f4cbe73b9ffa90b0d45a6a | ||
5675 | sha256=63170836095f8451498c813a1f93a9ec70a1164d82aa30650c0f2216ca4377ab | ||
5676 | |||
5601 | [http://ftp.debian.org/debian/pool/main/i/iceweasel/iceweasel_3.0.1-1.diff.gz] | 5677 | [http://ftp.debian.org/debian/pool/main/i/iceweasel/iceweasel_3.0.1-1.diff.gz] |
5602 | md5=7124ea3c13369ff27bcff0080aca678f | 5678 | md5=7124ea3c13369ff27bcff0080aca678f |
5603 | sha256=1d70e21e1c20e8d88bf3d2590de75c3e65b12da335097716adc58712cea41dad | 5679 | sha256=1d70e21e1c20e8d88bf3d2590de75c3e65b12da335097716adc58712cea41dad |
@@ -7870,6 +7946,10 @@ sha256=e69f4cc9baee9be87400371cbdca1cb03428394c624640e64397089d090dbf0d | |||
7870 | md5=c779f84c4add124e704e6ea3ccc4039c | 7946 | md5=c779f84c4add124e704e6ea3ccc4039c |
7871 | sha256=d98203f017c6e1de7dca2037c533000705fc86b12f29694ddb4db17854e5498a | 7947 | sha256=d98203f017c6e1de7dca2037c533000705fc86b12f29694ddb4db17854e5498a |
7872 | 7948 | ||
7949 | [http://ftp.gnome.org/pub/GNOME/sources/libsoup/2.4/libsoup-2.4.1.tar.bz2] | ||
7950 | md5=d0fc91ccb9da401e9e40d2f4612bdac9 | ||
7951 | sha256=774094746748fb0c8985210de0994accdc7095c222fba42c5623e2137443b6cd | ||
7952 | |||
7873 | [http://www.libspf2.org/spf/libspf2-1.0.4.tar.gz] | 7953 | [http://www.libspf2.org/spf/libspf2-1.0.4.tar.gz] |
7874 | md5=5fe69ba13bf35d505b733247032a8a64 | 7954 | md5=5fe69ba13bf35d505b733247032a8a64 |
7875 | sha256=222803a98d1e86ac7eee9491beb5fbf30e259a3c74cd4166bda1796374c26cd1 | 7955 | sha256=222803a98d1e86ac7eee9491beb5fbf30e259a3c74cd4166bda1796374c26cd1 |
@@ -8538,6 +8618,10 @@ sha256=e08067d89e306fad7f4be56821998c073fc457d9444a18f6eb55dc7c0710a9d5 | |||
8538 | md5=dea74646b7e5c621fef7174df83c34b1 | 8618 | md5=dea74646b7e5c621fef7174df83c34b1 |
8539 | sha256=a6c85d85f912e1c321723084389d63dee7660b81b8292452b190ea7190dd73bc | 8619 | sha256=a6c85d85f912e1c321723084389d63dee7660b81b8292452b190ea7190dd73bc |
8540 | 8620 | ||
8621 | [http://www.lua.org/ftp/lua-5.1.4.tar.gz] | ||
8622 | md5=d0870f2de55d59c1c8419f36e8fac150 | ||
8623 | sha256=b038e225eaf2a5b57c9bcc35cd13aa8c6c8288ef493d52970c9545074098af3a | ||
8624 | |||
8541 | [http://luaforge.net/frs/download.php/989/lua-gtk2-0.3.tar.gz] | 8625 | [http://luaforge.net/frs/download.php/989/lua-gtk2-0.3.tar.gz] |
8542 | md5=a2788c45d60ef8ce30168811d7e72334 | 8626 | md5=a2788c45d60ef8ce30168811d7e72334 |
8543 | sha256=b3dd85e34b22cf757eafb6ef15c5505d5ec5e71803caef4b69ddc7fd5d46fabe | 8627 | sha256=b3dd85e34b22cf757eafb6ef15c5505d5ec5e71803caef4b69ddc7fd5d46fabe |
@@ -8626,6 +8710,10 @@ sha256=d7ee2e668455f9a092418e5475f32676eb0b37c54ae38a7fcdf2d14e0fb80c91 | |||
8626 | md5=be2790a34349ab452dddbcfe4c95606a | 8710 | md5=be2790a34349ab452dddbcfe4c95606a |
8627 | sha256=c1c67839d4af290aecd8f7743312aacc0a39ae99757f0910918531ef9a63e14f | 8711 | sha256=c1c67839d4af290aecd8f7743312aacc0a39ae99757f0910918531ef9a63e14f |
8628 | 8712 | ||
8713 | [ftp://ftp.gnu.org/gnu/m4/m4-1.4.12.tar.gz] | ||
8714 | md5=0499a958a561781b125c740f18061ea8 | ||
8715 | sha256=47e8f9a33ba06fa6710b42d6f6ded41f45027f6f4039b0a3ed887c5116bc2173 | ||
8716 | |||
8629 | [ftp://ftp.gnu.org/gnu/m4/m4-1.4.4.tar.gz] | 8717 | [ftp://ftp.gnu.org/gnu/m4/m4-1.4.4.tar.gz] |
8630 | md5=8d1d64dbecf1494690a0f3ba8db4482a | 8718 | md5=8d1d64dbecf1494690a0f3ba8db4482a |
8631 | sha256=a116c52d314c8e3365756cb1e14c6b460d6bd28769121f92373a362497359d88 | 8719 | sha256=a116c52d314c8e3365756cb1e14c6b460d6bd28769121f92373a362497359d88 |
@@ -9594,6 +9682,10 @@ sha256=e4c0875794a74ac627b7b74b6098e75c8413bd156856dc434a49c4c112a68af2 | |||
9594 | md5=7df692e3186109cc00db6825b777201e | 9682 | md5=7df692e3186109cc00db6825b777201e |
9595 | sha256=1d2d7996cc94f9b87d0c51cf0e028070ac177c4123ecbfd7ac1cb8d0b7d322d1 | 9683 | sha256=1d2d7996cc94f9b87d0c51cf0e028070ac177c4123ecbfd7ac1cb8d0b7d322d1 |
9596 | 9684 | ||
9685 | [http://jalimo.evolvis.org/repository/sources/openjdk-langtools-jdk7-b31.tar.bz2] | ||
9686 | md5=670931f67b2e4ac46c6e0cd15418f2fa | ||
9687 | sha256=f8b8820e410c137d279d14dec7e7a93217cc371acdfe1b3343b2278d1728932e | ||
9688 | |||
9597 | [ftp://ftp.openldap.org/pub/OpenLDAP/openldap-release/openldap-2.2.29.tgz] | 9689 | [ftp://ftp.openldap.org/pub/OpenLDAP/openldap-release/openldap-2.2.29.tgz] |
9598 | md5=6c4c72a1336aa45b463e738034c078d6 | 9690 | md5=6c4c72a1336aa45b463e738034c078d6 |
9599 | sha256=82ed5a27d2b340826b2e10625e687627ccefc883a426314952e4a253d5a6af29 | 9691 | sha256=82ed5a27d2b340826b2e10625e687627ccefc883a426314952e4a253d5a6af29 |
@@ -10082,6 +10174,10 @@ sha256=3d087c88f6e2cc8fde8d2ab12ff2f85ca3ecb2c67754d0483d158f2e5802b015 | |||
10082 | md5=5f09df47a16e83462384b44b75310539 | 10174 | md5=5f09df47a16e83462384b44b75310539 |
10083 | sha256=72f3cdad93b5436070dcc63b67764a06c594f324ccc001e8bfb974a8d1a86f36 | 10175 | sha256=72f3cdad93b5436070dcc63b67764a06c594f324ccc001e8bfb974a8d1a86f36 |
10084 | 10176 | ||
10177 | [http://distro.ibiblio.org/pub/linux/distributions/gentoo/distfiles/pax-utils-0.1.19.tar.bz2] | ||
10178 | md5=98f6b9fe17a740a8cc577255422c6103 | ||
10179 | sha256=3918628e9f2508708a1a28f5ed4cb39d07cbd5711747bbb3ddf63816d056c11e | ||
10180 | |||
10085 | [http://the.earth.li/pub/e3/pbltool-0.2.c] | 10181 | [http://the.earth.li/pub/e3/pbltool-0.2.c] |
10086 | md5=c8fd507f831d2b017dfecf60bc55e28a | 10182 | md5=c8fd507f831d2b017dfecf60bc55e28a |
10087 | sha256=2a1e31d4ae859e530895882273fad0170374a2d5b838bb4558303e59236e9cb6 | 10183 | sha256=2a1e31d4ae859e530895882273fad0170374a2d5b838bb4558303e59236e9cb6 |
@@ -10178,6 +10274,10 @@ sha256=3e9510ce715f28b7e6b803fcdadb73b37c83792c0b5e1e9bcb066ab972649996 | |||
10178 | md5=e6029fafcee029edcfa2ceed7a005333 | 10274 | md5=e6029fafcee029edcfa2ceed7a005333 |
10179 | sha256=e105b6aad55589aecf20ae70ab7aa81eb202296fc52531f62e546af23077cca1 | 10275 | sha256=e105b6aad55589aecf20ae70ab7aa81eb202296fc52531f62e546af23077cca1 |
10180 | 10276 | ||
10277 | [http://us2.php.net/distributions/php-5.2.6.tar.bz2] | ||
10278 | md5=7380ffecebd95c6edb317ef861229ebd | ||
10279 | sha256=1892b2dd50b56ae2c9aec027fcd9035b76673f113555bc2bc1007bab8ae4db81 | ||
10280 | |||
10181 | [http://efault.net/npat/hacks/picocom/dist/picocom-1.3.tar.gz] | 10281 | [http://efault.net/npat/hacks/picocom/dist/picocom-1.3.tar.gz] |
10182 | md5=21865bf2891222082afc44afdd80aeaa | 10282 | md5=21865bf2891222082afc44afdd80aeaa |
10183 | sha256=ed3e0190a1940cf08a167429aa3fd25b3ae7313fdf126f851a9abccc89845ee6 | 10283 | sha256=ed3e0190a1940cf08a167429aa3fd25b3ae7313fdf126f851a9abccc89845ee6 |
@@ -11046,6 +11146,10 @@ sha256=06b32d6f8fe7065b4c2c8142a244374e1be963757125bac20ba016b92231b5bf | |||
11046 | md5=5f8dd5a041ca7c700b16620228f922aa | 11146 | md5=5f8dd5a041ca7c700b16620228f922aa |
11047 | sha256=de7290f334baf631a14d031df304ee94cfb550aa69e7512aa589d21c2381c7d8 | 11147 | sha256=de7290f334baf631a14d031df304ee94cfb550aa69e7512aa589d21c2381c7d8 |
11048 | 11148 | ||
11149 | [http://download.savannah.gnu.org/releases/quilt/quilt-0.47.tar.gz] | ||
11150 | md5=d33d2442bd34387260b1c1db3e623af0 | ||
11151 | sha256=100a6a7d5012d36590e607ebc87535f62318cfe7368f4cd44cacb94a2cf938a2 | ||
11152 | |||
11049 | [http://downloads.sourceforge.net/qwt/qwt-4.2.0rc1.tgz] | 11153 | [http://downloads.sourceforge.net/qwt/qwt-4.2.0rc1.tgz] |
11050 | md5=142b10ab27e837c3c4603cf9a7e9343b | 11154 | md5=142b10ab27e837c3c4603cf9a7e9343b |
11051 | sha256=3b6db68d53441119dced27e5bad26ec087294cb9d878d37bcea61e1f1e4849a1 | 11155 | sha256=3b6db68d53441119dced27e5bad26ec087294cb9d878d37bcea61e1f1e4849a1 |
@@ -11286,6 +11390,10 @@ sha256=59cc003bab753335b3ce14a908e663ea782514b3531dc7030379ff753ef1a78c | |||
11286 | md5=3fbb02294a8ca33d4684055adba5ed6f | 11390 | md5=3fbb02294a8ca33d4684055adba5ed6f |
11287 | sha256=19590e972b80333e26a6514c34d976c2037138361481a16f27b75e5d33f33a58 | 11391 | sha256=19590e972b80333e26a6514c34d976c2037138361481a16f27b75e5d33f33a58 |
11288 | 11392 | ||
11393 | [ftp://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.6-p286.tar.gz] | ||
11394 | md5=797ea136fe43e4286c9362ee4516674e | ||
11395 | sha256=1774de918b156c360843c1b68690f5f57532ee48ff079d4d05c51dace8d523ed | ||
11396 | |||
11289 | [http://dist.schmorp.de/rxvt-unicode/Attic/rxvt-unicode-4.8.tar.bz2] | 11397 | [http://dist.schmorp.de/rxvt-unicode/Attic/rxvt-unicode-4.8.tar.bz2] |
11290 | md5=b8f69ee5a4a2cd195892107be3a3cb29 | 11398 | md5=b8f69ee5a4a2cd195892107be3a3cb29 |
11291 | sha256=de644640cf71a6ce72f27ac6489b65434105fc6c94538c471925a15e2259b796 | 11399 | sha256=de644640cf71a6ce72f27ac6489b65434105fc6c94538c471925a15e2259b796 |
@@ -11826,10 +11934,18 @@ sha256=0ad86c4b26cd687122b158bf848f0a07d7cd644033d15c4f43b6d643bd74cd81 | |||
11826 | md5=b4f631268d811189cfca1d5259cb5dd8 | 11934 | md5=b4f631268d811189cfca1d5259cb5dd8 |
11827 | sha256=af0b4ca361435e54316ddf715737b5b94c737c41e3c0b0e6d66ee8a8938f4500 | 11935 | sha256=af0b4ca361435e54316ddf715737b5b94c737c41e3c0b0e6d66ee8a8938f4500 |
11828 | 11936 | ||
11937 | [http://www.sqlite.org/sqlite-3.5.4.tar.gz] | ||
11938 | md5=f17da840eed792e896c3408d0ce97718 | ||
11939 | sha256=47daba209bd3bcffa1c5fcd5fdfc4f524eae619b4fa855aeeb1bbbc8bd2bb04f | ||
11940 | |||
11829 | [http://www.sqlite.org/sqlite-3.5.6.tar.gz] | 11941 | [http://www.sqlite.org/sqlite-3.5.6.tar.gz] |
11830 | md5=903c9e935c538af392364a9172a3d98d | 11942 | md5=903c9e935c538af392364a9172a3d98d |
11831 | sha256=1673b9218ec318067a662315c161ae123088cad319231ec079018acb4717e8bb | 11943 | sha256=1673b9218ec318067a662315c161ae123088cad319231ec079018acb4717e8bb |
11832 | 11944 | ||
11945 | [http://www.sqlite.org/sqlite-3.6.7.tar.gz] | ||
11946 | md5=5223d1f459b608ed8c2c54f8847f8e1a | ||
11947 | sha256=55464820daf6d0559ac6355e9c873b6f111f48a18a9751261a86c650291a65de | ||
11948 | |||
11833 | [http://downloads.sourceforge.net/squashfs/squashfs2.0-r2.tar.gz] | 11949 | [http://downloads.sourceforge.net/squashfs/squashfs2.0-r2.tar.gz] |
11834 | md5=0b7fcaab8e634ae2385984885c731082 | 11950 | md5=0b7fcaab8e634ae2385984885c731082 |
11835 | sha256=353b768294783959219f1203e76c128fb4c75fa37f3a3bb139603c5db55c6974 | 11951 | sha256=353b768294783959219f1203e76c128fb4c75fa37f3a3bb139603c5db55c6974 |
@@ -11954,6 +12070,10 @@ sha256=8f2275d9667909d3418213522d5d4ef3312c158190429062f79da6b982b9ce6b | |||
11954 | md5=157d31c9dc02aa22b5f27323e5a203fc | 12070 | md5=157d31c9dc02aa22b5f27323e5a203fc |
11955 | sha256=c31d3bbee984c7971d2b24cddc279d8ad65edff8216778d617484c147ba3ae3d | 12071 | sha256=c31d3bbee984c7971d2b24cddc279d8ad65edff8216778d617484c147ba3ae3d |
11956 | 12072 | ||
12073 | [http://swfdec.freedesktop.org/download/swfdec/0.7/swfdec-0.7.4.tar.gz] | ||
12074 | md5=08fcda4a46454bfc66b97fba2d385f8c | ||
12075 | sha256=4345da2a4790125bd7205bd10a3326bf94e36f97229850b99ec9e8f050a9ab4a | ||
12076 | |||
11957 | [http://downloads.sourceforge.net/swig/swig-1.3.29.tar.gz] | 12077 | [http://downloads.sourceforge.net/swig/swig-1.3.29.tar.gz] |
11958 | md5=44c6f6d8d724cf7fa4a5109e6f63c9b1 | 12078 | md5=44c6f6d8d724cf7fa4a5109e6f63c9b1 |
11959 | sha256=68b1b032cdc6297f068ef8c3c09abdd46a08512e17705d477cc0bf7b80a550e8 | 12079 | sha256=68b1b032cdc6297f068ef8c3c09abdd46a08512e17705d477cc0bf7b80a550e8 |
@@ -13282,6 +13402,10 @@ sha256=41c091d05943817c0b667192dab8c8f3a3a59c04a66dd311a9573f48a7b70b3b | |||
13282 | md5=c0e88fc3483d90a7fea6a399298d90ea | 13402 | md5=c0e88fc3483d90a7fea6a399298d90ea |
13283 | sha256=41c091d05943817c0b667192dab8c8f3a3a59c04a66dd311a9573f48a7b70b3b | 13403 | sha256=41c091d05943817c0b667192dab8c8f3a3a59c04a66dd311a9573f48a7b70b3b |
13284 | 13404 | ||
13405 | [http://xorg.freedesktop.org/releases/individual/app/xeyes-1.0.1.tar.bz2] | ||
13406 | md5=033f14f7c4e30d1f4edbb22d5ef86883 | ||
13407 | sha256=530902e8732130e37d9b46e73eecff90d6dbc5d5628620fded74a4e054aa8029 | ||
13408 | |||
13285 | [http://xorg.freedesktop.org/releases/X11R7.0/src/app/xeyes-X11R7.0-1.0.1.tar.bz2] | 13409 | [http://xorg.freedesktop.org/releases/X11R7.0/src/app/xeyes-X11R7.0-1.0.1.tar.bz2] |
13286 | md5=3ffafa7f222ea799bcd9fcd85c60ab98 | 13410 | md5=3ffafa7f222ea799bcd9fcd85c60ab98 |
13287 | sha256=e93bb322fe96ceabd0581bb70101aaa1001b0b8f894b3ae0e1fa2e4b38f41af2 | 13411 | sha256=e93bb322fe96ceabd0581bb70101aaa1001b0b8f894b3ae0e1fa2e4b38f41af2 |
diff --git a/meta/conf/distro/include/poky-fixed-revisions.inc b/meta/conf/distro/include/poky-fixed-revisions.inc index 21b632a618..97c8da6897 100644 --- a/meta/conf/distro/include/poky-fixed-revisions.inc +++ b/meta/conf/distro/include/poky-fixed-revisions.inc | |||
@@ -33,7 +33,7 @@ SRCREV_pn-clutter-gtk-0.8 ?= "7d3c3230376e731c06c21afa9d8c1d44dbea27cd" | |||
33 | SRCREV_pn-clutter-gtk ?= "70f4b0cbd568dfa265484a03be3bd08ad15ed12e" | 33 | SRCREV_pn-clutter-gtk ?= "70f4b0cbd568dfa265484a03be3bd08ad15ed12e" |
34 | SRCREV_pn-clutter-0.6 ?= "62e852a51e29dd42c84d6b34fe23b80b2542be59" | 34 | SRCREV_pn-clutter-0.6 ?= "62e852a51e29dd42c84d6b34fe23b80b2542be59" |
35 | SRCREV_pn-clutter-0.8 ?= "3ba37ff115ed3fbe6c94195775941091a3ac2b30" | 35 | SRCREV_pn-clutter-0.8 ?= "3ba37ff115ed3fbe6c94195775941091a3ac2b30" |
36 | SRCREV_pn-clutter ?= "4e0073cd508ad55c8d6b6d031f060ae9644620c2" | 36 | SRCREV_pn-clutter ?= "269598a2cfa147b4d8361789356aba8318bde434" |
37 | SRCREV_pn-connman ?= "e952851502277cc41cd2a54ef5386cca7a8843dd" | 37 | SRCREV_pn-connman ?= "e952851502277cc41cd2a54ef5386cca7a8843dd" |
38 | SRCREV_pn-connman-gnome ?= "b589f4f89bff20d54682cc6b49efa86feac8adb4" | 38 | SRCREV_pn-connman-gnome ?= "b589f4f89bff20d54682cc6b49efa86feac8adb4" |
39 | SRCREV_pn-dialer ?= "42a2b4dd62cf94dc905caeb087f5e7e9f418bf93" | 39 | SRCREV_pn-dialer ?= "42a2b4dd62cf94dc905caeb087f5e7e9f418bf93" |
@@ -115,7 +115,7 @@ SRCREV_pn-ubootchart ?= "10" | |||
115 | SRCREV_pn-dfu-util-native = "3139" | 115 | SRCREV_pn-dfu-util-native = "3139" |
116 | SRCREV_pn-dfu-util = "3139" | 116 | SRCREV_pn-dfu-util = "3139" |
117 | SRCREV_pn-libgsmd ?= "4335" | 117 | SRCREV_pn-libgsmd ?= "4335" |
118 | SRCREV_pn-libjana = "732" | 118 | SRCREV_pn-libjana = "749" |
119 | SRCREV_pn-libmokogsmd2 ?= "4334" | 119 | SRCREV_pn-libmokogsmd2 ?= "4334" |
120 | SRCREV_pn-libmokojournal2 ?= "3473" | 120 | SRCREV_pn-libmokojournal2 ?= "3473" |
121 | SRCREV_pn-libmokopanelui2 ?= "3349" | 121 | SRCREV_pn-libmokopanelui2 ?= "3349" |
@@ -157,7 +157,7 @@ SRCREV_pn-xserver-xf86-dri-lite ?= "251d0d8090322b2c9dc0c8b7bef001f338d19433" | |||
157 | SRCREV_pn-xserver-xf86-dri2-lite ?= "251d0d8090322b2c9dc0c8b7bef001f338d19433" | 157 | SRCREV_pn-xserver-xf86-dri2-lite ?= "251d0d8090322b2c9dc0c8b7bef001f338d19433" |
158 | SRCREV_pn-gsm0710muxd ?= "6fecc78198dd821bbe29efd096bd8fecd855179d" | 158 | SRCREV_pn-gsm0710muxd ?= "6fecc78198dd821bbe29efd096bd8fecd855179d" |
159 | SRCREV_pn-gsmd2 ?= "963f34df8fa3ff4b301079dcf86e9acea6b6fe0f" | 159 | SRCREV_pn-gsmd2 ?= "963f34df8fa3ff4b301079dcf86e9acea6b6fe0f" |
160 | SRCREV_pn-metacity-clutter ?= "69a57bc1e7324dc7b129eafa6b396ba34bc2fe9f" | 160 | SRCREV_pn-mutter ?= "69a57bc1e7324dc7b129eafa6b396ba34bc2fe9f" |
161 | SRCREV_pn-dri2proto ?= "8cab3f0e6f551220bd11074779f4ccec1e948e00" | 161 | SRCREV_pn-dri2proto ?= "8cab3f0e6f551220bd11074779f4ccec1e948e00" |
162 | SRCREV_pn-inputproto ?= "7203036522ba9d4b224d282d6afc2d0b947711ee" | 162 | SRCREV_pn-inputproto ?= "7203036522ba9d4b224d282d6afc2d0b947711ee" |
163 | SRCREV_pn-inputproto-native ?= "7203036522ba9d4b224d282d6afc2d0b947711ee" | 163 | SRCREV_pn-inputproto-native ?= "7203036522ba9d4b224d282d6afc2d0b947711ee" |
@@ -199,7 +199,7 @@ PREFERRED_VERSION_glib-2.0-native ?= "2.18.1" | |||
199 | PREFERRED_VERSION_atk ?= "1.24.0" | 199 | PREFERRED_VERSION_atk ?= "1.24.0" |
200 | PREFERRED_VERSION_cairo ?= "1.8.2" | 200 | PREFERRED_VERSION_cairo ?= "1.8.2" |
201 | PREFERRED_VERSION_pango ?= "1.22.2" | 201 | PREFERRED_VERSION_pango ?= "1.22.2" |
202 | PREFERRED_VERSION_gtk+ ?= "2.12.7" | 202 | PREFERRED_VERSION_gtk+ ?= "2.14.2" |
203 | 203 | ||
204 | PREFERRED_VERSION_dbus ?= "1.2.4" | 204 | PREFERRED_VERSION_dbus ?= "1.2.4" |
205 | PREFERRED_VERSION_dbus-native ?= "1.2.4" | 205 | PREFERRED_VERSION_dbus-native ?= "1.2.4" |
diff --git a/meta/conf/distro/include/poky-floating-revisions.inc b/meta/conf/distro/include/poky-floating-revisions.inc index 89e5c7a10a..99907c539c 100644 --- a/meta/conf/distro/include/poky-floating-revisions.inc +++ b/meta/conf/distro/include/poky-floating-revisions.inc | |||
@@ -56,7 +56,7 @@ SRCREV_pn-table ?= "${AUTOREV}" | |||
56 | SRCREV_pn-libmatchbox ?= "${AUTOREV}" | 56 | SRCREV_pn-libmatchbox ?= "${AUTOREV}" |
57 | SRCREV_pn-tasks ?= "${AUTOREV}" | 57 | SRCREV_pn-tasks ?= "${AUTOREV}" |
58 | SRCREV_pn-libjana = "${AUTOREV}" | 58 | SRCREV_pn-libjana = "${AUTOREV}" |
59 | SRCREV_pn-metacity-clutter = "${AUTOREV}" | 59 | SRCREV_pn-mutter = "${AUTOREV}" |
60 | 60 | ||
61 | SRCREV_pn-dri2proto = "${AUTOREV}" | 61 | SRCREV_pn-dri2proto = "${AUTOREV}" |
62 | #PREFERRED_VERSION_dri2proto ?= "1.99.1+git${SRCREV}" | 62 | #PREFERRED_VERSION_dri2proto ?= "1.99.1+git${SRCREV}" |
diff --git a/meta/conf/distro/include/preferred-xorg-versions.inc b/meta/conf/distro/include/preferred-xorg-versions.inc index f50f2b19a7..d076aca26f 100644 --- a/meta/conf/distro/include/preferred-xorg-versions.inc +++ b/meta/conf/distro/include/preferred-xorg-versions.inc | |||
@@ -129,23 +129,23 @@ PREFERRED_VERSION_xproxymanagementprotocol ?= "1.0.2" | |||
129 | PREFERRED_VERSION_xrandr ?= "1.2.3" | 129 | PREFERRED_VERSION_xrandr ?= "1.2.3" |
130 | PREFERRED_VERSION_xrdb ?= "1.0.5" | 130 | PREFERRED_VERSION_xrdb ?= "1.0.5" |
131 | PREFERRED_VERSION_xserver-kdrive ?= "1.3.0.0" | 131 | PREFERRED_VERSION_xserver-kdrive ?= "1.3.0.0" |
132 | PREFERRED_VERSION_xserver-xf86-dri-lite ?= "1.5.99.1+git${SRCREV}" | 132 | PREFERRED_VERSION_xserver-xf86-dri-lite ?= "1.6.0" |
133 | PREFERRED_VERSION_xset ?= "1.0.4" | 133 | PREFERRED_VERSION_xset ?= "1.0.4" |
134 | PREFERRED_VERSION_xtrans ?= "1.2.2" | 134 | PREFERRED_VERSION_xtrans ?= "1.2.2" |
135 | PREFERRED_VERSION_xtrans-native ?= "1.2.2" | 135 | PREFERRED_VERSION_xtrans-native ?= "1.2.2" |
136 | PREFERRED_VERSION_xtrans-sdk ?= "1.2.2" | 136 | PREFERRED_VERSION_xtrans-sdk ?= "1.2.2" |
137 | PREFERRED_VERSION_xvinfo ?= "1.0.2" | 137 | PREFERRED_VERSION_xvinfo ?= "1.0.2" |
138 | PREFERRED_VERSION_xwininfo ?= "1.0.4" | 138 | PREFERRED_VERSION_xwininfo ?= "1.0.4" |
139 | PREFERRED_VERSION_mesa-dri ?= "7.3.0+git${SRCREV}" | 139 | PREFERRED_VERSION_mesa-dri ?= "7.4" |
140 | PREFERRED_VERSION_libdrm ?= "2.4.4" | 140 | PREFERRED_VERSION_libdrm ?= "2.4.7" |
141 | PREFERRED_VERSION_xcb-proto ?= "1.2" | 141 | PREFERRED_VERSION_xcb-proto ?= "1.2" |
142 | PREFERRED_VERSION_libxcb ?= "1.1.91" | 142 | PREFERRED_VERSION_libxcb ?= "1.1.91" |
143 | PREFERRED_VERSION_libxcb-sdk ?= "1.1.91" | 143 | PREFERRED_VERSION_libxcb-sdk ?= "1.1.91" |
144 | PREFERRED_VERSION_libpciaccess ?= "0.10.5" | 144 | PREFERRED_VERSION_libpciaccess ?= "0.10.5" |
145 | PREFERRED_VERSION_xf86-input-evdev ?= "2.1.1" | 145 | PREFERRED_VERSION_xf86-input-evdev ?= "2.2.1" |
146 | PREFERRED_VERSION_xf86-input-mouse ?= "1.4.0" | 146 | PREFERRED_VERSION_xf86-input-mouse ?= "1.4.0" |
147 | PREFERRED_VERSION_xf86-input-keyboard ?= "1.3.2" | 147 | PREFERRED_VERSION_xf86-input-keyboard ?= "1.3.2" |
148 | PREFERRED_VERSION_xf86-input-synaptics ?= "0.99.3" | 148 | PREFERRED_VERSION_xf86-input-synaptics ?= "1.1.0" |
149 | PREFERRED_VERSION_xf86-video-intel ?= "2.4.97.0+git${SRCREV}" | 149 | PREFERRED_VERSION_xf86-video-intel ?= "2.4.97.0+git${SRCREV}" |
150 | PREFERRED_VERSION_xf86-video-intel-dri2 ?= "2.4.97.0+git${SRCREV}" | 150 | PREFERRED_VERSION_xf86-video-intel-dri2 ?= "2.4.97.0+git${SRCREV}" |
151 | 151 | ||
diff --git a/meta/packages/clutter/clutter-mozembed/link-with-g++.patch b/meta/packages/clutter/clutter-mozembed/link-with-g++.patch index 8f84e6142b..5a76e45222 100644 --- a/meta/packages/clutter/clutter-mozembed/link-with-g++.patch +++ b/meta/packages/clutter/clutter-mozembed/link-with-g++.patch | |||
@@ -1,25 +1,26 @@ | |||
1 | Index: git/cluttermozembed/Makefile.am | 1 | Index: git/cluttermozembed/Makefile.am |
2 | =================================================================== | 2 | =================================================================== |
3 | --- git.orig/cluttermozembed/Makefile.am 2009-01-27 14:17:00.000000000 +0000 | 3 | --- git.orig/cluttermozembed/Makefile.am 2009-04-16 15:54:16.000000000 +0100 |
4 | +++ git/cluttermozembed/Makefile.am 2009-01-28 15:36:27.000000000 +0000 | 4 | +++ git/cluttermozembed/Makefile.am 2009-04-16 15:57:02.000000000 +0100 |
5 | @@ -16,11 +16,11 @@ | 5 | @@ -51,12 +51,13 @@ |
6 | source_h = \ | 6 | source_h = \ |
7 | clutter-mozembed.h | 7 | clutter-mozembed.h |
8 | source_c = \ | 8 | source_c = \ |
9 | - clutter-mozembed.c | 9 | - clutter-mozembed.c |
10 | + clutter-mozembed.c dummy2.cpp | 10 | + clutter-mozembed.c dummy.cpp |
11 | 11 | ||
12 | bin_PROGRAMS = mozheadless | 12 | bin_PROGRAMS = clutter-mozheadless |
13 | 13 | ||
14 | -mozheadless_SOURCES = mozheadless.c | 14 | clutter_mozheadless_SOURCES = \ |
15 | +mozheadless_SOURCES = mozheadless.c dummy.cpp | 15 | clutter-mozheadless.c \ |
16 | + dummy2.cpp \ | ||
17 | clutter-mozheadless.h | ||
16 | 18 | ||
17 | lib_LTLIBRARIES = libcluttermozembed.la | 19 | lib_LTLIBRARIES = libcluttermozembed.la |
18 | libcluttermozembed_la_SOURCES = $(source_c) $(source_h) | ||
19 | Index: git/configure.ac | 20 | Index: git/configure.ac |
20 | =================================================================== | 21 | =================================================================== |
21 | --- git.orig/configure.ac 2009-01-27 14:17:01.000000000 +0000 | 22 | --- git.orig/configure.ac 2009-04-16 15:54:16.000000000 +0100 |
22 | +++ git/configure.ac 2009-01-28 15:35:38.000000000 +0000 | 23 | +++ git/configure.ac 2009-04-16 15:54:30.000000000 +0100 |
23 | @@ -7,6 +7,7 @@ | 24 | @@ -7,6 +7,7 @@ |
24 | 25 | ||
25 | AC_ISC_POSIX | 26 | AC_ISC_POSIX |
diff --git a/meta/packages/clutter/clutter/enable_tests.patch b/meta/packages/clutter/clutter/enable_tests.patch index 8544614790..953edf6bbc 100644 --- a/meta/packages/clutter/clutter/enable_tests.patch +++ b/meta/packages/clutter/clutter/enable_tests.patch | |||
@@ -6,10 +6,10 @@ | |||
6 | 6 | ||
7 | Index: git/tests/interactive/Makefile.am | 7 | Index: git/tests/interactive/Makefile.am |
8 | =================================================================== | 8 | =================================================================== |
9 | --- git.orig/tests/interactive/Makefile.am 2008-12-18 16:50:45.000000000 +0000 | 9 | --- git.orig/tests/interactive/Makefile.am 2009-03-12 11:01:36.000000000 +0000 |
10 | +++ git/tests/interactive/Makefile.am 2008-12-18 16:57:36.000000000 +0000 | 10 | +++ git/tests/interactive/Makefile.am 2009-03-12 11:04:12.000000000 +0000 |
11 | @@ -68,7 +68,7 @@ | 11 | @@ -77,7 +77,7 @@ |
12 | AM_CFLAGS = $(CLUTTER_CFLAGS) | 12 | AM_CFLAGS = $(CLUTTER_CFLAGS) $(MAINTAINER_CFLAGS) |
13 | AM_LDFLAGS = $(CLUTTER_LIBS) | 13 | AM_LDFLAGS = $(CLUTTER_LIBS) |
14 | 14 | ||
15 | -noinst_PROGRAMS = test-interactive | 15 | -noinst_PROGRAMS = test-interactive |
@@ -19,14 +19,14 @@ Index: git/tests/interactive/Makefile.am | |||
19 | test-main.c \ | 19 | test-main.c \ |
20 | Index: git/tests/interactive/test-actors.c | 20 | Index: git/tests/interactive/test-actors.c |
21 | =================================================================== | 21 | =================================================================== |
22 | --- git.orig/tests/interactive/test-actors.c 2008-12-18 16:58:06.000000000 +0000 | 22 | --- git.orig/tests/interactive/test-actors.c 2009-03-12 11:01:36.000000000 +0000 |
23 | +++ git/tests/interactive/test-actors.c 2008-12-18 16:58:13.000000000 +0000 | 23 | +++ git/tests/interactive/test-actors.c 2009-03-12 11:06:32.000000000 +0000 |
24 | @@ -189,7 +189,7 @@ | 24 | @@ -182,7 +182,7 @@ |
25 | /* Create a texture from file, then clone in to same resources */ | 25 | oh->scaler_1 = clutter_behaviour_scale_new (alpha, 0.5, 0.5, 1.0, 1.0); |
26 | if (i == 0) | 26 | oh->scaler_2 = clutter_behaviour_scale_new (alpha, 1.0, 1.0, 0.5, 0.5); |
27 | { | 27 | |
28 | - if ((oh->hand[i] = clutter_texture_new_from_file ("redhand.png", | 28 | - real_hand = clutter_texture_new_from_file ("redhand.png", &error); |
29 | + if ((oh->hand[i] = clutter_texture_new_from_file ("/usr/share/clutter/redhand.png", | 29 | + real_hand = clutter_texture_new_from_file ("/usr/share/clutter/redhand.png", &error); |
30 | &error)) == NULL) | 30 | if (real_hand == NULL) |
31 | { | 31 | { |
32 | g_error ("image load failed: %s", error->message); | 32 | g_error ("image load failed: %s", error->message); |
diff --git a/meta/packages/dbus/dbus-native_1.2.4.bb b/meta/packages/dbus/dbus-native_1.2.4.bb index 47e3167eda..d799ba2d1d 100644 --- a/meta/packages/dbus/dbus-native_1.2.4.bb +++ b/meta/packages/dbus/dbus-native_1.2.4.bb | |||
@@ -3,7 +3,7 @@ inherit native | |||
3 | 3 | ||
4 | DEPENDS = "glib-2.0-native libxml2-native expat-native" | 4 | DEPENDS = "glib-2.0-native libxml2-native expat-native" |
5 | 5 | ||
6 | PR = "r2" | 6 | PR = "r3" |
7 | 7 | ||
8 | do_stage() { | 8 | do_stage() { |
9 | oe_runmake install | 9 | oe_runmake install |
diff --git a/meta/packages/dbus/dbus.inc b/meta/packages/dbus/dbus.inc index 68c8a842ee..2efcf46b22 100644 --- a/meta/packages/dbus/dbus.inc +++ b/meta/packages/dbus/dbus.inc | |||
@@ -12,7 +12,7 @@ SRC_URI = "\ | |||
12 | file://99_dbus \ | 12 | file://99_dbus \ |
13 | " | 13 | " |
14 | 14 | ||
15 | inherit autotools pkgconfig update-rc.d gettext | 15 | inherit autotools pkgconfig gettext |
16 | 16 | ||
17 | INITSCRIPT_NAME = "dbus-1" | 17 | INITSCRIPT_NAME = "dbus-1" |
18 | INITSCRIPT_PARAMS = "start 02 5 2 . stop 20 0 1 6 ." | 18 | INITSCRIPT_PARAMS = "start 02 5 2 . stop 20 0 1 6 ." |
diff --git a/meta/packages/dbus/dbus_1.2.4.bb b/meta/packages/dbus/dbus_1.2.4.bb index 25ab98b9f9..b170e7b340 100644 --- a/meta/packages/dbus/dbus_1.2.4.bb +++ b/meta/packages/dbus/dbus_1.2.4.bb | |||
@@ -1,4 +1,7 @@ | |||
1 | include dbus.inc | 1 | include dbus.inc |
2 | 2 | ||
3 | PR = "r1" | ||
4 | |||
5 | inherit update-rc.d | ||
3 | 6 | ||
4 | SRC_URI += "file://fix-install-daemon.patch;patch=1 " | 7 | SRC_URI += "file://fix-install-daemon.patch;patch=1 " |
diff --git a/meta/packages/drm/files/poulsbo.patch b/meta/packages/drm/files/poulsbo.patch deleted file mode 100644 index 91f8975f50..0000000000 --- a/meta/packages/drm/files/poulsbo.patch +++ /dev/null | |||
@@ -1,2516 +0,0 @@ | |||
1 | Index: libdrm-2.4.4/libdrm/xf86drm.c | ||
2 | =================================================================== | ||
3 | --- libdrm-2.4.4.orig/libdrm/xf86drm.c 2009-01-10 01:08:29.000000000 +0000 | ||
4 | +++ libdrm-2.4.4/libdrm/xf86drm.c 2009-02-05 12:23:22.000000000 +0000 | ||
5 | @@ -2402,6 +2402,569 @@ | ||
6 | return 0; | ||
7 | } | ||
8 | |||
9 | + | ||
10 | +/* | ||
11 | + * Valid flags are | ||
12 | + * DRM_FENCE_FLAG_EMIT | ||
13 | + * DRM_FENCE_FLAG_SHAREABLE | ||
14 | + * DRM_FENCE_MASK_DRIVER | ||
15 | + */ | ||
16 | + | ||
17 | +int drmFenceCreate(int fd, unsigned flags, int fence_class, unsigned type, | ||
18 | + drmFence *fence) | ||
19 | +{ | ||
20 | + drm_fence_arg_t arg; | ||
21 | + | ||
22 | + memset(&arg, 0, sizeof(arg)); | ||
23 | + arg.flags = flags; | ||
24 | + arg.type = type; | ||
25 | + arg.fence_class = fence_class; | ||
26 | + | ||
27 | + if (ioctl(fd, DRM_IOCTL_FENCE_CREATE, &arg)) | ||
28 | + return -errno; | ||
29 | + fence->handle = arg.handle; | ||
30 | + fence->fence_class = arg.fence_class; | ||
31 | + fence->type = arg.type; | ||
32 | + fence->flags = arg.flags; | ||
33 | + fence->signaled = 0; | ||
34 | + return 0; | ||
35 | +} | ||
36 | + | ||
37 | +/* | ||
38 | + * Valid flags are | ||
39 | + * DRM_FENCE_FLAG_SHAREABLE | ||
40 | + * DRM_FENCE_MASK_DRIVER | ||
41 | + */ | ||
42 | + | ||
43 | +int drmFenceBuffers(int fd, unsigned flags, uint32_t fence_class, drmFence *fence) | ||
44 | +{ | ||
45 | + drm_fence_arg_t arg; | ||
46 | + | ||
47 | + memset(&arg, 0, sizeof(arg)); | ||
48 | + arg.flags = flags; | ||
49 | + arg.fence_class = fence_class; | ||
50 | + | ||
51 | + if (ioctl(fd, DRM_IOCTL_FENCE_BUFFERS, &arg)) | ||
52 | + return -errno; | ||
53 | + fence->handle = arg.handle; | ||
54 | + fence->fence_class = arg.fence_class; | ||
55 | + fence->type = arg.type; | ||
56 | + fence->flags = arg.flags; | ||
57 | + fence->sequence = arg.sequence; | ||
58 | + fence->signaled = 0; | ||
59 | + return 0; | ||
60 | +} | ||
61 | + | ||
62 | +int drmFenceReference(int fd, unsigned handle, drmFence *fence) | ||
63 | +{ | ||
64 | + drm_fence_arg_t arg; | ||
65 | + | ||
66 | + memset(&arg, 0, sizeof(arg)); | ||
67 | + arg.handle = handle; | ||
68 | + | ||
69 | + if (ioctl(fd, DRM_IOCTL_FENCE_REFERENCE, &arg)) | ||
70 | + return -errno; | ||
71 | + fence->handle = arg.handle; | ||
72 | + fence->fence_class = arg.fence_class; | ||
73 | + fence->type = arg.type; | ||
74 | + fence->flags = arg.flags; | ||
75 | + fence->signaled = arg.signaled; | ||
76 | + return 0; | ||
77 | +} | ||
78 | + | ||
79 | +int drmFenceUnreference(int fd, const drmFence *fence) | ||
80 | +{ | ||
81 | + drm_fence_arg_t arg; | ||
82 | + | ||
83 | + memset(&arg, 0, sizeof(arg)); | ||
84 | + arg.handle = fence->handle; | ||
85 | + | ||
86 | + if (ioctl(fd, DRM_IOCTL_FENCE_UNREFERENCE, &arg)) | ||
87 | + return -errno; | ||
88 | + return 0; | ||
89 | +} | ||
90 | + | ||
91 | +int drmFenceFlush(int fd, drmFence *fence, unsigned flush_type) | ||
92 | +{ | ||
93 | + drm_fence_arg_t arg; | ||
94 | + | ||
95 | + memset(&arg, 0, sizeof(arg)); | ||
96 | + arg.handle = fence->handle; | ||
97 | + arg.type = flush_type; | ||
98 | + | ||
99 | + if (ioctl(fd, DRM_IOCTL_FENCE_FLUSH, &arg)) | ||
100 | + return -errno; | ||
101 | + fence->fence_class = arg.fence_class; | ||
102 | + fence->type = arg.type; | ||
103 | + fence->signaled = arg.signaled; | ||
104 | + return arg.error; | ||
105 | +} | ||
106 | + | ||
107 | +int drmFenceUpdate(int fd, drmFence *fence) | ||
108 | +{ | ||
109 | + drm_fence_arg_t arg; | ||
110 | + | ||
111 | + memset(&arg, 0, sizeof(arg)); | ||
112 | + arg.handle = fence->handle; | ||
113 | + | ||
114 | + if (ioctl(fd, DRM_IOCTL_FENCE_SIGNALED, &arg)) | ||
115 | + return -errno; | ||
116 | + fence->fence_class = arg.fence_class; | ||
117 | + fence->type = arg.type; | ||
118 | + fence->signaled = arg.signaled; | ||
119 | + return 0; | ||
120 | +} | ||
121 | + | ||
122 | +int drmFenceSignaled(int fd, drmFence *fence, unsigned fenceType, | ||
123 | + int *signaled) | ||
124 | +{ | ||
125 | + if ((fence->flags & DRM_FENCE_FLAG_SHAREABLE) || | ||
126 | + ((fenceType & fence->signaled) != fenceType)) { | ||
127 | + int ret = drmFenceFlush(fd, fence, fenceType); | ||
128 | + if (ret) | ||
129 | + return ret; | ||
130 | + } | ||
131 | + | ||
132 | + *signaled = ((fenceType & fence->signaled) == fenceType); | ||
133 | + | ||
134 | + return 0; | ||
135 | +} | ||
136 | + | ||
137 | +/* | ||
138 | + * Valid flags are | ||
139 | + * DRM_FENCE_FLAG_SHAREABLE | ||
140 | + * DRM_FENCE_MASK_DRIVER | ||
141 | + */ | ||
142 | + | ||
143 | + | ||
144 | +int drmFenceEmit(int fd, unsigned flags, drmFence *fence, unsigned emit_type) | ||
145 | +{ | ||
146 | + drm_fence_arg_t arg; | ||
147 | + | ||
148 | + memset(&arg, 0, sizeof(arg)); | ||
149 | + arg.fence_class = fence->fence_class; | ||
150 | + arg.flags = flags; | ||
151 | + arg.handle = fence->handle; | ||
152 | + arg.type = emit_type; | ||
153 | + | ||
154 | + if (ioctl(fd, DRM_IOCTL_FENCE_EMIT, &arg)) | ||
155 | + return -errno; | ||
156 | + fence->fence_class = arg.fence_class; | ||
157 | + fence->type = arg.type; | ||
158 | + fence->signaled = arg.signaled; | ||
159 | + fence->sequence = arg.sequence; | ||
160 | + return 0; | ||
161 | +} | ||
162 | + | ||
163 | +/* | ||
164 | + * Valid flags are | ||
165 | + * DRM_FENCE_FLAG_WAIT_LAZY | ||
166 | + * DRM_FENCE_FLAG_WAIT_IGNORE_SIGNALS | ||
167 | + */ | ||
168 | + | ||
169 | +#define DRM_IOCTL_TIMEOUT_USEC 3000000UL | ||
170 | + | ||
171 | +static unsigned long | ||
172 | +drmTimeDiff(struct timeval *now, struct timeval *then) | ||
173 | +{ | ||
174 | + uint64_t val; | ||
175 | + | ||
176 | + val = now->tv_sec - then->tv_sec; | ||
177 | + val *= 1000000LL; | ||
178 | + val += now->tv_usec; | ||
179 | + val -= then->tv_usec; | ||
180 | + | ||
181 | + return (unsigned long) val; | ||
182 | +} | ||
183 | + | ||
184 | +static int | ||
185 | +drmIoctlTimeout(int fd, unsigned long request, void *argp) | ||
186 | +{ | ||
187 | + int haveThen = 0; | ||
188 | + struct timeval then, now; | ||
189 | + int ret; | ||
190 | + | ||
191 | + do { | ||
192 | + ret = ioctl(fd, request, argp); | ||
193 | + if (ret != 0 && errno == EAGAIN) { | ||
194 | + if (!haveThen) { | ||
195 | + gettimeofday(&then, NULL); | ||
196 | + haveThen = 1; | ||
197 | + } | ||
198 | + gettimeofday(&now, NULL); | ||
199 | + } | ||
200 | + } while (ret != 0 && errno == EAGAIN && | ||
201 | + drmTimeDiff(&now, &then) < DRM_IOCTL_TIMEOUT_USEC); | ||
202 | + | ||
203 | + if (ret != 0) | ||
204 | + return ((errno == EAGAIN) ? -EBUSY : -errno); | ||
205 | + | ||
206 | + return 0; | ||
207 | +} | ||
208 | + | ||
209 | + | ||
210 | + | ||
211 | + | ||
212 | +int drmFenceWait(int fd, unsigned flags, drmFence *fence, unsigned flush_type) | ||
213 | +{ | ||
214 | + drm_fence_arg_t arg; | ||
215 | + int ret; | ||
216 | + | ||
217 | + if (flush_type == 0) { | ||
218 | + flush_type = fence->type; | ||
219 | + } | ||
220 | + | ||
221 | + if (!(fence->flags & DRM_FENCE_FLAG_SHAREABLE)) { | ||
222 | + if ((flush_type & fence->signaled) == flush_type) { | ||
223 | + return 0; | ||
224 | + } | ||
225 | + } | ||
226 | + | ||
227 | + memset(&arg, 0, sizeof(arg)); | ||
228 | + arg.handle = fence->handle; | ||
229 | + arg.type = flush_type; | ||
230 | + arg.flags = flags; | ||
231 | + | ||
232 | + | ||
233 | + ret = drmIoctlTimeout(fd, DRM_IOCTL_FENCE_WAIT, &arg); | ||
234 | + if (ret) | ||
235 | + return ret; | ||
236 | + | ||
237 | + fence->fence_class = arg.fence_class; | ||
238 | + fence->type = arg.type; | ||
239 | + fence->signaled = arg.signaled; | ||
240 | + return arg.error; | ||
241 | +} | ||
242 | + | ||
243 | +static void drmBOCopyReply(const struct drm_bo_info_rep *rep, drmBO *buf) | ||
244 | +{ | ||
245 | + buf->handle = rep->handle; | ||
246 | + buf->flags = rep->flags; | ||
247 | + buf->size = rep->size; | ||
248 | + buf->offset = rep->offset; | ||
249 | + buf->mapHandle = rep->arg_handle; | ||
250 | + buf->mask = rep->proposed_flags; | ||
251 | + buf->start = rep->buffer_start; | ||
252 | + buf->fenceFlags = rep->fence_flags; | ||
253 | + buf->replyFlags = rep->rep_flags; | ||
254 | + buf->pageAlignment = rep->page_alignment; | ||
255 | + buf->tileInfo = rep->tile_info; | ||
256 | + buf->hwTileStride = rep->hw_tile_stride; | ||
257 | + buf->desiredTileStride = rep->desired_tile_stride; | ||
258 | +} | ||
259 | + | ||
260 | + | ||
261 | + | ||
262 | +int drmBOCreate(int fd, unsigned long size, | ||
263 | + unsigned pageAlignment, void *user_buffer, | ||
264 | + uint64_t mask, | ||
265 | + unsigned hint, drmBO *buf) | ||
266 | +{ | ||
267 | + struct drm_bo_create_arg arg; | ||
268 | + struct drm_bo_create_req *req = &arg.d.req; | ||
269 | + struct drm_bo_info_rep *rep = &arg.d.rep; | ||
270 | + int ret; | ||
271 | + | ||
272 | + memset(buf, 0, sizeof(*buf)); | ||
273 | + memset(&arg, 0, sizeof(arg)); | ||
274 | + req->flags = mask; | ||
275 | + req->hint = hint; | ||
276 | + req->size = size; | ||
277 | + req->page_alignment = pageAlignment; | ||
278 | + req->buffer_start = (unsigned long) user_buffer; | ||
279 | + | ||
280 | + buf->virtual = NULL; | ||
281 | + | ||
282 | + ret = drmIoctlTimeout(fd, DRM_IOCTL_BO_CREATE, &arg); | ||
283 | + if (ret) | ||
284 | + return ret; | ||
285 | + | ||
286 | + drmBOCopyReply(rep, buf); | ||
287 | + buf->virtual = user_buffer; | ||
288 | + buf->mapCount = 0; | ||
289 | + | ||
290 | + return 0; | ||
291 | +} | ||
292 | + | ||
293 | +int drmBOReference(int fd, unsigned handle, drmBO *buf) | ||
294 | +{ | ||
295 | + struct drm_bo_reference_info_arg arg; | ||
296 | + struct drm_bo_handle_arg *req = &arg.d.req; | ||
297 | + struct drm_bo_info_rep *rep = &arg.d.rep; | ||
298 | + | ||
299 | + memset(&arg, 0, sizeof(arg)); | ||
300 | + req->handle = handle; | ||
301 | + | ||
302 | + if (ioctl(fd, DRM_IOCTL_BO_REFERENCE, &arg)) | ||
303 | + return -errno; | ||
304 | + | ||
305 | + drmBOCopyReply(rep, buf); | ||
306 | + buf->mapVirtual = NULL; | ||
307 | + buf->mapCount = 0; | ||
308 | + buf->virtual = NULL; | ||
309 | + | ||
310 | + return 0; | ||
311 | +} | ||
312 | + | ||
313 | +int drmBOUnreference(int fd, drmBO *buf) | ||
314 | +{ | ||
315 | + struct drm_bo_handle_arg arg; | ||
316 | + | ||
317 | + if (buf->mapVirtual && buf->mapHandle) { | ||
318 | + (void) munmap(buf->mapVirtual, buf->start + buf->size); | ||
319 | + buf->mapVirtual = NULL; | ||
320 | + buf->virtual = NULL; | ||
321 | + } | ||
322 | + | ||
323 | + memset(&arg, 0, sizeof(arg)); | ||
324 | + arg.handle = buf->handle; | ||
325 | + | ||
326 | + if (ioctl(fd, DRM_IOCTL_BO_UNREFERENCE, &arg)) | ||
327 | + return -errno; | ||
328 | + | ||
329 | + buf->handle = 0; | ||
330 | + return 0; | ||
331 | +} | ||
332 | + | ||
333 | + | ||
334 | +/* | ||
335 | + * Flags can be DRM_BO_FLAG_READ, DRM_BO_FLAG_WRITE or'ed together | ||
336 | + * Hint currently be DRM_BO_HINT_DONT_BLOCK, which makes the | ||
337 | + * call return an -EBUSY if it can' immediately honor the mapping request. | ||
338 | + */ | ||
339 | + | ||
340 | +int drmBOMap(int fd, drmBO *buf, unsigned mapFlags, unsigned mapHint, | ||
341 | + void **address) | ||
342 | +{ | ||
343 | + struct drm_bo_map_wait_idle_arg arg; | ||
344 | + struct drm_bo_info_req *req = &arg.d.req; | ||
345 | + struct drm_bo_info_rep *rep = &arg.d.rep; | ||
346 | + int ret = 0; | ||
347 | + | ||
348 | + /* | ||
349 | + * Make sure we have a virtual address of the buffer. | ||
350 | + */ | ||
351 | + | ||
352 | + if (!buf->virtual) { | ||
353 | + drmAddress virtual; | ||
354 | + virtual = mmap(0, buf->size + buf->start, | ||
355 | + PROT_READ | PROT_WRITE, MAP_SHARED, | ||
356 | + fd, buf->mapHandle); | ||
357 | + if (virtual == MAP_FAILED) { | ||
358 | + ret = -errno; | ||
359 | + } | ||
360 | + if (ret) | ||
361 | + return ret; | ||
362 | + buf->mapVirtual = virtual; | ||
363 | + buf->virtual = ((char *) virtual) + buf->start; | ||
364 | + } | ||
365 | + | ||
366 | + memset(&arg, 0, sizeof(arg)); | ||
367 | + req->handle = buf->handle; | ||
368 | + req->mask = mapFlags; | ||
369 | + req->hint = mapHint; | ||
370 | + | ||
371 | + /* | ||
372 | + * May hang if the buffer object is busy. | ||
373 | + * This IOCTL synchronizes the buffer. | ||
374 | + */ | ||
375 | + | ||
376 | + ret = drmIoctlTimeout(fd, DRM_IOCTL_BO_MAP, &arg); | ||
377 | + if (ret) | ||
378 | + return ret; | ||
379 | + | ||
380 | + drmBOCopyReply(rep, buf); | ||
381 | + buf->mapFlags = mapFlags; | ||
382 | + ++buf->mapCount; | ||
383 | + *address = buf->virtual; | ||
384 | + | ||
385 | + return 0; | ||
386 | +} | ||
387 | + | ||
388 | + | ||
389 | +int drmBOUnmap(int fd, drmBO *buf) | ||
390 | +{ | ||
391 | + struct drm_bo_handle_arg arg; | ||
392 | + | ||
393 | + memset(&arg, 0, sizeof(arg)); | ||
394 | + arg.handle = buf->handle; | ||
395 | + | ||
396 | + if (ioctl(fd, DRM_IOCTL_BO_UNMAP, &arg)) { | ||
397 | + return -errno; | ||
398 | + } | ||
399 | + buf->mapCount--; | ||
400 | + return 0; | ||
401 | +} | ||
402 | + | ||
403 | +int drmBOSetStatus(int fd, drmBO *buf, | ||
404 | + uint64_t flags, uint64_t mask, | ||
405 | + unsigned int hint, | ||
406 | + unsigned int desired_tile_stride, | ||
407 | + unsigned int tile_info) | ||
408 | +{ | ||
409 | + | ||
410 | + struct drm_bo_map_wait_idle_arg arg; | ||
411 | + struct drm_bo_info_req *req = &arg.d.req; | ||
412 | + struct drm_bo_info_rep *rep = &arg.d.rep; | ||
413 | + int ret = 0; | ||
414 | + | ||
415 | + memset(&arg, 0, sizeof(arg)); | ||
416 | + req->mask = mask; | ||
417 | + req->flags = flags; | ||
418 | + req->handle = buf->handle; | ||
419 | + req->hint = hint; | ||
420 | + req->desired_tile_stride = desired_tile_stride; | ||
421 | + req->tile_info = tile_info; | ||
422 | + | ||
423 | + ret = drmIoctlTimeout(fd, DRM_IOCTL_BO_SETSTATUS, &arg); | ||
424 | + if (ret) | ||
425 | + return ret; | ||
426 | + | ||
427 | + drmBOCopyReply(rep, buf); | ||
428 | + return 0; | ||
429 | +} | ||
430 | + | ||
431 | + | ||
432 | +int drmBOInfo(int fd, drmBO *buf) | ||
433 | +{ | ||
434 | + struct drm_bo_reference_info_arg arg; | ||
435 | + struct drm_bo_handle_arg *req = &arg.d.req; | ||
436 | + struct drm_bo_info_rep *rep = &arg.d.rep; | ||
437 | + int ret = 0; | ||
438 | + | ||
439 | + memset(&arg, 0, sizeof(arg)); | ||
440 | + req->handle = buf->handle; | ||
441 | + | ||
442 | + ret = ioctl(fd, DRM_IOCTL_BO_INFO, &arg); | ||
443 | + if (ret) | ||
444 | + return -errno; | ||
445 | + | ||
446 | + drmBOCopyReply(rep, buf); | ||
447 | + return 0; | ||
448 | +} | ||
449 | + | ||
450 | +int drmBOWaitIdle(int fd, drmBO *buf, unsigned hint) | ||
451 | +{ | ||
452 | + struct drm_bo_map_wait_idle_arg arg; | ||
453 | + struct drm_bo_info_req *req = &arg.d.req; | ||
454 | + struct drm_bo_info_rep *rep = &arg.d.rep; | ||
455 | + int ret = 0; | ||
456 | + | ||
457 | + if ((buf->flags & DRM_BO_FLAG_SHAREABLE) || | ||
458 | + (buf->replyFlags & DRM_BO_REP_BUSY)) { | ||
459 | + memset(&arg, 0, sizeof(arg)); | ||
460 | + req->handle = buf->handle; | ||
461 | + req->hint = hint; | ||
462 | + | ||
463 | + ret = drmIoctlTimeout(fd, DRM_IOCTL_BO_WAIT_IDLE, &arg); | ||
464 | + if (ret) | ||
465 | + return ret; | ||
466 | + | ||
467 | + drmBOCopyReply(rep, buf); | ||
468 | + } | ||
469 | + return 0; | ||
470 | +} | ||
471 | + | ||
472 | +int drmBOBusy(int fd, drmBO *buf, int *busy) | ||
473 | +{ | ||
474 | + if (!(buf->flags & DRM_BO_FLAG_SHAREABLE) && | ||
475 | + !(buf->replyFlags & DRM_BO_REP_BUSY)) { | ||
476 | + *busy = 0; | ||
477 | + return 0; | ||
478 | + } | ||
479 | + else { | ||
480 | + int ret = drmBOInfo(fd, buf); | ||
481 | + if (ret) | ||
482 | + return ret; | ||
483 | + *busy = (buf->replyFlags & DRM_BO_REP_BUSY); | ||
484 | + return 0; | ||
485 | + } | ||
486 | +} | ||
487 | + | ||
488 | +int drmMMInit(int fd, unsigned long pOffset, unsigned long pSize, | ||
489 | + unsigned memType) | ||
490 | +{ | ||
491 | + struct drm_mm_init_arg arg; | ||
492 | + | ||
493 | + memset(&arg, 0, sizeof(arg)); | ||
494 | + | ||
495 | + arg.magic = DRM_BO_INIT_MAGIC; | ||
496 | + arg.major = DRM_BO_INIT_MAJOR; | ||
497 | + arg.minor = DRM_BO_INIT_MINOR; | ||
498 | + arg.p_offset = pOffset; | ||
499 | + arg.p_size = pSize; | ||
500 | + arg.mem_type = memType; | ||
501 | + | ||
502 | + if (ioctl(fd, DRM_IOCTL_MM_INIT, &arg)) | ||
503 | + return -errno; | ||
504 | + return 0; | ||
505 | +} | ||
506 | + | ||
507 | +int drmMMTakedown(int fd, unsigned memType) | ||
508 | +{ | ||
509 | + struct drm_mm_type_arg arg; | ||
510 | + | ||
511 | + memset(&arg, 0, sizeof(arg)); | ||
512 | + arg.mem_type = memType; | ||
513 | + | ||
514 | + if (ioctl(fd, DRM_IOCTL_MM_TAKEDOWN, &arg)) | ||
515 | + return -errno; | ||
516 | + return 0; | ||
517 | +} | ||
518 | + | ||
519 | +/* | ||
520 | + * If this function returns an error, and lockBM was set to 1, | ||
521 | + * the buffer manager is NOT locked. | ||
522 | + */ | ||
523 | + | ||
524 | +int drmMMLock(int fd, unsigned memType, int lockBM, int ignoreNoEvict) | ||
525 | +{ | ||
526 | + struct drm_mm_type_arg arg; | ||
527 | + | ||
528 | + memset(&arg, 0, sizeof(arg)); | ||
529 | + arg.mem_type = memType; | ||
530 | + arg.lock_flags |= (lockBM) ? DRM_BO_LOCK_UNLOCK_BM : 0; | ||
531 | + arg.lock_flags |= (ignoreNoEvict) ? DRM_BO_LOCK_IGNORE_NO_EVICT : 0; | ||
532 | + | ||
533 | + return drmIoctlTimeout(fd, DRM_IOCTL_MM_LOCK, &arg); | ||
534 | +} | ||
535 | + | ||
536 | +int drmMMUnlock(int fd, unsigned memType, int unlockBM) | ||
537 | +{ | ||
538 | + struct drm_mm_type_arg arg; | ||
539 | + | ||
540 | + memset(&arg, 0, sizeof(arg)); | ||
541 | + | ||
542 | + arg.mem_type = memType; | ||
543 | + arg.lock_flags |= (unlockBM) ? DRM_BO_LOCK_UNLOCK_BM : 0; | ||
544 | + | ||
545 | + return drmIoctlTimeout(fd, DRM_IOCTL_MM_UNLOCK, &arg); | ||
546 | +} | ||
547 | + | ||
548 | +int drmBOVersion(int fd, unsigned int *major, | ||
549 | + unsigned int *minor, | ||
550 | + unsigned int *patchlevel) | ||
551 | +{ | ||
552 | + struct drm_bo_version_arg arg; | ||
553 | + int ret; | ||
554 | + | ||
555 | + memset(&arg, 0, sizeof(arg)); | ||
556 | + ret = ioctl(fd, DRM_IOCTL_BO_VERSION, &arg); | ||
557 | + if (ret) | ||
558 | + return -errno; | ||
559 | + | ||
560 | + if (major) | ||
561 | + *major = arg.major; | ||
562 | + if (minor) | ||
563 | + *minor = arg.minor; | ||
564 | + if (patchlevel) | ||
565 | + *patchlevel = arg.patchlevel; | ||
566 | + | ||
567 | + return 0; | ||
568 | +} | ||
569 | + | ||
570 | + | ||
571 | + | ||
572 | #define DRM_MAX_FDS 16 | ||
573 | static struct { | ||
574 | char *BusID; | ||
575 | Index: libdrm-2.4.4/libdrm/xf86drm.h | ||
576 | =================================================================== | ||
577 | --- libdrm-2.4.4.orig/libdrm/xf86drm.h 2008-12-17 18:28:24.000000000 +0000 | ||
578 | +++ libdrm-2.4.4/libdrm/xf86drm.h 2009-02-04 16:39:55.000000000 +0000 | ||
579 | @@ -665,4 +665,6 @@ | ||
580 | extern int drmSetMaster(int fd); | ||
581 | extern int drmDropMaster(int fd); | ||
582 | |||
583 | +#include "xf86mm.h" | ||
584 | + | ||
585 | #endif | ||
586 | Index: libdrm-2.4.4/libdrm/xf86mm.h | ||
587 | =================================================================== | ||
588 | --- /dev/null 1970-01-01 00:00:00.000000000 +0000 | ||
589 | +++ libdrm-2.4.4/libdrm/xf86mm.h 2009-02-04 16:39:55.000000000 +0000 | ||
590 | @@ -0,0 +1,140 @@ | ||
591 | +/************************************************************************** | ||
592 | + * | ||
593 | + * Copyright 2006 Tungsten Graphics, Inc., Bismarck, ND. USA. | ||
594 | + * All Rights Reserved. | ||
595 | + * | ||
596 | + * Permission is hereby granted, free of charge, to any person obtaining a | ||
597 | + * copy of this software and associated documentation files (the | ||
598 | + * "Software"), to deal in the Software without restriction, including | ||
599 | + * without limitation the rights to use, copy, modify, merge, publish, | ||
600 | + * distribute, sub license, and/or sell copies of the Software, and to | ||
601 | + * permit persons to whom the Software is furnished to do so, subject to | ||
602 | + * the following conditions: | ||
603 | + * | ||
604 | + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
605 | + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
606 | + * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL | ||
607 | + * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, | ||
608 | + * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR | ||
609 | + * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE | ||
610 | + * USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
611 | + * | ||
612 | + * The above copyright notice and this permission notice (including the | ||
613 | + * next paragraph) shall be included in all copies or substantial portions | ||
614 | + * of the Software. | ||
615 | + * | ||
616 | + * | ||
617 | + **************************************************************************/ | ||
618 | + | ||
619 | +#ifndef _XF86MM_H_ | ||
620 | +#define _XF86MM_H_ | ||
621 | +#include <stddef.h> | ||
622 | +#include <stdint.h> | ||
623 | +#include "drm.h" | ||
624 | + | ||
625 | +/* | ||
626 | + * Note on multithreaded applications using this interface. | ||
627 | + * Libdrm is not threadsafe, so common buffer, TTM, and fence objects need to | ||
628 | + * be protected using an external mutex. | ||
629 | + * | ||
630 | + * Note: Don't protect the following functions, as it may lead to deadlocks: | ||
631 | + * drmBOUnmap(). | ||
632 | + * The kernel is synchronizing and refcounting buffer maps. | ||
633 | + * User space only needs to refcount object usage within the same application. | ||
634 | + */ | ||
635 | + | ||
636 | + | ||
637 | +/* | ||
638 | + * List macros heavily inspired by the Linux kernel | ||
639 | + * list handling. No list looping yet. | ||
640 | + */ | ||
641 | + | ||
642 | +typedef struct _drmFence | ||
643 | +{ | ||
644 | + unsigned handle; | ||
645 | + int fence_class; | ||
646 | + unsigned type; | ||
647 | + unsigned flags; | ||
648 | + unsigned signaled; | ||
649 | + uint32_t sequence; | ||
650 | + unsigned pad[4]; /* for future expansion */ | ||
651 | +} drmFence; | ||
652 | + | ||
653 | +typedef struct _drmBO | ||
654 | +{ | ||
655 | + unsigned handle; | ||
656 | + uint64_t mapHandle; | ||
657 | + uint64_t flags; | ||
658 | + uint64_t mask; | ||
659 | + unsigned mapFlags; | ||
660 | + unsigned long size; | ||
661 | + unsigned long offset; | ||
662 | + unsigned long start; | ||
663 | + unsigned replyFlags; | ||
664 | + unsigned fenceFlags; | ||
665 | + unsigned pageAlignment; | ||
666 | + unsigned tileInfo; | ||
667 | + unsigned hwTileStride; | ||
668 | + unsigned desiredTileStride; | ||
669 | + void *virtual; | ||
670 | + void *mapVirtual; | ||
671 | + int mapCount; | ||
672 | + unsigned pad[8]; /* for future expansion */ | ||
673 | +} drmBO; | ||
674 | + | ||
675 | +/* | ||
676 | + * Fence functions. | ||
677 | + */ | ||
678 | + | ||
679 | +extern int drmFenceCreate(int fd, unsigned flags, int fence_class, | ||
680 | + unsigned type, drmFence *fence); | ||
681 | +extern int drmFenceReference(int fd, unsigned handle, drmFence *fence); | ||
682 | +extern int drmFenceUnreference(int fd, const drmFence *fence); | ||
683 | +extern int drmFenceFlush(int fd, drmFence *fence, unsigned flush_type); | ||
684 | +extern int drmFenceSignaled(int fd, drmFence *fence, | ||
685 | + unsigned fenceType, int *signaled); | ||
686 | +extern int drmFenceWait(int fd, unsigned flags, drmFence *fence, | ||
687 | + unsigned flush_type); | ||
688 | +extern int drmFenceEmit(int fd, unsigned flags, drmFence *fence, | ||
689 | + unsigned emit_type); | ||
690 | +extern int drmFenceBuffers(int fd, unsigned flags, uint32_t fence_class, drmFence *fence); | ||
691 | + | ||
692 | + | ||
693 | +/* | ||
694 | + * Buffer object functions. | ||
695 | + */ | ||
696 | + | ||
697 | +extern int drmBOCreate(int fd, unsigned long size, | ||
698 | + unsigned pageAlignment, void *user_buffer, | ||
699 | + uint64_t mask, unsigned hint, drmBO *buf); | ||
700 | +extern int drmBOReference(int fd, unsigned handle, drmBO *buf); | ||
701 | +extern int drmBOUnreference(int fd, drmBO *buf); | ||
702 | +extern int drmBOMap(int fd, drmBO *buf, unsigned mapFlags, unsigned mapHint, | ||
703 | + void **address); | ||
704 | +extern int drmBOUnmap(int fd, drmBO *buf); | ||
705 | +extern int drmBOFence(int fd, drmBO *buf, unsigned flags, unsigned fenceHandle); | ||
706 | +extern int drmBOInfo(int fd, drmBO *buf); | ||
707 | +extern int drmBOBusy(int fd, drmBO *buf, int *busy); | ||
708 | + | ||
709 | +extern int drmBOWaitIdle(int fd, drmBO *buf, unsigned hint); | ||
710 | + | ||
711 | +/* | ||
712 | + * Initialization functions. | ||
713 | + */ | ||
714 | + | ||
715 | +extern int drmMMInit(int fd, unsigned long pOffset, unsigned long pSize, | ||
716 | + unsigned memType); | ||
717 | +extern int drmMMTakedown(int fd, unsigned memType); | ||
718 | +extern int drmMMLock(int fd, unsigned memType, int lockBM, int ignoreNoEvict); | ||
719 | +extern int drmMMUnlock(int fd, unsigned memType, int unlockBM); | ||
720 | +extern int drmBOSetStatus(int fd, drmBO *buf, | ||
721 | + uint64_t flags, uint64_t mask, | ||
722 | + unsigned int hint, | ||
723 | + unsigned int desired_tile_stride, | ||
724 | + unsigned int tile_info); | ||
725 | +extern int drmBOVersion(int fd, unsigned int *major, | ||
726 | + unsigned int *minor, | ||
727 | + unsigned int *patchlevel); | ||
728 | + | ||
729 | + | ||
730 | +#endif | ||
731 | Index: libdrm-2.4.4/shared-core/drm.h | ||
732 | =================================================================== | ||
733 | --- libdrm-2.4.4.orig/shared-core/drm.h 2008-12-17 18:28:24.000000000 +0000 | ||
734 | +++ libdrm-2.4.4/shared-core/drm.h 2009-02-05 12:20:53.000000000 +0000 | ||
735 | @@ -632,6 +632,8 @@ | ||
736 | unsigned long handle; /**< Used for mapping / unmapping */ | ||
737 | }; | ||
738 | |||
739 | + | ||
740 | + | ||
741 | /** | ||
742 | * DRM_IOCTL_SET_VERSION ioctl argument type. | ||
743 | */ | ||
744 | @@ -1109,6 +1111,32 @@ | ||
745 | #define DRM_IOCTL_MODE_RMFB DRM_IOWR(0xAF, uint32_t) | ||
746 | #define DRM_IOCTL_MODE_REPLACEFB DRM_IOWR(0xB0, struct drm_mode_fb_cmd) | ||
747 | |||
748 | +#define DRM_IOCTL_MM_INIT DRM_IOWR(0xc0, struct drm_mm_init_arg) | ||
749 | +#define DRM_IOCTL_MM_TAKEDOWN DRM_IOWR(0xc1, struct drm_mm_type_arg) | ||
750 | +#define DRM_IOCTL_MM_LOCK DRM_IOWR(0xc2, struct drm_mm_type_arg) | ||
751 | +#define DRM_IOCTL_MM_UNLOCK DRM_IOWR(0xc3, struct drm_mm_type_arg) | ||
752 | + | ||
753 | +#define DRM_IOCTL_FENCE_CREATE DRM_IOWR(0xc4, struct drm_fence_arg) | ||
754 | +#define DRM_IOCTL_FENCE_REFERENCE DRM_IOWR(0xc6, struct drm_fence_arg) | ||
755 | +#define DRM_IOCTL_FENCE_UNREFERENCE DRM_IOWR(0xc7, struct drm_fence_arg) | ||
756 | +#define DRM_IOCTL_FENCE_SIGNALED DRM_IOWR(0xc8, struct drm_fence_arg) | ||
757 | +#define DRM_IOCTL_FENCE_FLUSH DRM_IOWR(0xc9, struct drm_fence_arg) | ||
758 | +#define DRM_IOCTL_FENCE_WAIT DRM_IOWR(0xca, struct drm_fence_arg) | ||
759 | +#define DRM_IOCTL_FENCE_EMIT DRM_IOWR(0xcb, struct drm_fence_arg) | ||
760 | +#define DRM_IOCTL_FENCE_BUFFERS DRM_IOWR(0xcc, struct drm_fence_arg) | ||
761 | + | ||
762 | +#define DRM_IOCTL_BO_CREATE DRM_IOWR(0xcd, struct drm_bo_create_arg) | ||
763 | +#define DRM_IOCTL_BO_MAP DRM_IOWR(0xcf, struct drm_bo_map_wait_idle_arg) | ||
764 | +#define DRM_IOCTL_BO_UNMAP DRM_IOWR(0xd0, struct drm_bo_handle_arg) | ||
765 | +#define DRM_IOCTL_BO_REFERENCE DRM_IOWR(0xd1, struct drm_bo_reference_info_arg) | ||
766 | +#define DRM_IOCTL_BO_UNREFERENCE DRM_IOWR(0xd2, struct drm_bo_handle_arg) | ||
767 | +#define DRM_IOCTL_BO_SETSTATUS DRM_IOWR(0xd3, struct drm_bo_map_wait_idle_arg) | ||
768 | +#define DRM_IOCTL_BO_INFO DRM_IOWR(0xd4, struct drm_bo_reference_info_arg) | ||
769 | +#define DRM_IOCTL_BO_WAIT_IDLE DRM_IOWR(0xd5, struct drm_bo_map_wait_idle_arg) | ||
770 | +#define DRM_IOCTL_BO_VERSION DRM_IOR(0xd6, struct drm_bo_version_arg) | ||
771 | + | ||
772 | +#define DRM_IOCTL_MODE_ADDMODE DRM_IOWR(0xA7, struct drm_mode_modeinfo) | ||
773 | +#define DRM_IOCTL_MODE_RMMODE DRM_IOWR(0xA8, unsigned int) | ||
774 | /*@}*/ | ||
775 | |||
776 | /** | ||
777 | Index: libdrm-2.4.4/shared-core/Makefile.am | ||
778 | =================================================================== | ||
779 | --- libdrm-2.4.4.orig/shared-core/Makefile.am 2008-12-17 18:28:24.000000000 +0000 | ||
780 | +++ libdrm-2.4.4/shared-core/Makefile.am 2009-02-04 16:39:55.000000000 +0000 | ||
781 | @@ -31,6 +31,8 @@ | ||
782 | mach64_drm.h \ | ||
783 | mga_drm.h \ | ||
784 | nouveau_drm.h \ | ||
785 | + psb_drm.h \ | ||
786 | + psb_reg.h \ | ||
787 | r128_drm.h \ | ||
788 | radeon_drm.h \ | ||
789 | savage_drm.h \ | ||
790 | Index: libdrm-2.4.4/shared-core/psb_drm.h | ||
791 | =================================================================== | ||
792 | --- /dev/null 1970-01-01 00:00:00.000000000 +0000 | ||
793 | +++ libdrm-2.4.4/shared-core/psb_drm.h 2009-02-04 16:39:55.000000000 +0000 | ||
794 | @@ -0,0 +1,359 @@ | ||
795 | +/************************************************************************** | ||
796 | + * Copyright (c) 2007, Intel Corporation. | ||
797 | + * All Rights Reserved. | ||
798 | + * | ||
799 | + * This program is free software; you can redistribute it and/or modify it | ||
800 | + * under the terms and conditions of the GNU General Public License, | ||
801 | + * version 2, as published by the Free Software Foundation. | ||
802 | + * | ||
803 | + * This program is distributed in the hope it will be useful, but WITHOUT | ||
804 | + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
805 | + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
806 | + * more details. | ||
807 | + * | ||
808 | + * You should have received a copy of the GNU General Public License along with | ||
809 | + * this program; if not, write to the Free Software Foundation, Inc., | ||
810 | + * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. | ||
811 | + * | ||
812 | + * Intel funded Tungsten Graphics (http://www.tungstengraphics.com) to | ||
813 | + * develop this driver. | ||
814 | + * | ||
815 | + **************************************************************************/ | ||
816 | +/* | ||
817 | + */ | ||
818 | + | ||
819 | +#ifndef _PSB_DRM_H_ | ||
820 | +#define _PSB_DRM_H_ | ||
821 | + | ||
822 | +#if defined(__linux__) && !defined(__KERNEL__) | ||
823 | +#include<stdint.h> | ||
824 | +#endif | ||
825 | + | ||
826 | +/* | ||
827 | + * Intel Poulsbo driver package version. | ||
828 | + * | ||
829 | + */ | ||
830 | +/* #define PSB_PACKAGE_VERSION "ED"__DATE__*/ | ||
831 | +#define PSB_PACKAGE_VERSION "2.0.0.32L.0007" | ||
832 | + | ||
833 | +#define DRM_PSB_SAREA_MAJOR 0 | ||
834 | +#define DRM_PSB_SAREA_MINOR 1 | ||
835 | +#define PSB_FIXED_SHIFT 16 | ||
836 | + | ||
837 | +/* | ||
838 | + * Public memory types. | ||
839 | + */ | ||
840 | + | ||
841 | +#define DRM_PSB_MEM_MMU DRM_BO_MEM_PRIV1 | ||
842 | +#define DRM_PSB_FLAG_MEM_MMU DRM_BO_FLAG_MEM_PRIV1 | ||
843 | +#define DRM_PSB_MEM_PDS DRM_BO_MEM_PRIV2 | ||
844 | +#define DRM_PSB_FLAG_MEM_PDS DRM_BO_FLAG_MEM_PRIV2 | ||
845 | +#define DRM_PSB_MEM_APER DRM_BO_MEM_PRIV3 | ||
846 | +#define DRM_PSB_FLAG_MEM_APER DRM_BO_FLAG_MEM_PRIV3 | ||
847 | +#define DRM_PSB_MEM_RASTGEOM DRM_BO_MEM_PRIV4 | ||
848 | +#define DRM_PSB_FLAG_MEM_RASTGEOM DRM_BO_FLAG_MEM_PRIV4 | ||
849 | +#define PSB_MEM_RASTGEOM_START 0x30000000 | ||
850 | + | ||
851 | +typedef int32_t psb_fixed; | ||
852 | +typedef uint32_t psb_ufixed; | ||
853 | + | ||
854 | +static inline psb_fixed psb_int_to_fixed(int a) | ||
855 | +{ | ||
856 | + return a * (1 << PSB_FIXED_SHIFT); | ||
857 | +} | ||
858 | + | ||
859 | +static inline psb_ufixed psb_unsigned_to_ufixed(unsigned int a) | ||
860 | +{ | ||
861 | + return a << PSB_FIXED_SHIFT; | ||
862 | +} | ||
863 | + | ||
864 | +/*Status of the command sent to the gfx device.*/ | ||
865 | +typedef enum { | ||
866 | + DRM_CMD_SUCCESS, | ||
867 | + DRM_CMD_FAILED, | ||
868 | + DRM_CMD_HANG | ||
869 | +} drm_cmd_status_t; | ||
870 | + | ||
871 | +struct drm_psb_scanout { | ||
872 | + uint32_t buffer_id; /* DRM buffer object ID */ | ||
873 | + uint32_t rotation; /* Rotation as in RR_rotation definitions */ | ||
874 | + uint32_t stride; /* Buffer stride in bytes */ | ||
875 | + uint32_t depth; /* Buffer depth in bits (NOT) bpp */ | ||
876 | + uint32_t width; /* Buffer width in pixels */ | ||
877 | + uint32_t height; /* Buffer height in lines */ | ||
878 | + psb_fixed transform[3][3]; /* Buffer composite transform */ | ||
879 | + /* (scaling, rot, reflect) */ | ||
880 | +}; | ||
881 | + | ||
882 | +#define DRM_PSB_SAREA_OWNERS 16 | ||
883 | +#define DRM_PSB_SAREA_OWNER_2D 0 | ||
884 | +#define DRM_PSB_SAREA_OWNER_3D 1 | ||
885 | + | ||
886 | +#define DRM_PSB_SAREA_SCANOUTS 3 | ||
887 | + | ||
888 | +struct drm_psb_sarea { | ||
889 | + /* Track changes of this data structure */ | ||
890 | + | ||
891 | + uint32_t major; | ||
892 | + uint32_t minor; | ||
893 | + | ||
894 | + /* Last context to touch part of hw */ | ||
895 | + uint32_t ctx_owners[DRM_PSB_SAREA_OWNERS]; | ||
896 | + | ||
897 | + /* Definition of front- and rotated buffers */ | ||
898 | + uint32_t num_scanouts; | ||
899 | + struct drm_psb_scanout scanouts[DRM_PSB_SAREA_SCANOUTS]; | ||
900 | + | ||
901 | + int planeA_x; | ||
902 | + int planeA_y; | ||
903 | + int planeA_w; | ||
904 | + int planeA_h; | ||
905 | + int planeB_x; | ||
906 | + int planeB_y; | ||
907 | + int planeB_w; | ||
908 | + int planeB_h; | ||
909 | + uint32_t msvdx_state; | ||
910 | + uint32_t msvdx_context; | ||
911 | +}; | ||
912 | + | ||
913 | +#define PSB_RELOC_MAGIC 0x67676767 | ||
914 | +#define PSB_RELOC_SHIFT_MASK 0x0000FFFF | ||
915 | +#define PSB_RELOC_SHIFT_SHIFT 0 | ||
916 | +#define PSB_RELOC_ALSHIFT_MASK 0xFFFF0000 | ||
917 | +#define PSB_RELOC_ALSHIFT_SHIFT 16 | ||
918 | + | ||
919 | +#define PSB_RELOC_OP_OFFSET 0 /* Offset of the indicated | ||
920 | + * buffer | ||
921 | + */ | ||
922 | +#define PSB_RELOC_OP_2D_OFFSET 1 /* Offset of the indicated | ||
923 | + * buffer, relative to 2D | ||
924 | + * base address | ||
925 | + */ | ||
926 | +#define PSB_RELOC_OP_PDS_OFFSET 2 /* Offset of the indicated buffer, | ||
927 | + * relative to PDS base address | ||
928 | + */ | ||
929 | +#define PSB_RELOC_OP_STRIDE 3 /* Stride of the indicated | ||
930 | + * buffer (for tiling) | ||
931 | + */ | ||
932 | +#define PSB_RELOC_OP_USE_OFFSET 4 /* Offset of USE buffer | ||
933 | + * relative to base reg | ||
934 | + */ | ||
935 | +#define PSB_RELOC_OP_USE_REG 5 /* Base reg of USE buffer */ | ||
936 | + | ||
937 | +struct drm_psb_reloc { | ||
938 | + uint32_t reloc_op; | ||
939 | + uint32_t where; /* offset in destination buffer */ | ||
940 | + uint32_t buffer; /* Buffer reloc applies to */ | ||
941 | + uint32_t mask; /* Destination format: */ | ||
942 | + uint32_t shift; /* Destination format: */ | ||
943 | + uint32_t pre_add; /* Destination format: */ | ||
944 | + uint32_t background; /* Destination add */ | ||
945 | + uint32_t dst_buffer; /* Destination buffer. Index into buffer_list */ | ||
946 | + uint32_t arg0; /* Reloc-op dependant */ | ||
947 | + uint32_t arg1; | ||
948 | +}; | ||
949 | + | ||
950 | +#define PSB_BO_FLAG_TA (1ULL << 48) | ||
951 | +#define PSB_BO_FLAG_SCENE (1ULL << 49) | ||
952 | +#define PSB_BO_FLAG_FEEDBACK (1ULL << 50) | ||
953 | +#define PSB_BO_FLAG_USSE (1ULL << 51) | ||
954 | + | ||
955 | +#define PSB_ENGINE_2D 0 | ||
956 | +#define PSB_ENGINE_VIDEO 1 | ||
957 | +#define PSB_ENGINE_RASTERIZER 2 | ||
958 | +#define PSB_ENGINE_TA 3 | ||
959 | +#define PSB_ENGINE_HPRAST 4 | ||
960 | + | ||
961 | +/* | ||
962 | + * For this fence class we have a couple of | ||
963 | + * fence types. | ||
964 | + */ | ||
965 | + | ||
966 | +#define _PSB_FENCE_EXE_SHIFT 0 | ||
967 | +#define _PSB_FENCE_TA_DONE_SHIFT 1 | ||
968 | +#define _PSB_FENCE_RASTER_DONE_SHIFT 2 | ||
969 | +#define _PSB_FENCE_SCENE_DONE_SHIFT 3 | ||
970 | +#define _PSB_FENCE_FEEDBACK_SHIFT 4 | ||
971 | + | ||
972 | +#define _PSB_ENGINE_TA_FENCE_TYPES 5 | ||
973 | +#define _PSB_FENCE_TYPE_TA_DONE (1 << _PSB_FENCE_TA_DONE_SHIFT) | ||
974 | +#define _PSB_FENCE_TYPE_RASTER_DONE (1 << _PSB_FENCE_RASTER_DONE_SHIFT) | ||
975 | +#define _PSB_FENCE_TYPE_SCENE_DONE (1 << _PSB_FENCE_SCENE_DONE_SHIFT) | ||
976 | +#define _PSB_FENCE_TYPE_FEEDBACK (1 << _PSB_FENCE_FEEDBACK_SHIFT) | ||
977 | + | ||
978 | +#define PSB_ENGINE_HPRAST 4 | ||
979 | +#define PSB_NUM_ENGINES 5 | ||
980 | + | ||
981 | +#define PSB_TA_FLAG_FIRSTPASS (1 << 0) | ||
982 | +#define PSB_TA_FLAG_LASTPASS (1 << 1) | ||
983 | + | ||
984 | +#define PSB_FEEDBACK_OP_VISTEST (1 << 0) | ||
985 | + | ||
986 | +struct drm_psb_scene { | ||
987 | + int handle_valid; | ||
988 | + uint32_t handle; | ||
989 | + uint32_t w; | ||
990 | + uint32_t h; | ||
991 | + uint32_t num_buffers; | ||
992 | +}; | ||
993 | + | ||
994 | +typedef struct drm_psb_cmdbuf_arg { | ||
995 | + uint64_t buffer_list; /* List of buffers to validate */ | ||
996 | + uint64_t clip_rects; /* See i915 counterpart */ | ||
997 | + uint64_t scene_arg; | ||
998 | + uint64_t fence_arg; | ||
999 | + | ||
1000 | + uint32_t ta_flags; | ||
1001 | + | ||
1002 | + uint32_t ta_handle; /* TA reg-value pairs */ | ||
1003 | + uint32_t ta_offset; | ||
1004 | + uint32_t ta_size; | ||
1005 | + | ||
1006 | + uint32_t oom_handle; | ||
1007 | + uint32_t oom_offset; | ||
1008 | + uint32_t oom_size; | ||
1009 | + | ||
1010 | + uint32_t cmdbuf_handle; /* 2D Command buffer object or, */ | ||
1011 | + uint32_t cmdbuf_offset; /* rasterizer reg-value pairs */ | ||
1012 | + uint32_t cmdbuf_size; | ||
1013 | + | ||
1014 | + uint32_t reloc_handle; /* Reloc buffer object */ | ||
1015 | + uint32_t reloc_offset; | ||
1016 | + uint32_t num_relocs; | ||
1017 | + | ||
1018 | + int32_t damage; /* Damage front buffer with cliprects */ | ||
1019 | + /* Not implemented yet */ | ||
1020 | + uint32_t fence_flags; | ||
1021 | + uint32_t engine; | ||
1022 | + | ||
1023 | + /* | ||
1024 | + * Feedback; | ||
1025 | + */ | ||
1026 | + | ||
1027 | + uint32_t feedback_ops; | ||
1028 | + uint32_t feedback_handle; | ||
1029 | + uint32_t feedback_offset; | ||
1030 | + uint32_t feedback_breakpoints; | ||
1031 | + uint32_t feedback_size; | ||
1032 | +} drm_psb_cmdbuf_arg_t; | ||
1033 | + | ||
1034 | +struct drm_psb_xhw_init_arg { | ||
1035 | + uint32_t operation; | ||
1036 | + uint32_t buffer_handle; | ||
1037 | +}; | ||
1038 | + | ||
1039 | +/* | ||
1040 | + * Feedback components: | ||
1041 | + */ | ||
1042 | + | ||
1043 | +/* | ||
1044 | + * Vistest component. The number of these in the feedback buffer | ||
1045 | + * equals the number of vistest breakpoints + 1. | ||
1046 | + * This is currently the only feedback component. | ||
1047 | + */ | ||
1048 | + | ||
1049 | +struct drm_psb_vistest { | ||
1050 | + uint32_t vt[8]; | ||
1051 | +}; | ||
1052 | + | ||
1053 | +#define PSB_HW_COOKIE_SIZE 16 | ||
1054 | +#define PSB_HW_FEEDBACK_SIZE 8 | ||
1055 | +#define PSB_HW_OOM_CMD_SIZE 6 | ||
1056 | + | ||
1057 | +struct drm_psb_xhw_arg { | ||
1058 | + uint32_t op; | ||
1059 | + int ret; | ||
1060 | + uint32_t irq_op; | ||
1061 | + uint32_t issue_irq; | ||
1062 | + uint32_t cookie[PSB_HW_COOKIE_SIZE]; | ||
1063 | + union { | ||
1064 | + struct { | ||
1065 | + uint32_t w; | ||
1066 | + uint32_t h; | ||
1067 | + uint32_t size; | ||
1068 | + uint32_t clear_p_start; | ||
1069 | + uint32_t clear_num_pages; | ||
1070 | + } si; | ||
1071 | + struct { | ||
1072 | + uint32_t fire_flags; | ||
1073 | + uint32_t hw_context; | ||
1074 | + uint32_t offset; | ||
1075 | + uint32_t engine; | ||
1076 | + uint32_t flags; | ||
1077 | + uint32_t rca; | ||
1078 | + uint32_t num_oom_cmds; | ||
1079 | + uint32_t oom_cmds[PSB_HW_OOM_CMD_SIZE]; | ||
1080 | + } sb; | ||
1081 | + struct { | ||
1082 | + uint32_t pages; | ||
1083 | + uint32_t size; | ||
1084 | + } bi; | ||
1085 | + struct { | ||
1086 | + uint32_t bca; | ||
1087 | + uint32_t rca; | ||
1088 | + uint32_t flags; | ||
1089 | + } oom; | ||
1090 | + struct { | ||
1091 | + uint32_t pt_offset; | ||
1092 | + uint32_t param_offset; | ||
1093 | + uint32_t flags; | ||
1094 | + } bl; | ||
1095 | + uint32_t feedback[PSB_HW_FEEDBACK_SIZE]; | ||
1096 | + } arg; | ||
1097 | +}; | ||
1098 | + | ||
1099 | +#define DRM_PSB_CMDBUF 0x00 | ||
1100 | +#define DRM_PSB_XHW_INIT 0x01 | ||
1101 | +#define DRM_PSB_XHW 0x02 | ||
1102 | +#define DRM_PSB_SCENE_UNREF 0x03 | ||
1103 | +/* Controlling the kernel modesetting buffers */ | ||
1104 | +#define DRM_PSB_KMS_OFF 0x04 | ||
1105 | +#define DRM_PSB_KMS_ON 0x05 | ||
1106 | + | ||
1107 | +#define PSB_XHW_INIT 0x00 | ||
1108 | +#define PSB_XHW_TAKEDOWN 0x01 | ||
1109 | + | ||
1110 | +#define PSB_XHW_FIRE_RASTER 0x00 | ||
1111 | +#define PSB_XHW_SCENE_INFO 0x01 | ||
1112 | +#define PSB_XHW_SCENE_BIND_FIRE 0x02 | ||
1113 | +#define PSB_XHW_TA_MEM_INFO 0x03 | ||
1114 | +#define PSB_XHW_RESET_DPM 0x04 | ||
1115 | +#define PSB_XHW_OOM 0x05 | ||
1116 | +#define PSB_XHW_TERMINATE 0x06 | ||
1117 | +#define PSB_XHW_VISTEST 0x07 | ||
1118 | +#define PSB_XHW_RESUME 0x08 | ||
1119 | +#define PSB_XHW_TA_MEM_LOAD 0x09 | ||
1120 | + | ||
1121 | +#define PSB_SCENE_FLAG_DIRTY (1 << 0) | ||
1122 | +#define PSB_SCENE_FLAG_COMPLETE (1 << 1) | ||
1123 | +#define PSB_SCENE_FLAG_SETUP (1 << 2) | ||
1124 | +#define PSB_SCENE_FLAG_SETUP_ONLY (1 << 3) | ||
1125 | +#define PSB_SCENE_FLAG_CLEARED (1 << 4) | ||
1126 | + | ||
1127 | +#define PSB_TA_MEM_FLAG_TA (1 << 0) | ||
1128 | +#define PSB_TA_MEM_FLAG_RASTER (1 << 1) | ||
1129 | +#define PSB_TA_MEM_FLAG_HOSTA (1 << 2) | ||
1130 | +#define PSB_TA_MEM_FLAG_HOSTD (1 << 3) | ||
1131 | +#define PSB_TA_MEM_FLAG_INIT (1 << 4) | ||
1132 | +#define PSB_TA_MEM_FLAG_NEW_PT_OFFSET (1 << 5) | ||
1133 | + | ||
1134 | +/*Raster fire will deallocate memory */ | ||
1135 | +#define PSB_FIRE_FLAG_RASTER_DEALLOC (1 << 0) | ||
1136 | +/*Isp reset needed due to change in ZLS format */ | ||
1137 | +#define PSB_FIRE_FLAG_NEEDS_ISP_RESET (1 << 1) | ||
1138 | +/*These are set by Xpsb. */ | ||
1139 | +#define PSB_FIRE_FLAG_XHW_MASK 0xff000000 | ||
1140 | +/*The task has had at least one OOM and Xpsb will | ||
1141 | + send back messages on each fire. */ | ||
1142 | +#define PSB_FIRE_FLAG_XHW_OOM (1 << 24) | ||
1143 | + | ||
1144 | +#define PSB_SCENE_ENGINE_TA 0 | ||
1145 | +#define PSB_SCENE_ENGINE_RASTER 1 | ||
1146 | +#define PSB_SCENE_NUM_ENGINES 2 | ||
1147 | + | ||
1148 | +struct drm_psb_dev_info_arg { | ||
1149 | + uint32_t num_use_attribute_registers; | ||
1150 | +}; | ||
1151 | +#define DRM_PSB_DEVINFO 0x01 | ||
1152 | + | ||
1153 | +#endif | ||
1154 | Index: libdrm-2.4.4/shared-core/psb_drv.h | ||
1155 | =================================================================== | ||
1156 | --- /dev/null 1970-01-01 00:00:00.000000000 +0000 | ||
1157 | +++ libdrm-2.4.4/shared-core/psb_drv.h 2009-02-04 16:39:55.000000000 +0000 | ||
1158 | @@ -0,0 +1,786 @@ | ||
1159 | +/************************************************************************** | ||
1160 | + * Copyright (c) 2007, Intel Corporation. | ||
1161 | + * All Rights Reserved. | ||
1162 | + * | ||
1163 | + * This program is free software; you can redistribute it and/or modify it | ||
1164 | + * under the terms and conditions of the GNU General Public License, | ||
1165 | + * version 2, as published by the Free Software Foundation. | ||
1166 | + * | ||
1167 | + * This program is distributed in the hope it will be useful, but WITHOUT | ||
1168 | + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
1169 | + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
1170 | + * more details. | ||
1171 | + * | ||
1172 | + * You should have received a copy of the GNU General Public License along with | ||
1173 | + * this program; if not, write to the Free Software Foundation, Inc., | ||
1174 | + * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. | ||
1175 | + * | ||
1176 | + * Intel funded Tungsten Graphics (http://www.tungstengraphics.com) to | ||
1177 | + * develop this driver. | ||
1178 | + * | ||
1179 | + **************************************************************************/ | ||
1180 | +/* | ||
1181 | + */ | ||
1182 | +#ifndef _PSB_DRV_H_ | ||
1183 | +#define _PSB_DRV_H_ | ||
1184 | + | ||
1185 | +#include "drmP.h" | ||
1186 | +#include "psb_drm.h" | ||
1187 | +#include "psb_reg.h" | ||
1188 | +#include "psb_schedule.h" | ||
1189 | +#include "intel_drv.h" | ||
1190 | + | ||
1191 | +enum { | ||
1192 | + CHIP_PSB_8108 = 0, | ||
1193 | + CHIP_PSB_8109 = 1 | ||
1194 | +}; | ||
1195 | + | ||
1196 | +#define DRIVER_NAME "psb" | ||
1197 | +#define DRIVER_DESC "drm driver for the Intel GMA500" | ||
1198 | +#define DRIVER_AUTHOR "Tungsten Graphics Inc." | ||
1199 | + | ||
1200 | +#define PSB_DRM_DRIVER_DATE "20080107" | ||
1201 | +#define PSB_DRM_DRIVER_MAJOR 4 | ||
1202 | +#define PSB_DRM_DRIVER_MINOR 1 | ||
1203 | +#define PSB_DRM_DRIVER_PATCHLEVEL 0 | ||
1204 | + | ||
1205 | +#define PSB_VDC_OFFSET 0x00000000 | ||
1206 | +#define PSB_VDC_SIZE 0x000080000 | ||
1207 | +#define PSB_SGX_SIZE 0x8000 | ||
1208 | +#define PSB_SGX_OFFSET 0x00040000 | ||
1209 | +#define PSB_MMIO_RESOURCE 0 | ||
1210 | +#define PSB_GATT_RESOURCE 2 | ||
1211 | +#define PSB_GTT_RESOURCE 3 | ||
1212 | +#define PSB_GMCH_CTRL 0x52 | ||
1213 | +#define PSB_BSM 0x5C | ||
1214 | +#define _PSB_GMCH_ENABLED 0x4 | ||
1215 | +#define PSB_PGETBL_CTL 0x2020 | ||
1216 | +#define _PSB_PGETBL_ENABLED 0x00000001 | ||
1217 | +#define PSB_SGX_2D_SLAVE_PORT 0x4000 | ||
1218 | +#define PSB_TT_PRIV0_LIMIT (256*1024*1024) | ||
1219 | +#define PSB_TT_PRIV0_PLIMIT (PSB_TT_PRIV0_LIMIT >> PAGE_SHIFT) | ||
1220 | +#define PSB_NUM_VALIDATE_BUFFERS 640 | ||
1221 | +#define PSB_MEM_KERNEL_START 0x10000000 | ||
1222 | +#define PSB_MEM_PDS_START 0x20000000 | ||
1223 | +#define PSB_MEM_MMU_START 0x40000000 | ||
1224 | + | ||
1225 | +#define DRM_PSB_MEM_KERNEL DRM_BO_MEM_PRIV0 | ||
1226 | +#define DRM_PSB_FLAG_MEM_KERNEL DRM_BO_FLAG_MEM_PRIV0 | ||
1227 | + | ||
1228 | +/* | ||
1229 | + * Flags for external memory type field. | ||
1230 | + */ | ||
1231 | + | ||
1232 | +#define PSB_MSVDX_OFFSET 0x50000 /*MSVDX Base offset */ | ||
1233 | +#define PSB_MSVDX_SIZE 0x8000 /*MSVDX MMIO region is 0x50000 - 0x57fff ==> 32KB */ | ||
1234 | + | ||
1235 | +#define PSB_MMU_CACHED_MEMORY 0x0001 /* Bind to MMU only */ | ||
1236 | +#define PSB_MMU_RO_MEMORY 0x0002 /* MMU RO memory */ | ||
1237 | +#define PSB_MMU_WO_MEMORY 0x0004 /* MMU WO memory */ | ||
1238 | + | ||
1239 | +/* | ||
1240 | + * PTE's and PDE's | ||
1241 | + */ | ||
1242 | + | ||
1243 | +#define PSB_PDE_MASK 0x003FFFFF | ||
1244 | +#define PSB_PDE_SHIFT 22 | ||
1245 | +#define PSB_PTE_SHIFT 12 | ||
1246 | + | ||
1247 | +#define PSB_PTE_VALID 0x0001 /* PTE / PDE valid */ | ||
1248 | +#define PSB_PTE_WO 0x0002 /* Write only */ | ||
1249 | +#define PSB_PTE_RO 0x0004 /* Read only */ | ||
1250 | +#define PSB_PTE_CACHED 0x0008 /* CPU cache coherent */ | ||
1251 | + | ||
1252 | +/* | ||
1253 | + * VDC registers and bits | ||
1254 | + */ | ||
1255 | +#define PSB_HWSTAM 0x2098 | ||
1256 | +#define PSB_INSTPM 0x20C0 | ||
1257 | +#define PSB_INT_IDENTITY_R 0x20A4 | ||
1258 | +#define _PSB_VSYNC_PIPEB_FLAG (1<<5) | ||
1259 | +#define _PSB_VSYNC_PIPEA_FLAG (1<<7) | ||
1260 | +#define _PSB_IRQ_SGX_FLAG (1<<18) | ||
1261 | +#define _PSB_IRQ_MSVDX_FLAG (1<<19) | ||
1262 | +#define PSB_INT_MASK_R 0x20A8 | ||
1263 | +#define PSB_INT_ENABLE_R 0x20A0 | ||
1264 | +#define PSB_PIPEASTAT 0x70024 | ||
1265 | +#define _PSB_VBLANK_INTERRUPT_ENABLE (1 << 17) | ||
1266 | +#define _PSB_VBLANK_CLEAR (1 << 1) | ||
1267 | +#define PSB_PIPEBSTAT 0x71024 | ||
1268 | + | ||
1269 | +#define _PSB_MMU_ER_MASK 0x0001FF00 | ||
1270 | +#define _PSB_MMU_ER_HOST (1 << 16) | ||
1271 | +#define GPIOA 0x5010 | ||
1272 | +#define GPIOB 0x5014 | ||
1273 | +#define GPIOC 0x5018 | ||
1274 | +#define GPIOD 0x501c | ||
1275 | +#define GPIOE 0x5020 | ||
1276 | +#define GPIOF 0x5024 | ||
1277 | +#define GPIOG 0x5028 | ||
1278 | +#define GPIOH 0x502c | ||
1279 | +#define GPIO_CLOCK_DIR_MASK (1 << 0) | ||
1280 | +#define GPIO_CLOCK_DIR_IN (0 << 1) | ||
1281 | +#define GPIO_CLOCK_DIR_OUT (1 << 1) | ||
1282 | +#define GPIO_CLOCK_VAL_MASK (1 << 2) | ||
1283 | +#define GPIO_CLOCK_VAL_OUT (1 << 3) | ||
1284 | +#define GPIO_CLOCK_VAL_IN (1 << 4) | ||
1285 | +#define GPIO_CLOCK_PULLUP_DISABLE (1 << 5) | ||
1286 | +#define GPIO_DATA_DIR_MASK (1 << 8) | ||
1287 | +#define GPIO_DATA_DIR_IN (0 << 9) | ||
1288 | +#define GPIO_DATA_DIR_OUT (1 << 9) | ||
1289 | +#define GPIO_DATA_VAL_MASK (1 << 10) | ||
1290 | +#define GPIO_DATA_VAL_OUT (1 << 11) | ||
1291 | +#define GPIO_DATA_VAL_IN (1 << 12) | ||
1292 | +#define GPIO_DATA_PULLUP_DISABLE (1 << 13) | ||
1293 | + | ||
1294 | +#define VCLK_DIVISOR_VGA0 0x6000 | ||
1295 | +#define VCLK_DIVISOR_VGA1 0x6004 | ||
1296 | +#define VCLK_POST_DIV 0x6010 | ||
1297 | + | ||
1298 | +#define DRM_DRIVER_PRIVATE_T struct drm_psb_private | ||
1299 | +#define I915_WRITE(_offs, _val) \ | ||
1300 | + iowrite32(_val, dev_priv->vdc_reg + (_offs)) | ||
1301 | +#define I915_READ(_offs) \ | ||
1302 | + ioread32(dev_priv->vdc_reg + (_offs)) | ||
1303 | + | ||
1304 | +#define PSB_COMM_2D (PSB_ENGINE_2D << 4) | ||
1305 | +#define PSB_COMM_3D (PSB_ENGINE_3D << 4) | ||
1306 | +#define PSB_COMM_TA (PSB_ENGINE_TA << 4) | ||
1307 | +#define PSB_COMM_HP (PSB_ENGINE_HP << 4) | ||
1308 | +#define PSB_COMM_USER_IRQ (1024 >> 2) | ||
1309 | +#define PSB_COMM_USER_IRQ_LOST (PSB_COMM_USER_IRQ + 1) | ||
1310 | +#define PSB_COMM_FW (2048 >> 2) | ||
1311 | + | ||
1312 | +#define PSB_UIRQ_VISTEST 1 | ||
1313 | +#define PSB_UIRQ_OOM_REPLY 2 | ||
1314 | +#define PSB_UIRQ_FIRE_TA_REPLY 3 | ||
1315 | +#define PSB_UIRQ_FIRE_RASTER_REPLY 4 | ||
1316 | + | ||
1317 | +#define PSB_2D_SIZE (256*1024*1024) | ||
1318 | +#define PSB_MAX_RELOC_PAGES 1024 | ||
1319 | + | ||
1320 | +#define PSB_LOW_REG_OFFS 0x0204 | ||
1321 | +#define PSB_HIGH_REG_OFFS 0x0600 | ||
1322 | + | ||
1323 | +#define PSB_NUM_VBLANKS 2 | ||
1324 | + | ||
1325 | +#define PSB_COMM_2D (PSB_ENGINE_2D << 4) | ||
1326 | +#define PSB_COMM_3D (PSB_ENGINE_3D << 4) | ||
1327 | +#define PSB_COMM_TA (PSB_ENGINE_TA << 4) | ||
1328 | +#define PSB_COMM_HP (PSB_ENGINE_HP << 4) | ||
1329 | +#define PSB_COMM_FW (2048 >> 2) | ||
1330 | + | ||
1331 | +#define PSB_2D_SIZE (256*1024*1024) | ||
1332 | +#define PSB_MAX_RELOC_PAGES 1024 | ||
1333 | + | ||
1334 | +#define PSB_LOW_REG_OFFS 0x0204 | ||
1335 | +#define PSB_HIGH_REG_OFFS 0x0600 | ||
1336 | + | ||
1337 | +#define PSB_NUM_VBLANKS 2 | ||
1338 | +#define PSB_WATCHDOG_DELAY (DRM_HZ / 10) | ||
1339 | + | ||
1340 | +/* | ||
1341 | + * User options. | ||
1342 | + */ | ||
1343 | + | ||
1344 | +struct drm_psb_uopt { | ||
1345 | + int disable_clock_gating; | ||
1346 | +}; | ||
1347 | + | ||
1348 | +struct psb_gtt { | ||
1349 | + struct drm_device *dev; | ||
1350 | + int initialized; | ||
1351 | + uint32_t gatt_start; | ||
1352 | + uint32_t gtt_start; | ||
1353 | + uint32_t gtt_phys_start; | ||
1354 | + unsigned gtt_pages; | ||
1355 | + unsigned gatt_pages; | ||
1356 | + uint32_t stolen_base; | ||
1357 | + uint32_t pge_ctl; | ||
1358 | + u16 gmch_ctrl; | ||
1359 | + unsigned long stolen_size; | ||
1360 | + uint32_t *gtt_map; | ||
1361 | + struct rw_semaphore sem; | ||
1362 | +}; | ||
1363 | + | ||
1364 | +struct psb_use_base { | ||
1365 | + struct list_head head; | ||
1366 | + struct drm_fence_object *fence; | ||
1367 | + unsigned int reg; | ||
1368 | + unsigned long offset; | ||
1369 | + unsigned int dm; | ||
1370 | +}; | ||
1371 | + | ||
1372 | +struct psb_buflist_item { | ||
1373 | + struct drm_buffer_object *bo; | ||
1374 | + void __user *data; | ||
1375 | + struct drm_bo_info_rep rep; | ||
1376 | + int ret; | ||
1377 | +}; | ||
1378 | + | ||
1379 | +struct psb_msvdx_cmd_queue { | ||
1380 | + struct list_head head; | ||
1381 | + void *cmd; | ||
1382 | + unsigned long cmd_size; | ||
1383 | + uint32_t sequence; | ||
1384 | +}; | ||
1385 | + | ||
1386 | +struct drm_psb_private { | ||
1387 | + unsigned long chipset; | ||
1388 | + | ||
1389 | + struct psb_xhw_buf resume_buf; | ||
1390 | + struct drm_psb_dev_info_arg dev_info; | ||
1391 | + struct drm_psb_uopt uopt; | ||
1392 | + | ||
1393 | + struct psb_gtt *pg; | ||
1394 | + | ||
1395 | + struct page *scratch_page; | ||
1396 | + struct page *comm_page; | ||
1397 | + | ||
1398 | + volatile uint32_t *comm; | ||
1399 | + uint32_t comm_mmu_offset; | ||
1400 | + uint32_t mmu_2d_offset; | ||
1401 | + uint32_t sequence[PSB_NUM_ENGINES]; | ||
1402 | + uint32_t last_sequence[PSB_NUM_ENGINES]; | ||
1403 | + int idle[PSB_NUM_ENGINES]; | ||
1404 | + uint32_t last_submitted_seq[PSB_NUM_ENGINES]; | ||
1405 | + int engine_lockup_2d; | ||
1406 | + | ||
1407 | + struct psb_mmu_driver *mmu; | ||
1408 | + struct psb_mmu_pd *pf_pd; | ||
1409 | + | ||
1410 | + uint8_t *sgx_reg; | ||
1411 | + uint8_t *vdc_reg; | ||
1412 | + uint8_t *msvdx_reg; | ||
1413 | + /*MSVDX*/ int msvdx_needs_reset; | ||
1414 | + int has_msvdx; | ||
1415 | + uint32_t gatt_free_offset; | ||
1416 | + | ||
1417 | + /* | ||
1418 | + * Fencing / irq. | ||
1419 | + */ | ||
1420 | + | ||
1421 | + uint32_t sgx_irq_mask; | ||
1422 | + uint32_t vdc_irq_mask; | ||
1423 | + | ||
1424 | + spinlock_t irqmask_lock; | ||
1425 | + spinlock_t sequence_lock; | ||
1426 | + int fence0_irq_on; | ||
1427 | + int irq_enabled; | ||
1428 | + unsigned int irqen_count_2d; | ||
1429 | + wait_queue_head_t event_2d_queue; | ||
1430 | + | ||
1431 | + uint32_t msvdx_current_sequence; | ||
1432 | + uint32_t msvdx_last_sequence; | ||
1433 | + int fence2_irq_on; | ||
1434 | + struct mutex mutex_2d; | ||
1435 | + | ||
1436 | + /* | ||
1437 | + * MSVDX Rendec Memory | ||
1438 | + */ | ||
1439 | + struct drm_buffer_object *ccb0; | ||
1440 | + uint32_t base_addr0; | ||
1441 | + struct drm_buffer_object *ccb1; | ||
1442 | + uint32_t base_addr1; | ||
1443 | + | ||
1444 | + /* | ||
1445 | + * Memory managers | ||
1446 | + */ | ||
1447 | + | ||
1448 | + int have_vram; | ||
1449 | + int have_tt; | ||
1450 | + int have_mem_mmu; | ||
1451 | + int have_mem_aper; | ||
1452 | + int have_mem_kernel; | ||
1453 | + int have_mem_pds; | ||
1454 | + int have_mem_rastgeom; | ||
1455 | + struct mutex temp_mem; | ||
1456 | + | ||
1457 | + /* | ||
1458 | + * Relocation buffer mapping. | ||
1459 | + */ | ||
1460 | + | ||
1461 | + spinlock_t reloc_lock; | ||
1462 | + unsigned int rel_mapped_pages; | ||
1463 | + wait_queue_head_t rel_mapped_queue; | ||
1464 | + | ||
1465 | + /* | ||
1466 | + * SAREA | ||
1467 | + */ | ||
1468 | + struct drm_psb_sarea *sarea_priv; | ||
1469 | + | ||
1470 | + /* | ||
1471 | + * LVDS info | ||
1472 | + */ | ||
1473 | + uint8_t blc_type; | ||
1474 | + uint8_t blc_pol; | ||
1475 | + uint8_t blc_freq; | ||
1476 | + uint8_t blc_minbrightness; | ||
1477 | + uint8_t blc_i2caddr; | ||
1478 | + uint8_t blc_brightnesscmd; | ||
1479 | + int backlight; /* restore backlight to this value */ | ||
1480 | + | ||
1481 | + struct intel_i2c_chan *i2c_bus; | ||
1482 | + u32 CoreClock; | ||
1483 | + u32 PWMControlRegFreq; | ||
1484 | + | ||
1485 | + unsigned char * OpRegion; | ||
1486 | + unsigned int OpRegionSize; | ||
1487 | + | ||
1488 | + int backlight_duty_cycle; /* restore backlight to this value */ | ||
1489 | + bool panel_wants_dither; | ||
1490 | + struct drm_display_mode *panel_fixed_mode; | ||
1491 | + | ||
1492 | + /* | ||
1493 | + * Register state | ||
1494 | + */ | ||
1495 | + uint32_t saveDSPACNTR; | ||
1496 | + uint32_t saveDSPBCNTR; | ||
1497 | + uint32_t savePIPEACONF; | ||
1498 | + uint32_t savePIPEBCONF; | ||
1499 | + uint32_t savePIPEASRC; | ||
1500 | + uint32_t savePIPEBSRC; | ||
1501 | + uint32_t saveFPA0; | ||
1502 | + uint32_t saveFPA1; | ||
1503 | + uint32_t saveDPLL_A; | ||
1504 | + uint32_t saveDPLL_A_MD; | ||
1505 | + uint32_t saveHTOTAL_A; | ||
1506 | + uint32_t saveHBLANK_A; | ||
1507 | + uint32_t saveHSYNC_A; | ||
1508 | + uint32_t saveVTOTAL_A; | ||
1509 | + uint32_t saveVBLANK_A; | ||
1510 | + uint32_t saveVSYNC_A; | ||
1511 | + uint32_t saveDSPASTRIDE; | ||
1512 | + uint32_t saveDSPASIZE; | ||
1513 | + uint32_t saveDSPAPOS; | ||
1514 | + uint32_t saveDSPABASE; | ||
1515 | + uint32_t saveDSPASURF; | ||
1516 | + uint32_t saveFPB0; | ||
1517 | + uint32_t saveFPB1; | ||
1518 | + uint32_t saveDPLL_B; | ||
1519 | + uint32_t saveDPLL_B_MD; | ||
1520 | + uint32_t saveHTOTAL_B; | ||
1521 | + uint32_t saveHBLANK_B; | ||
1522 | + uint32_t saveHSYNC_B; | ||
1523 | + uint32_t saveVTOTAL_B; | ||
1524 | + uint32_t saveVBLANK_B; | ||
1525 | + uint32_t saveVSYNC_B; | ||
1526 | + uint32_t saveDSPBSTRIDE; | ||
1527 | + uint32_t saveDSPBSIZE; | ||
1528 | + uint32_t saveDSPBPOS; | ||
1529 | + uint32_t saveDSPBBASE; | ||
1530 | + uint32_t saveDSPBSURF; | ||
1531 | + uint32_t saveVCLK_DIVISOR_VGA0; | ||
1532 | + uint32_t saveVCLK_DIVISOR_VGA1; | ||
1533 | + uint32_t saveVCLK_POST_DIV; | ||
1534 | + uint32_t saveVGACNTRL; | ||
1535 | + uint32_t saveADPA; | ||
1536 | + uint32_t saveLVDS; | ||
1537 | + uint32_t saveDVOA; | ||
1538 | + uint32_t saveDVOB; | ||
1539 | + uint32_t saveDVOC; | ||
1540 | + uint32_t savePP_ON; | ||
1541 | + uint32_t savePP_OFF; | ||
1542 | + uint32_t savePP_CONTROL; | ||
1543 | + uint32_t savePP_CYCLE; | ||
1544 | + uint32_t savePFIT_CONTROL; | ||
1545 | + uint32_t savePaletteA[256]; | ||
1546 | + uint32_t savePaletteB[256]; | ||
1547 | + uint32_t saveBLC_PWM_CTL; | ||
1548 | + | ||
1549 | + /* | ||
1550 | + * USE code base register management. | ||
1551 | + */ | ||
1552 | + | ||
1553 | + struct drm_reg_manager use_manager; | ||
1554 | + | ||
1555 | + /* | ||
1556 | + * Xhw | ||
1557 | + */ | ||
1558 | + | ||
1559 | + uint32_t *xhw; | ||
1560 | + struct drm_buffer_object *xhw_bo; | ||
1561 | + struct drm_bo_kmap_obj xhw_kmap; | ||
1562 | + struct list_head xhw_in; | ||
1563 | + spinlock_t xhw_lock; | ||
1564 | + atomic_t xhw_client; | ||
1565 | + struct drm_file *xhw_file; | ||
1566 | + wait_queue_head_t xhw_queue; | ||
1567 | + wait_queue_head_t xhw_caller_queue; | ||
1568 | + struct mutex xhw_mutex; | ||
1569 | + struct psb_xhw_buf *xhw_cur_buf; | ||
1570 | + int xhw_submit_ok; | ||
1571 | + int xhw_on; | ||
1572 | + | ||
1573 | + /* | ||
1574 | + * Scheduling. | ||
1575 | + */ | ||
1576 | + | ||
1577 | + struct mutex reset_mutex; | ||
1578 | + struct mutex cmdbuf_mutex; | ||
1579 | + struct psb_scheduler scheduler; | ||
1580 | + struct psb_buflist_item buffers[PSB_NUM_VALIDATE_BUFFERS]; | ||
1581 | + uint32_t ta_mem_pages; | ||
1582 | + struct psb_ta_mem *ta_mem; | ||
1583 | + int force_ta_mem_load; | ||
1584 | + | ||
1585 | + /* | ||
1586 | + * Watchdog | ||
1587 | + */ | ||
1588 | + | ||
1589 | + spinlock_t watchdog_lock; | ||
1590 | + struct timer_list watchdog_timer; | ||
1591 | + struct work_struct watchdog_wq; | ||
1592 | + struct work_struct msvdx_watchdog_wq; | ||
1593 | + int timer_available; | ||
1594 | + | ||
1595 | + /* | ||
1596 | + * msvdx command queue | ||
1597 | + */ | ||
1598 | + spinlock_t msvdx_lock; | ||
1599 | + struct mutex msvdx_mutex; | ||
1600 | + struct list_head msvdx_queue; | ||
1601 | + int msvdx_busy; | ||
1602 | +}; | ||
1603 | + | ||
1604 | +struct psb_mmu_driver; | ||
1605 | + | ||
1606 | +extern struct psb_mmu_driver *psb_mmu_driver_init(uint8_t __iomem * registers, | ||
1607 | + int trap_pagefaults, | ||
1608 | + int invalid_type); | ||
1609 | +extern void psb_mmu_driver_takedown(struct psb_mmu_driver *driver); | ||
1610 | +extern struct psb_mmu_pd *psb_mmu_get_default_pd(struct psb_mmu_driver *driver); | ||
1611 | +extern void psb_mmu_mirror_gtt(struct psb_mmu_pd *pd, uint32_t mmu_offset, | ||
1612 | + uint32_t gtt_start, uint32_t gtt_pages); | ||
1613 | +extern void psb_mmu_test(struct psb_mmu_driver *driver, uint32_t offset); | ||
1614 | +extern struct psb_mmu_pd *psb_mmu_alloc_pd(struct psb_mmu_driver *driver, | ||
1615 | + int trap_pagefaults, | ||
1616 | + int invalid_type); | ||
1617 | +extern void psb_mmu_free_pagedir(struct psb_mmu_pd *pd); | ||
1618 | +extern void psb_mmu_flush(struct psb_mmu_driver *driver); | ||
1619 | +extern void psb_mmu_remove_pfn_sequence(struct psb_mmu_pd *pd, | ||
1620 | + unsigned long address, | ||
1621 | + uint32_t num_pages); | ||
1622 | +extern int psb_mmu_insert_pfn_sequence(struct psb_mmu_pd *pd, | ||
1623 | + uint32_t start_pfn, | ||
1624 | + unsigned long address, | ||
1625 | + uint32_t num_pages, int type); | ||
1626 | +extern int psb_mmu_virtual_to_pfn(struct psb_mmu_pd *pd, uint32_t virtual, | ||
1627 | + unsigned long *pfn); | ||
1628 | + | ||
1629 | +/* | ||
1630 | + * Enable / disable MMU for different requestors. | ||
1631 | + */ | ||
1632 | + | ||
1633 | +extern void psb_mmu_enable_requestor(struct psb_mmu_driver *driver, | ||
1634 | + uint32_t mask); | ||
1635 | +extern void psb_mmu_disable_requestor(struct psb_mmu_driver *driver, | ||
1636 | + uint32_t mask); | ||
1637 | +extern void psb_mmu_set_pd_context(struct psb_mmu_pd *pd, int hw_context); | ||
1638 | +extern int psb_mmu_insert_pages(struct psb_mmu_pd *pd, struct page **pages, | ||
1639 | + unsigned long address, uint32_t num_pages, | ||
1640 | + uint32_t desired_tile_stride, | ||
1641 | + uint32_t hw_tile_stride, int type); | ||
1642 | +extern void psb_mmu_remove_pages(struct psb_mmu_pd *pd, unsigned long address, | ||
1643 | + uint32_t num_pages, | ||
1644 | + uint32_t desired_tile_stride, | ||
1645 | + uint32_t hw_tile_stride); | ||
1646 | +/* | ||
1647 | + * psb_sgx.c | ||
1648 | + */ | ||
1649 | + | ||
1650 | +extern int psb_blit_sequence(struct drm_psb_private *dev_priv, | ||
1651 | + uint32_t sequence); | ||
1652 | +extern void psb_init_2d(struct drm_psb_private *dev_priv); | ||
1653 | +extern int drm_psb_idle(struct drm_device *dev); | ||
1654 | +extern int psb_emit_2d_copy_blit(struct drm_device *dev, | ||
1655 | + uint32_t src_offset, | ||
1656 | + uint32_t dst_offset, uint32_t pages, | ||
1657 | + int direction); | ||
1658 | +extern int psb_cmdbuf_ioctl(struct drm_device *dev, void *data, | ||
1659 | + struct drm_file *file_priv); | ||
1660 | +extern int psb_reg_submit(struct drm_psb_private *dev_priv, uint32_t * regs, | ||
1661 | + unsigned int cmds); | ||
1662 | +extern int psb_submit_copy_cmdbuf(struct drm_device *dev, | ||
1663 | + struct drm_buffer_object *cmd_buffer, | ||
1664 | + unsigned long cmd_offset, | ||
1665 | + unsigned long cmd_size, int engine, | ||
1666 | + uint32_t * copy_buffer); | ||
1667 | + | ||
1668 | +extern int psb_fence_for_errors(struct drm_file *priv, | ||
1669 | + struct drm_psb_cmdbuf_arg *arg, | ||
1670 | + struct drm_fence_arg *fence_arg, | ||
1671 | + struct drm_fence_object **fence_p); | ||
1672 | + | ||
1673 | +/* | ||
1674 | + * psb_irq.c | ||
1675 | + */ | ||
1676 | + | ||
1677 | +extern irqreturn_t psb_irq_handler(DRM_IRQ_ARGS); | ||
1678 | +extern void psb_irq_preinstall(struct drm_device *dev); | ||
1679 | +extern void psb_irq_postinstall(struct drm_device *dev); | ||
1680 | +extern void psb_irq_uninstall(struct drm_device *dev); | ||
1681 | +extern int psb_vblank_wait2(struct drm_device *dev, unsigned int *sequence); | ||
1682 | +extern int psb_vblank_wait(struct drm_device *dev, unsigned int *sequence); | ||
1683 | + | ||
1684 | +/* | ||
1685 | + * psb_fence.c | ||
1686 | + */ | ||
1687 | + | ||
1688 | +extern void psb_poke_flush(struct drm_device *dev, uint32_t class); | ||
1689 | +extern int psb_fence_emit_sequence(struct drm_device *dev, uint32_t class, | ||
1690 | + uint32_t flags, uint32_t * sequence, | ||
1691 | + uint32_t * native_type); | ||
1692 | +extern void psb_fence_handler(struct drm_device *dev, uint32_t class); | ||
1693 | +extern int psb_fence_has_irq(struct drm_device *dev, uint32_t class, | ||
1694 | + uint32_t flags); | ||
1695 | +extern void psb_2D_irq_off(struct drm_psb_private *dev_priv); | ||
1696 | +extern void psb_2D_irq_on(struct drm_psb_private *dev_priv); | ||
1697 | +extern uint32_t psb_fence_advance_sequence(struct drm_device *dev, | ||
1698 | + uint32_t class); | ||
1699 | +extern void psb_fence_error(struct drm_device *dev, | ||
1700 | + uint32_t class, | ||
1701 | + uint32_t sequence, uint32_t type, int error); | ||
1702 | + | ||
1703 | +/*MSVDX stuff*/ | ||
1704 | +extern void psb_msvdx_irq_off(struct drm_psb_private *dev_priv); | ||
1705 | +extern void psb_msvdx_irq_on(struct drm_psb_private *dev_priv); | ||
1706 | + | ||
1707 | +/* | ||
1708 | + * psb_buffer.c | ||
1709 | + */ | ||
1710 | +extern struct drm_ttm_backend *drm_psb_tbe_init(struct drm_device *dev); | ||
1711 | +extern int psb_fence_types(struct drm_buffer_object *bo, uint32_t * class, | ||
1712 | + uint32_t * type); | ||
1713 | +extern uint32_t psb_evict_mask(struct drm_buffer_object *bo); | ||
1714 | +extern int psb_invalidate_caches(struct drm_device *dev, uint64_t flags); | ||
1715 | +extern int psb_init_mem_type(struct drm_device *dev, uint32_t type, | ||
1716 | + struct drm_mem_type_manager *man); | ||
1717 | +extern int psb_move(struct drm_buffer_object *bo, | ||
1718 | + int evict, int no_wait, struct drm_bo_mem_reg *new_mem); | ||
1719 | + | ||
1720 | +/* | ||
1721 | + * psb_gtt.c | ||
1722 | + */ | ||
1723 | +extern int psb_gtt_init(struct psb_gtt *pg, int resume); | ||
1724 | +extern int psb_gtt_insert_pages(struct psb_gtt *pg, struct page **pages, | ||
1725 | + unsigned offset_pages, unsigned num_pages, | ||
1726 | + unsigned desired_tile_stride, | ||
1727 | + unsigned hw_tile_stride, int type); | ||
1728 | +extern int psb_gtt_remove_pages(struct psb_gtt *pg, unsigned offset_pages, | ||
1729 | + unsigned num_pages, | ||
1730 | + unsigned desired_tile_stride, | ||
1731 | + unsigned hw_tile_stride); | ||
1732 | + | ||
1733 | +extern struct psb_gtt *psb_gtt_alloc(struct drm_device *dev); | ||
1734 | +extern void psb_gtt_takedown(struct psb_gtt *pg, int free); | ||
1735 | + | ||
1736 | +/* | ||
1737 | + * psb_fb.c | ||
1738 | + */ | ||
1739 | +extern int psbfb_probe(struct drm_device *dev, struct drm_crtc *crtc); | ||
1740 | +extern int psbfb_remove(struct drm_device *dev, struct drm_crtc *crtc); | ||
1741 | +extern int psbfb_kms_off_ioctl(struct drm_device *dev, void *data, | ||
1742 | + struct drm_file *file_priv); | ||
1743 | +extern int psbfb_kms_on_ioctl(struct drm_device *dev, void *data, | ||
1744 | + struct drm_file *file_priv); | ||
1745 | + | ||
1746 | +/* | ||
1747 | + * psb_reset.c | ||
1748 | + */ | ||
1749 | + | ||
1750 | +extern void psb_reset(struct drm_psb_private *dev_priv, int reset_2d); | ||
1751 | +extern void psb_schedule_watchdog(struct drm_psb_private *dev_priv); | ||
1752 | +extern void psb_watchdog_init(struct drm_psb_private *dev_priv); | ||
1753 | +extern void psb_watchdog_takedown(struct drm_psb_private *dev_priv); | ||
1754 | + | ||
1755 | +/* | ||
1756 | + * psb_regman.c | ||
1757 | + */ | ||
1758 | + | ||
1759 | +extern void psb_takedown_use_base(struct drm_psb_private *dev_priv); | ||
1760 | +extern int psb_grab_use_base(struct drm_psb_private *dev_priv, | ||
1761 | + unsigned long dev_virtual, | ||
1762 | + unsigned long size, | ||
1763 | + unsigned int data_master, | ||
1764 | + uint32_t fence_class, | ||
1765 | + uint32_t fence_type, | ||
1766 | + int no_wait, | ||
1767 | + int ignore_signals, | ||
1768 | + int *r_reg, uint32_t * r_offset); | ||
1769 | +extern int psb_init_use_base(struct drm_psb_private *dev_priv, | ||
1770 | + unsigned int reg_start, unsigned int reg_num); | ||
1771 | + | ||
1772 | +/* | ||
1773 | + * psb_xhw.c | ||
1774 | + */ | ||
1775 | + | ||
1776 | +extern int psb_xhw_ioctl(struct drm_device *dev, void *data, | ||
1777 | + struct drm_file *file_priv); | ||
1778 | +extern int psb_xhw_init_ioctl(struct drm_device *dev, void *data, | ||
1779 | + struct drm_file *file_priv); | ||
1780 | +extern int psb_xhw_init(struct drm_device *dev); | ||
1781 | +extern void psb_xhw_takedown(struct drm_psb_private *dev_priv); | ||
1782 | +extern void psb_xhw_init_takedown(struct drm_psb_private *dev_priv, | ||
1783 | + struct drm_file *file_priv, int closing); | ||
1784 | +extern int psb_xhw_scene_bind_fire(struct drm_psb_private *dev_priv, | ||
1785 | + struct psb_xhw_buf *buf, | ||
1786 | + uint32_t fire_flags, | ||
1787 | + uint32_t hw_context, | ||
1788 | + uint32_t * cookie, | ||
1789 | + uint32_t * oom_cmds, | ||
1790 | + uint32_t num_oom_cmds, | ||
1791 | + uint32_t offset, | ||
1792 | + uint32_t engine, uint32_t flags); | ||
1793 | +extern int psb_xhw_fire_raster(struct drm_psb_private *dev_priv, | ||
1794 | + struct psb_xhw_buf *buf, uint32_t fire_flags); | ||
1795 | +extern int psb_xhw_scene_info(struct drm_psb_private *dev_priv, | ||
1796 | + struct psb_xhw_buf *buf, | ||
1797 | + uint32_t w, | ||
1798 | + uint32_t h, | ||
1799 | + uint32_t * hw_cookie, | ||
1800 | + uint32_t * bo_size, | ||
1801 | + uint32_t * clear_p_start, | ||
1802 | + uint32_t * clear_num_pages); | ||
1803 | + | ||
1804 | +extern int psb_xhw_reset_dpm(struct drm_psb_private *dev_priv, | ||
1805 | + struct psb_xhw_buf *buf); | ||
1806 | +extern int psb_xhw_ta_mem_info(struct drm_psb_private *dev_priv, | ||
1807 | + struct psb_xhw_buf *buf, | ||
1808 | + uint32_t pages, | ||
1809 | + uint32_t * hw_cookie, uint32_t * size); | ||
1810 | +extern int psb_xhw_ta_oom(struct drm_psb_private *dev_priv, | ||
1811 | + struct psb_xhw_buf *buf, uint32_t * cookie); | ||
1812 | +extern void psb_xhw_ta_oom_reply(struct drm_psb_private *dev_priv, | ||
1813 | + struct psb_xhw_buf *buf, | ||
1814 | + uint32_t * cookie, | ||
1815 | + uint32_t * bca, | ||
1816 | + uint32_t * rca, uint32_t * flags); | ||
1817 | +extern int psb_xhw_vistest(struct drm_psb_private *dev_priv, | ||
1818 | + struct psb_xhw_buf *buf); | ||
1819 | +extern int psb_xhw_handler(struct drm_psb_private *dev_priv); | ||
1820 | +extern int psb_xhw_resume(struct drm_psb_private *dev_priv, | ||
1821 | + struct psb_xhw_buf *buf); | ||
1822 | +extern void psb_xhw_fire_reply(struct drm_psb_private *dev_priv, | ||
1823 | + struct psb_xhw_buf *buf, uint32_t * cookie); | ||
1824 | +extern int psb_xhw_ta_mem_load(struct drm_psb_private *dev_priv, | ||
1825 | + struct psb_xhw_buf *buf, | ||
1826 | + uint32_t flags, | ||
1827 | + uint32_t param_offset, | ||
1828 | + uint32_t pt_offset, | ||
1829 | + uint32_t *hw_cookie); | ||
1830 | +extern void psb_xhw_clean_buf(struct drm_psb_private *dev_priv, | ||
1831 | + struct psb_xhw_buf *buf); | ||
1832 | + | ||
1833 | +/* | ||
1834 | + * Utilities | ||
1835 | + */ | ||
1836 | + | ||
1837 | +#define PSB_ALIGN_TO(_val, _align) \ | ||
1838 | + (((_val) + ((_align) - 1)) & ~((_align) - 1)) | ||
1839 | +#define PSB_WVDC32(_val, _offs) \ | ||
1840 | + iowrite32(_val, dev_priv->vdc_reg + (_offs)) | ||
1841 | +#define PSB_RVDC32(_offs) \ | ||
1842 | + ioread32(dev_priv->vdc_reg + (_offs)) | ||
1843 | +#define PSB_WSGX32(_val, _offs) \ | ||
1844 | + iowrite32(_val, dev_priv->sgx_reg + (_offs)) | ||
1845 | +#define PSB_RSGX32(_offs) \ | ||
1846 | + ioread32(dev_priv->sgx_reg + (_offs)) | ||
1847 | +#define PSB_WMSVDX32(_val, _offs) \ | ||
1848 | + iowrite32(_val, dev_priv->msvdx_reg + (_offs)) | ||
1849 | +#define PSB_RMSVDX32(_offs) \ | ||
1850 | + ioread32(dev_priv->msvdx_reg + (_offs)) | ||
1851 | + | ||
1852 | +#define PSB_ALPL(_val, _base) \ | ||
1853 | + (((_val) >> (_base ## _ALIGNSHIFT)) << (_base ## _SHIFT)) | ||
1854 | +#define PSB_ALPLM(_val, _base) \ | ||
1855 | + ((((_val) >> (_base ## _ALIGNSHIFT)) << (_base ## _SHIFT)) & (_base ## _MASK)) | ||
1856 | + | ||
1857 | +static inline psb_fixed psb_mul_fixed(psb_fixed a, psb_fixed b) | ||
1858 | +{ | ||
1859 | + s64 tmp; | ||
1860 | + s64 a64 = (s64) a; | ||
1861 | + s64 b64 = (s64) b; | ||
1862 | + | ||
1863 | + tmp = a64 * b64; | ||
1864 | + return tmp / (1ULL << PSB_FIXED_SHIFT) + | ||
1865 | + ((tmp & 0x80000000ULL) ? 1 : 0); | ||
1866 | +} | ||
1867 | + | ||
1868 | +static inline psb_fixed psb_mul_ufixed(psb_ufixed a, psb_fixed b) | ||
1869 | +{ | ||
1870 | + u64 tmp; | ||
1871 | + u64 a64 = (u64) a; | ||
1872 | + u64 b64 = (u64) b; | ||
1873 | + | ||
1874 | + tmp = a64 * b64; | ||
1875 | + return (tmp >> PSB_FIXED_SHIFT) + ((tmp & 0x80000000ULL) ? 1 : 0); | ||
1876 | +} | ||
1877 | + | ||
1878 | +static inline uint32_t psb_ufixed_to_float32(psb_ufixed a) | ||
1879 | +{ | ||
1880 | + uint32_t exp = 0x7f + 7; | ||
1881 | + uint32_t mantissa = (uint32_t) a; | ||
1882 | + | ||
1883 | + if (a == 0) | ||
1884 | + return 0; | ||
1885 | + while ((mantissa & 0xff800000) == 0) { | ||
1886 | + exp -= 1; | ||
1887 | + mantissa <<= 1; | ||
1888 | + } | ||
1889 | + while ((mantissa & 0xff800000) > 0x00800000) { | ||
1890 | + exp += 1; | ||
1891 | + mantissa >>= 1; | ||
1892 | + } | ||
1893 | + return (mantissa & ~0xff800000) | (exp << 23); | ||
1894 | +} | ||
1895 | + | ||
1896 | +static inline uint32_t psb_fixed_to_float32(psb_fixed a) | ||
1897 | +{ | ||
1898 | + if (a < 0) | ||
1899 | + return psb_ufixed_to_float32(-a) | 0x80000000; | ||
1900 | + else | ||
1901 | + return psb_ufixed_to_float32(a); | ||
1902 | +} | ||
1903 | + | ||
1904 | +#define PSB_D_RENDER (1 << 16) | ||
1905 | + | ||
1906 | +#define PSB_D_GENERAL (1 << 0) | ||
1907 | +#define PSB_D_INIT (1 << 1) | ||
1908 | +#define PSB_D_IRQ (1 << 2) | ||
1909 | +#define PSB_D_FW (1 << 3) | ||
1910 | +#define PSB_D_PERF (1 << 4) | ||
1911 | +#define PSB_D_TMP (1 << 5) | ||
1912 | + | ||
1913 | +extern int drm_psb_debug; | ||
1914 | +extern int drm_psb_no_fb; | ||
1915 | +extern int drm_psb_disable_vsync; | ||
1916 | + | ||
1917 | +#define PSB_DEBUG_FW(_fmt, _arg...) \ | ||
1918 | + PSB_DEBUG(PSB_D_FW, _fmt, ##_arg) | ||
1919 | +#define PSB_DEBUG_GENERAL(_fmt, _arg...) \ | ||
1920 | + PSB_DEBUG(PSB_D_GENERAL, _fmt, ##_arg) | ||
1921 | +#define PSB_DEBUG_INIT(_fmt, _arg...) \ | ||
1922 | + PSB_DEBUG(PSB_D_INIT, _fmt, ##_arg) | ||
1923 | +#define PSB_DEBUG_IRQ(_fmt, _arg...) \ | ||
1924 | + PSB_DEBUG(PSB_D_IRQ, _fmt, ##_arg) | ||
1925 | +#define PSB_DEBUG_RENDER(_fmt, _arg...) \ | ||
1926 | + PSB_DEBUG(PSB_D_RENDER, _fmt, ##_arg) | ||
1927 | +#define PSB_DEBUG_PERF(_fmt, _arg...) \ | ||
1928 | + PSB_DEBUG(PSB_D_PERF, _fmt, ##_arg) | ||
1929 | +#define PSB_DEBUG_TMP(_fmt, _arg...) \ | ||
1930 | + PSB_DEBUG(PSB_D_TMP, _fmt, ##_arg) | ||
1931 | + | ||
1932 | +#if DRM_DEBUG_CODE | ||
1933 | +#define PSB_DEBUG(_flag, _fmt, _arg...) \ | ||
1934 | + do { \ | ||
1935 | + if ((_flag) & drm_psb_debug) \ | ||
1936 | + printk(KERN_DEBUG \ | ||
1937 | + "[psb:0x%02x:%s] " _fmt , _flag, \ | ||
1938 | + __FUNCTION__ , ##_arg); \ | ||
1939 | + } while (0) | ||
1940 | +#else | ||
1941 | +#define PSB_DEBUG(_fmt, _arg...) do { } while (0) | ||
1942 | +#endif | ||
1943 | + | ||
1944 | +#endif | ||
1945 | Index: libdrm-2.4.4/shared-core/psb_reg.h | ||
1946 | =================================================================== | ||
1947 | --- /dev/null 1970-01-01 00:00:00.000000000 +0000 | ||
1948 | +++ libdrm-2.4.4/shared-core/psb_reg.h 2009-02-04 16:39:55.000000000 +0000 | ||
1949 | @@ -0,0 +1,555 @@ | ||
1950 | +/************************************************************************** | ||
1951 | + * | ||
1952 | + * Copyright (c) (2005-2007) Imagination Technologies Limited. | ||
1953 | + * Copyright (c) 2007, Intel Corporation. | ||
1954 | + * All Rights Reserved. | ||
1955 | + * | ||
1956 | + * This program is free software; you can redistribute it and/or modify it | ||
1957 | + * under the terms and conditions of the GNU General Public License, | ||
1958 | + * version 2, as published by the Free Software Foundation. | ||
1959 | + * | ||
1960 | + * This program is distributed in the hope it will be useful, but WITHOUT | ||
1961 | + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
1962 | + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
1963 | + * more details. | ||
1964 | + * | ||
1965 | + * You should have received a copy of the GNU General Public License along with | ||
1966 | + * this program; if not, write to the Free Software Foundation, Inc., | ||
1967 | + * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. | ||
1968 | + * | ||
1969 | + * Intel funded Tungsten Graphics (http://www.tungstengraphics.com) to | ||
1970 | + * develop this driver. | ||
1971 | + * | ||
1972 | + **************************************************************************/ | ||
1973 | +/* | ||
1974 | + */ | ||
1975 | +#ifndef _PSB_REG_H_ | ||
1976 | +#define _PSB_REG_H_ | ||
1977 | + | ||
1978 | +#define PSB_CR_CLKGATECTL 0x0000 | ||
1979 | +#define _PSB_C_CLKGATECTL_AUTO_MAN_REG (1 << 24) | ||
1980 | +#define _PSB_C_CLKGATECTL_USE_CLKG_SHIFT (20) | ||
1981 | +#define _PSB_C_CLKGATECTL_USE_CLKG_MASK (0x3 << 20) | ||
1982 | +#define _PSB_C_CLKGATECTL_DPM_CLKG_SHIFT (16) | ||
1983 | +#define _PSB_C_CLKGATECTL_DPM_CLKG_MASK (0x3 << 16) | ||
1984 | +#define _PSB_C_CLKGATECTL_TA_CLKG_SHIFT (12) | ||
1985 | +#define _PSB_C_CLKGATECTL_TA_CLKG_MASK (0x3 << 12) | ||
1986 | +#define _PSB_C_CLKGATECTL_TSP_CLKG_SHIFT (8) | ||
1987 | +#define _PSB_C_CLKGATECTL_TSP_CLKG_MASK (0x3 << 8) | ||
1988 | +#define _PSB_C_CLKGATECTL_ISP_CLKG_SHIFT (4) | ||
1989 | +#define _PSB_C_CLKGATECTL_ISP_CLKG_MASK (0x3 << 4) | ||
1990 | +#define _PSB_C_CLKGATECTL_2D_CLKG_SHIFT (0) | ||
1991 | +#define _PSB_C_CLKGATECTL_2D_CLKG_MASK (0x3 << 0) | ||
1992 | +#define _PSB_C_CLKGATECTL_CLKG_ENABLED (0) | ||
1993 | +#define _PSB_C_CLKGATECTL_CLKG_DISABLED (1) | ||
1994 | +#define _PSB_C_CLKGATECTL_CLKG_AUTO (2) | ||
1995 | + | ||
1996 | +#define PSB_CR_CORE_ID 0x0010 | ||
1997 | +#define _PSB_CC_ID_ID_SHIFT (16) | ||
1998 | +#define _PSB_CC_ID_ID_MASK (0xFFFF << 16) | ||
1999 | +#define _PSB_CC_ID_CONFIG_SHIFT (0) | ||
2000 | +#define _PSB_CC_ID_CONFIG_MASK (0xFFFF << 0) | ||
2001 | + | ||
2002 | +#define PSB_CR_CORE_REVISION 0x0014 | ||
2003 | +#define _PSB_CC_REVISION_DESIGNER_SHIFT (24) | ||
2004 | +#define _PSB_CC_REVISION_DESIGNER_MASK (0xFF << 24) | ||
2005 | +#define _PSB_CC_REVISION_MAJOR_SHIFT (16) | ||
2006 | +#define _PSB_CC_REVISION_MAJOR_MASK (0xFF << 16) | ||
2007 | +#define _PSB_CC_REVISION_MINOR_SHIFT (8) | ||
2008 | +#define _PSB_CC_REVISION_MINOR_MASK (0xFF << 8) | ||
2009 | +#define _PSB_CC_REVISION_MAINTENANCE_SHIFT (0) | ||
2010 | +#define _PSB_CC_REVISION_MAINTENANCE_MASK (0xFF << 0) | ||
2011 | + | ||
2012 | +#define PSB_CR_DESIGNER_REV_FIELD1 0x0018 | ||
2013 | + | ||
2014 | +#define PSB_CR_SOFT_RESET 0x0080 | ||
2015 | +#define _PSB_CS_RESET_TSP_RESET (1 << 6) | ||
2016 | +#define _PSB_CS_RESET_ISP_RESET (1 << 5) | ||
2017 | +#define _PSB_CS_RESET_USE_RESET (1 << 4) | ||
2018 | +#define _PSB_CS_RESET_TA_RESET (1 << 3) | ||
2019 | +#define _PSB_CS_RESET_DPM_RESET (1 << 2) | ||
2020 | +#define _PSB_CS_RESET_TWOD_RESET (1 << 1) | ||
2021 | +#define _PSB_CS_RESET_BIF_RESET (1 << 0) | ||
2022 | + | ||
2023 | +#define PSB_CR_DESIGNER_REV_FIELD2 0x001C | ||
2024 | + | ||
2025 | +#define PSB_CR_EVENT_STATUS 0x012C | ||
2026 | + | ||
2027 | +#define PSB_CR_EVENT_HOST_ENABLE 0x0130 | ||
2028 | + | ||
2029 | +#define PSB_CR_EVENT_HOST_CLEAR 0x0134 | ||
2030 | +#define _PSB_CE_MASTER_INTERRUPT (1 << 31) | ||
2031 | +#define _PSB_CE_TA_DPM_FAULT (1 << 28) | ||
2032 | +#define _PSB_CE_TWOD_COMPLETE (1 << 27) | ||
2033 | +#define _PSB_CE_DPM_OUT_OF_MEMORY_ZLS (1 << 25) | ||
2034 | +#define _PSB_CE_DPM_TA_MEM_FREE (1 << 24) | ||
2035 | +#define _PSB_CE_PIXELBE_END_RENDER (1 << 18) | ||
2036 | +#define _PSB_CE_SW_EVENT (1 << 14) | ||
2037 | +#define _PSB_CE_TA_FINISHED (1 << 13) | ||
2038 | +#define _PSB_CE_TA_TERMINATE (1 << 12) | ||
2039 | +#define _PSB_CE_DPM_REACHED_MEM_THRESH (1 << 3) | ||
2040 | +#define _PSB_CE_DPM_OUT_OF_MEMORY_GBL (1 << 2) | ||
2041 | +#define _PSB_CE_DPM_OUT_OF_MEMORY_MT (1 << 1) | ||
2042 | +#define _PSB_CE_DPM_3D_MEM_FREE (1 << 0) | ||
2043 | + | ||
2044 | + | ||
2045 | +#define PSB_USE_OFFSET_MASK 0x0007FFFF | ||
2046 | +#define PSB_USE_OFFSET_SIZE (PSB_USE_OFFSET_MASK + 1) | ||
2047 | +#define PSB_CR_USE_CODE_BASE0 0x0A0C | ||
2048 | +#define PSB_CR_USE_CODE_BASE1 0x0A10 | ||
2049 | +#define PSB_CR_USE_CODE_BASE2 0x0A14 | ||
2050 | +#define PSB_CR_USE_CODE_BASE3 0x0A18 | ||
2051 | +#define PSB_CR_USE_CODE_BASE4 0x0A1C | ||
2052 | +#define PSB_CR_USE_CODE_BASE5 0x0A20 | ||
2053 | +#define PSB_CR_USE_CODE_BASE6 0x0A24 | ||
2054 | +#define PSB_CR_USE_CODE_BASE7 0x0A28 | ||
2055 | +#define PSB_CR_USE_CODE_BASE8 0x0A2C | ||
2056 | +#define PSB_CR_USE_CODE_BASE9 0x0A30 | ||
2057 | +#define PSB_CR_USE_CODE_BASE10 0x0A34 | ||
2058 | +#define PSB_CR_USE_CODE_BASE11 0x0A38 | ||
2059 | +#define PSB_CR_USE_CODE_BASE12 0x0A3C | ||
2060 | +#define PSB_CR_USE_CODE_BASE13 0x0A40 | ||
2061 | +#define PSB_CR_USE_CODE_BASE14 0x0A44 | ||
2062 | +#define PSB_CR_USE_CODE_BASE15 0x0A48 | ||
2063 | +#define PSB_CR_USE_CODE_BASE(_i) (0x0A0C + ((_i) << 2)) | ||
2064 | +#define _PSB_CUC_BASE_DM_SHIFT (25) | ||
2065 | +#define _PSB_CUC_BASE_DM_MASK (0x3 << 25) | ||
2066 | +#define _PSB_CUC_BASE_ADDR_SHIFT (0) // 1024-bit aligned address? | ||
2067 | +#define _PSB_CUC_BASE_ADDR_ALIGNSHIFT (7) | ||
2068 | +#define _PSB_CUC_BASE_ADDR_MASK (0x1FFFFFF << 0) | ||
2069 | +#define _PSB_CUC_DM_VERTEX (0) | ||
2070 | +#define _PSB_CUC_DM_PIXEL (1) | ||
2071 | +#define _PSB_CUC_DM_RESERVED (2) | ||
2072 | +#define _PSB_CUC_DM_EDM (3) | ||
2073 | + | ||
2074 | +#define PSB_CR_PDS_EXEC_BASE 0x0AB8 | ||
2075 | +#define _PSB_CR_PDS_EXEC_BASE_ADDR_SHIFT (20) // 1MB aligned address | ||
2076 | +#define _PSB_CR_PDS_EXEC_BASE_ADDR_ALIGNSHIFT (20) | ||
2077 | + | ||
2078 | +#define PSB_CR_EVENT_KICKER 0x0AC4 | ||
2079 | +#define _PSB_CE_KICKER_ADDRESS_SHIFT (4) // 128-bit aligned address | ||
2080 | + | ||
2081 | +#define PSB_CR_EVENT_KICK 0x0AC8 | ||
2082 | +#define _PSB_CE_KICK_NOW (1 << 0) | ||
2083 | + | ||
2084 | + | ||
2085 | +#define PSB_CR_BIF_DIR_LIST_BASE1 0x0C38 | ||
2086 | + | ||
2087 | +#define PSB_CR_BIF_CTRL 0x0C00 | ||
2088 | +#define _PSB_CB_CTRL_CLEAR_FAULT (1 << 4) | ||
2089 | +#define _PSB_CB_CTRL_INVALDC (1 << 3) | ||
2090 | +#define _PSB_CB_CTRL_FLUSH (1 << 2) | ||
2091 | + | ||
2092 | +#define PSB_CR_BIF_INT_STAT 0x0C04 | ||
2093 | + | ||
2094 | +#define PSB_CR_BIF_FAULT 0x0C08 | ||
2095 | +#define _PSB_CBI_STAT_PF_N_RW (1 << 14) | ||
2096 | +#define _PSB_CBI_STAT_FAULT_SHIFT (0) | ||
2097 | +#define _PSB_CBI_STAT_FAULT_MASK (0x3FFF << 0) | ||
2098 | +#define _PSB_CBI_STAT_FAULT_CACHE (1 << 1) | ||
2099 | +#define _PSB_CBI_STAT_FAULT_TA (1 << 2) | ||
2100 | +#define _PSB_CBI_STAT_FAULT_VDM (1 << 3) | ||
2101 | +#define _PSB_CBI_STAT_FAULT_2D (1 << 4) | ||
2102 | +#define _PSB_CBI_STAT_FAULT_PBE (1 << 5) | ||
2103 | +#define _PSB_CBI_STAT_FAULT_TSP (1 << 6) | ||
2104 | +#define _PSB_CBI_STAT_FAULT_ISP (1 << 7) | ||
2105 | +#define _PSB_CBI_STAT_FAULT_USSEPDS (1 << 8) | ||
2106 | +#define _PSB_CBI_STAT_FAULT_HOST (1 << 9) | ||
2107 | + | ||
2108 | +#define PSB_CR_BIF_BANK0 0x0C78 | ||
2109 | + | ||
2110 | +#define PSB_CR_BIF_BANK1 0x0C7C | ||
2111 | + | ||
2112 | +#define PSB_CR_BIF_DIR_LIST_BASE0 0x0C84 | ||
2113 | + | ||
2114 | +#define PSB_CR_BIF_TWOD_REQ_BASE 0x0C88 | ||
2115 | +#define PSB_CR_BIF_3D_REQ_BASE 0x0CAC | ||
2116 | + | ||
2117 | +#define PSB_CR_2D_SOCIF 0x0E18 | ||
2118 | +#define _PSB_C2_SOCIF_FREESPACE_SHIFT (0) | ||
2119 | +#define _PSB_C2_SOCIF_FREESPACE_MASK (0xFF << 0) | ||
2120 | +#define _PSB_C2_SOCIF_EMPTY (0x80 << 0) | ||
2121 | + | ||
2122 | +#define PSB_CR_2D_BLIT_STATUS 0x0E04 | ||
2123 | +#define _PSB_C2B_STATUS_BUSY (1 << 24) | ||
2124 | +#define _PSB_C2B_STATUS_COMPLETE_SHIFT (0) | ||
2125 | +#define _PSB_C2B_STATUS_COMPLETE_MASK (0xFFFFFF << 0) | ||
2126 | + | ||
2127 | +/* | ||
2128 | + * 2D defs. | ||
2129 | + */ | ||
2130 | + | ||
2131 | +/* | ||
2132 | + * 2D Slave Port Data : Block Header's Object Type | ||
2133 | + */ | ||
2134 | + | ||
2135 | +#define PSB_2D_CLIP_BH (0x00000000) | ||
2136 | +#define PSB_2D_PAT_BH (0x10000000) | ||
2137 | +#define PSB_2D_CTRL_BH (0x20000000) | ||
2138 | +#define PSB_2D_SRC_OFF_BH (0x30000000) | ||
2139 | +#define PSB_2D_MASK_OFF_BH (0x40000000) | ||
2140 | +#define PSB_2D_RESERVED1_BH (0x50000000) | ||
2141 | +#define PSB_2D_RESERVED2_BH (0x60000000) | ||
2142 | +#define PSB_2D_FENCE_BH (0x70000000) | ||
2143 | +#define PSB_2D_BLIT_BH (0x80000000) | ||
2144 | +#define PSB_2D_SRC_SURF_BH (0x90000000) | ||
2145 | +#define PSB_2D_DST_SURF_BH (0xA0000000) | ||
2146 | +#define PSB_2D_PAT_SURF_BH (0xB0000000) | ||
2147 | +#define PSB_2D_SRC_PAL_BH (0xC0000000) | ||
2148 | +#define PSB_2D_PAT_PAL_BH (0xD0000000) | ||
2149 | +#define PSB_2D_MASK_SURF_BH (0xE0000000) | ||
2150 | +#define PSB_2D_FLUSH_BH (0xF0000000) | ||
2151 | + | ||
2152 | +/* | ||
2153 | + * Clip Definition block (PSB_2D_CLIP_BH) | ||
2154 | + */ | ||
2155 | +#define PSB_2D_CLIPCOUNT_MAX (1) | ||
2156 | +#define PSB_2D_CLIPCOUNT_MASK (0x00000000) | ||
2157 | +#define PSB_2D_CLIPCOUNT_CLRMASK (0xFFFFFFFF) | ||
2158 | +#define PSB_2D_CLIPCOUNT_SHIFT (0) | ||
2159 | +// clip rectangle min & max | ||
2160 | +#define PSB_2D_CLIP_XMAX_MASK (0x00FFF000) | ||
2161 | +#define PSB_2D_CLIP_XMAX_CLRMASK (0xFF000FFF) | ||
2162 | +#define PSB_2D_CLIP_XMAX_SHIFT (12) | ||
2163 | +#define PSB_2D_CLIP_XMIN_MASK (0x00000FFF) | ||
2164 | +#define PSB_2D_CLIP_XMIN_CLRMASK (0x00FFF000) | ||
2165 | +#define PSB_2D_CLIP_XMIN_SHIFT (0) | ||
2166 | +// clip rectangle offset | ||
2167 | +#define PSB_2D_CLIP_YMAX_MASK (0x00FFF000) | ||
2168 | +#define PSB_2D_CLIP_YMAX_CLRMASK (0xFF000FFF) | ||
2169 | +#define PSB_2D_CLIP_YMAX_SHIFT (12) | ||
2170 | +#define PSB_2D_CLIP_YMIN_MASK (0x00000FFF) | ||
2171 | +#define PSB_2D_CLIP_YMIN_CLRMASK (0x00FFF000) | ||
2172 | +#define PSB_2D_CLIP_YMIN_SHIFT (0) | ||
2173 | + | ||
2174 | +/* | ||
2175 | + * Pattern Control (PSB_2D_PAT_BH) | ||
2176 | + */ | ||
2177 | +#define PSB_2D_PAT_HEIGHT_MASK (0x0000001F) | ||
2178 | +#define PSB_2D_PAT_HEIGHT_SHIFT (0) | ||
2179 | +#define PSB_2D_PAT_WIDTH_MASK (0x000003E0) | ||
2180 | +#define PSB_2D_PAT_WIDTH_SHIFT (5) | ||
2181 | +#define PSB_2D_PAT_YSTART_MASK (0x00007C00) | ||
2182 | +#define PSB_2D_PAT_YSTART_SHIFT (10) | ||
2183 | +#define PSB_2D_PAT_XSTART_MASK (0x000F8000) | ||
2184 | +#define PSB_2D_PAT_XSTART_SHIFT (15) | ||
2185 | + | ||
2186 | +/* | ||
2187 | + * 2D Control block (PSB_2D_CTRL_BH) | ||
2188 | + */ | ||
2189 | +// Present Flags | ||
2190 | +#define PSB_2D_SRCCK_CTRL (0x00000001) | ||
2191 | +#define PSB_2D_DSTCK_CTRL (0x00000002) | ||
2192 | +#define PSB_2D_ALPHA_CTRL (0x00000004) | ||
2193 | +// Colour Key Colour (SRC/DST) | ||
2194 | +#define PSB_2D_CK_COL_MASK (0xFFFFFFFF) | ||
2195 | +#define PSB_2D_CK_COL_CLRMASK (0x00000000) | ||
2196 | +#define PSB_2D_CK_COL_SHIFT (0) | ||
2197 | +// Colour Key Mask (SRC/DST) | ||
2198 | +#define PSB_2D_CK_MASK_MASK (0xFFFFFFFF) | ||
2199 | +#define PSB_2D_CK_MASK_CLRMASK (0x00000000) | ||
2200 | +#define PSB_2D_CK_MASK_SHIFT (0) | ||
2201 | +// Alpha Control (Alpha/RGB) | ||
2202 | +#define PSB_2D_GBLALPHA_MASK (0x000FF000) | ||
2203 | +#define PSB_2D_GBLALPHA_CLRMASK (0xFFF00FFF) | ||
2204 | +#define PSB_2D_GBLALPHA_SHIFT (12) | ||
2205 | +#define PSB_2D_SRCALPHA_OP_MASK (0x00700000) | ||
2206 | +#define PSB_2D_SRCALPHA_OP_CLRMASK (0xFF8FFFFF) | ||
2207 | +#define PSB_2D_SRCALPHA_OP_SHIFT (20) | ||
2208 | +#define PSB_2D_SRCALPHA_OP_ONE (0x00000000) | ||
2209 | +#define PSB_2D_SRCALPHA_OP_SRC (0x00100000) | ||
2210 | +#define PSB_2D_SRCALPHA_OP_DST (0x00200000) | ||
2211 | +#define PSB_2D_SRCALPHA_OP_SG (0x00300000) | ||
2212 | +#define PSB_2D_SRCALPHA_OP_DG (0x00400000) | ||
2213 | +#define PSB_2D_SRCALPHA_OP_GBL (0x00500000) | ||
2214 | +#define PSB_2D_SRCALPHA_OP_ZERO (0x00600000) | ||
2215 | +#define PSB_2D_SRCALPHA_INVERT (0x00800000) | ||
2216 | +#define PSB_2D_SRCALPHA_INVERT_CLR (0xFF7FFFFF) | ||
2217 | +#define PSB_2D_DSTALPHA_OP_MASK (0x07000000) | ||
2218 | +#define PSB_2D_DSTALPHA_OP_CLRMASK (0xF8FFFFFF) | ||
2219 | +#define PSB_2D_DSTALPHA_OP_SHIFT (24) | ||
2220 | +#define PSB_2D_DSTALPHA_OP_ONE (0x00000000) | ||
2221 | +#define PSB_2D_DSTALPHA_OP_SRC (0x01000000) | ||
2222 | +#define PSB_2D_DSTALPHA_OP_DST (0x02000000) | ||
2223 | +#define PSB_2D_DSTALPHA_OP_SG (0x03000000) | ||
2224 | +#define PSB_2D_DSTALPHA_OP_DG (0x04000000) | ||
2225 | +#define PSB_2D_DSTALPHA_OP_GBL (0x05000000) | ||
2226 | +#define PSB_2D_DSTALPHA_OP_ZERO (0x06000000) | ||
2227 | +#define PSB_2D_DSTALPHA_INVERT (0x08000000) | ||
2228 | +#define PSB_2D_DSTALPHA_INVERT_CLR (0xF7FFFFFF) | ||
2229 | + | ||
2230 | +#define PSB_2D_PRE_MULTIPLICATION_ENABLE (0x10000000) | ||
2231 | +#define PSB_2D_PRE_MULTIPLICATION_CLRMASK (0xEFFFFFFF) | ||
2232 | +#define PSB_2D_ZERO_SOURCE_ALPHA_ENABLE (0x20000000) | ||
2233 | +#define PSB_2D_ZERO_SOURCE_ALPHA_CLRMASK (0xDFFFFFFF) | ||
2234 | + | ||
2235 | +/* | ||
2236 | + *Source Offset (PSB_2D_SRC_OFF_BH) | ||
2237 | + */ | ||
2238 | +#define PSB_2D_SRCOFF_XSTART_MASK ((0x00000FFF) << 12) | ||
2239 | +#define PSB_2D_SRCOFF_XSTART_SHIFT (12) | ||
2240 | +#define PSB_2D_SRCOFF_YSTART_MASK (0x00000FFF) | ||
2241 | +#define PSB_2D_SRCOFF_YSTART_SHIFT (0) | ||
2242 | + | ||
2243 | +/* | ||
2244 | + * Mask Offset (PSB_2D_MASK_OFF_BH) | ||
2245 | + */ | ||
2246 | +#define PSB_2D_MASKOFF_XSTART_MASK ((0x00000FFF) << 12) | ||
2247 | +#define PSB_2D_MASKOFF_XSTART_SHIFT (12) | ||
2248 | +#define PSB_2D_MASKOFF_YSTART_MASK (0x00000FFF) | ||
2249 | +#define PSB_2D_MASKOFF_YSTART_SHIFT (0) | ||
2250 | + | ||
2251 | +/* | ||
2252 | + * 2D Fence (see PSB_2D_FENCE_BH): bits 0:27 are ignored | ||
2253 | + */ | ||
2254 | + | ||
2255 | +/* | ||
2256 | + *Blit Rectangle (PSB_2D_BLIT_BH) | ||
2257 | + */ | ||
2258 | + | ||
2259 | +#define PSB_2D_ROT_MASK (3<<25) | ||
2260 | +#define PSB_2D_ROT_CLRMASK (~PSB_2D_ROT_MASK) | ||
2261 | +#define PSB_2D_ROT_NONE (0<<25) | ||
2262 | +#define PSB_2D_ROT_90DEGS (1<<25) | ||
2263 | +#define PSB_2D_ROT_180DEGS (2<<25) | ||
2264 | +#define PSB_2D_ROT_270DEGS (3<<25) | ||
2265 | + | ||
2266 | +#define PSB_2D_COPYORDER_MASK (3<<23) | ||
2267 | +#define PSB_2D_COPYORDER_CLRMASK (~PSB_2D_COPYORDER_MASK) | ||
2268 | +#define PSB_2D_COPYORDER_TL2BR (0<<23) | ||
2269 | +#define PSB_2D_COPYORDER_BR2TL (1<<23) | ||
2270 | +#define PSB_2D_COPYORDER_TR2BL (2<<23) | ||
2271 | +#define PSB_2D_COPYORDER_BL2TR (3<<23) | ||
2272 | + | ||
2273 | +#define PSB_2D_DSTCK_CLRMASK (0xFF9FFFFF) | ||
2274 | +#define PSB_2D_DSTCK_DISABLE (0x00000000) | ||
2275 | +#define PSB_2D_DSTCK_PASS (0x00200000) | ||
2276 | +#define PSB_2D_DSTCK_REJECT (0x00400000) | ||
2277 | + | ||
2278 | +#define PSB_2D_SRCCK_CLRMASK (0xFFE7FFFF) | ||
2279 | +#define PSB_2D_SRCCK_DISABLE (0x00000000) | ||
2280 | +#define PSB_2D_SRCCK_PASS (0x00080000) | ||
2281 | +#define PSB_2D_SRCCK_REJECT (0x00100000) | ||
2282 | + | ||
2283 | +#define PSB_2D_CLIP_ENABLE (0x00040000) | ||
2284 | + | ||
2285 | +#define PSB_2D_ALPHA_ENABLE (0x00020000) | ||
2286 | + | ||
2287 | +#define PSB_2D_PAT_CLRMASK (0xFFFEFFFF) | ||
2288 | +#define PSB_2D_PAT_MASK (0x00010000) | ||
2289 | +#define PSB_2D_USE_PAT (0x00010000) | ||
2290 | +#define PSB_2D_USE_FILL (0x00000000) | ||
2291 | +/* | ||
2292 | + * Tungsten Graphics note on rop codes: If rop A and rop B are | ||
2293 | + * identical, the mask surface will not be read and need not be | ||
2294 | + * set up. | ||
2295 | + */ | ||
2296 | + | ||
2297 | +#define PSB_2D_ROP3B_MASK (0x0000FF00) | ||
2298 | +#define PSB_2D_ROP3B_CLRMASK (0xFFFF00FF) | ||
2299 | +#define PSB_2D_ROP3B_SHIFT (8) | ||
2300 | +// rop code A | ||
2301 | +#define PSB_2D_ROP3A_MASK (0x000000FF) | ||
2302 | +#define PSB_2D_ROP3A_CLRMASK (0xFFFFFF00) | ||
2303 | +#define PSB_2D_ROP3A_SHIFT (0) | ||
2304 | + | ||
2305 | +#define PSB_2D_ROP4_MASK (0x0000FFFF) | ||
2306 | +/* | ||
2307 | + * DWORD0: (Only pass if Pattern control == Use Fill Colour) | ||
2308 | + * Fill Colour RGBA8888 | ||
2309 | + */ | ||
2310 | +#define PSB_2D_FILLCOLOUR_MASK (0xFFFFFFFF) | ||
2311 | +#define PSB_2D_FILLCOLOUR_SHIFT (0) | ||
2312 | +/* | ||
2313 | + * DWORD1: (Always Present) | ||
2314 | + * X Start (Dest) | ||
2315 | + * Y Start (Dest) | ||
2316 | + */ | ||
2317 | +#define PSB_2D_DST_XSTART_MASK (0x00FFF000) | ||
2318 | +#define PSB_2D_DST_XSTART_CLRMASK (0xFF000FFF) | ||
2319 | +#define PSB_2D_DST_XSTART_SHIFT (12) | ||
2320 | +#define PSB_2D_DST_YSTART_MASK (0x00000FFF) | ||
2321 | +#define PSB_2D_DST_YSTART_CLRMASK (0xFFFFF000) | ||
2322 | +#define PSB_2D_DST_YSTART_SHIFT (0) | ||
2323 | +/* | ||
2324 | + * DWORD2: (Always Present) | ||
2325 | + * X Size (Dest) | ||
2326 | + * Y Size (Dest) | ||
2327 | + */ | ||
2328 | +#define PSB_2D_DST_XSIZE_MASK (0x00FFF000) | ||
2329 | +#define PSB_2D_DST_XSIZE_CLRMASK (0xFF000FFF) | ||
2330 | +#define PSB_2D_DST_XSIZE_SHIFT (12) | ||
2331 | +#define PSB_2D_DST_YSIZE_MASK (0x00000FFF) | ||
2332 | +#define PSB_2D_DST_YSIZE_CLRMASK (0xFFFFF000) | ||
2333 | +#define PSB_2D_DST_YSIZE_SHIFT (0) | ||
2334 | + | ||
2335 | +/* | ||
2336 | + * Source Surface (PSB_2D_SRC_SURF_BH) | ||
2337 | + */ | ||
2338 | +/* | ||
2339 | + * WORD 0 | ||
2340 | + */ | ||
2341 | + | ||
2342 | +#define PSB_2D_SRC_FORMAT_MASK (0x00078000) | ||
2343 | +#define PSB_2D_SRC_1_PAL (0x00000000) | ||
2344 | +#define PSB_2D_SRC_2_PAL (0x00008000) | ||
2345 | +#define PSB_2D_SRC_4_PAL (0x00010000) | ||
2346 | +#define PSB_2D_SRC_8_PAL (0x00018000) | ||
2347 | +#define PSB_2D_SRC_8_ALPHA (0x00020000) | ||
2348 | +#define PSB_2D_SRC_4_ALPHA (0x00028000) | ||
2349 | +#define PSB_2D_SRC_332RGB (0x00030000) | ||
2350 | +#define PSB_2D_SRC_4444ARGB (0x00038000) | ||
2351 | +#define PSB_2D_SRC_555RGB (0x00040000) | ||
2352 | +#define PSB_2D_SRC_1555ARGB (0x00048000) | ||
2353 | +#define PSB_2D_SRC_565RGB (0x00050000) | ||
2354 | +#define PSB_2D_SRC_0888ARGB (0x00058000) | ||
2355 | +#define PSB_2D_SRC_8888ARGB (0x00060000) | ||
2356 | +#define PSB_2D_SRC_8888UYVY (0x00068000) | ||
2357 | +#define PSB_2D_SRC_RESERVED (0x00070000) | ||
2358 | +#define PSB_2D_SRC_1555ARGB_LOOKUP (0x00078000) | ||
2359 | + | ||
2360 | + | ||
2361 | +#define PSB_2D_SRC_STRIDE_MASK (0x00007FFF) | ||
2362 | +#define PSB_2D_SRC_STRIDE_CLRMASK (0xFFFF8000) | ||
2363 | +#define PSB_2D_SRC_STRIDE_SHIFT (0) | ||
2364 | +/* | ||
2365 | + * WORD 1 - Base Address | ||
2366 | + */ | ||
2367 | +#define PSB_2D_SRC_ADDR_MASK (0x0FFFFFFC) | ||
2368 | +#define PSB_2D_SRC_ADDR_CLRMASK (0x00000003) | ||
2369 | +#define PSB_2D_SRC_ADDR_SHIFT (2) | ||
2370 | +#define PSB_2D_SRC_ADDR_ALIGNSHIFT (2) | ||
2371 | + | ||
2372 | +/* | ||
2373 | + * Pattern Surface (PSB_2D_PAT_SURF_BH) | ||
2374 | + */ | ||
2375 | +/* | ||
2376 | + * WORD 0 | ||
2377 | + */ | ||
2378 | + | ||
2379 | +#define PSB_2D_PAT_FORMAT_MASK (0x00078000) | ||
2380 | +#define PSB_2D_PAT_1_PAL (0x00000000) | ||
2381 | +#define PSB_2D_PAT_2_PAL (0x00008000) | ||
2382 | +#define PSB_2D_PAT_4_PAL (0x00010000) | ||
2383 | +#define PSB_2D_PAT_8_PAL (0x00018000) | ||
2384 | +#define PSB_2D_PAT_8_ALPHA (0x00020000) | ||
2385 | +#define PSB_2D_PAT_4_ALPHA (0x00028000) | ||
2386 | +#define PSB_2D_PAT_332RGB (0x00030000) | ||
2387 | +#define PSB_2D_PAT_4444ARGB (0x00038000) | ||
2388 | +#define PSB_2D_PAT_555RGB (0x00040000) | ||
2389 | +#define PSB_2D_PAT_1555ARGB (0x00048000) | ||
2390 | +#define PSB_2D_PAT_565RGB (0x00050000) | ||
2391 | +#define PSB_2D_PAT_0888ARGB (0x00058000) | ||
2392 | +#define PSB_2D_PAT_8888ARGB (0x00060000) | ||
2393 | + | ||
2394 | +#define PSB_2D_PAT_STRIDE_MASK (0x00007FFF) | ||
2395 | +#define PSB_2D_PAT_STRIDE_CLRMASK (0xFFFF8000) | ||
2396 | +#define PSB_2D_PAT_STRIDE_SHIFT (0) | ||
2397 | +/* | ||
2398 | + * WORD 1 - Base Address | ||
2399 | + */ | ||
2400 | +#define PSB_2D_PAT_ADDR_MASK (0x0FFFFFFC) | ||
2401 | +#define PSB_2D_PAT_ADDR_CLRMASK (0x00000003) | ||
2402 | +#define PSB_2D_PAT_ADDR_SHIFT (2) | ||
2403 | +#define PSB_2D_PAT_ADDR_ALIGNSHIFT (2) | ||
2404 | + | ||
2405 | +/* | ||
2406 | + * Destination Surface (PSB_2D_DST_SURF_BH) | ||
2407 | + */ | ||
2408 | +/* | ||
2409 | + * WORD 0 | ||
2410 | + */ | ||
2411 | + | ||
2412 | +#define PSB_2D_DST_FORMAT_MASK (0x00078000) | ||
2413 | +#define PSB_2D_DST_332RGB (0x00030000) | ||
2414 | +#define PSB_2D_DST_4444ARGB (0x00038000) | ||
2415 | +#define PSB_2D_DST_555RGB (0x00040000) | ||
2416 | +#define PSB_2D_DST_1555ARGB (0x00048000) | ||
2417 | +#define PSB_2D_DST_565RGB (0x00050000) | ||
2418 | +#define PSB_2D_DST_0888ARGB (0x00058000) | ||
2419 | +#define PSB_2D_DST_8888ARGB (0x00060000) | ||
2420 | +#define PSB_2D_DST_8888AYUV (0x00070000) | ||
2421 | + | ||
2422 | +#define PSB_2D_DST_STRIDE_MASK (0x00007FFF) | ||
2423 | +#define PSB_2D_DST_STRIDE_CLRMASK (0xFFFF8000) | ||
2424 | +#define PSB_2D_DST_STRIDE_SHIFT (0) | ||
2425 | +/* | ||
2426 | + * WORD 1 - Base Address | ||
2427 | + */ | ||
2428 | +#define PSB_2D_DST_ADDR_MASK (0x0FFFFFFC) | ||
2429 | +#define PSB_2D_DST_ADDR_CLRMASK (0x00000003) | ||
2430 | +#define PSB_2D_DST_ADDR_SHIFT (2) | ||
2431 | +#define PSB_2D_DST_ADDR_ALIGNSHIFT (2) | ||
2432 | + | ||
2433 | +/* | ||
2434 | + * Mask Surface (PSB_2D_MASK_SURF_BH) | ||
2435 | + */ | ||
2436 | +/* | ||
2437 | + * WORD 0 | ||
2438 | + */ | ||
2439 | +#define PSB_2D_MASK_STRIDE_MASK (0x00007FFF) | ||
2440 | +#define PSB_2D_MASK_STRIDE_CLRMASK (0xFFFF8000) | ||
2441 | +#define PSB_2D_MASK_STRIDE_SHIFT (0) | ||
2442 | +/* | ||
2443 | + * WORD 1 - Base Address | ||
2444 | + */ | ||
2445 | +#define PSB_2D_MASK_ADDR_MASK (0x0FFFFFFC) | ||
2446 | +#define PSB_2D_MASK_ADDR_CLRMASK (0x00000003) | ||
2447 | +#define PSB_2D_MASK_ADDR_SHIFT (2) | ||
2448 | +#define PSB_2D_MASK_ADDR_ALIGNSHIFT (2) | ||
2449 | + | ||
2450 | +/* | ||
2451 | + * Source Palette (PSB_2D_SRC_PAL_BH) | ||
2452 | + */ | ||
2453 | + | ||
2454 | +#define PSB_2D_SRCPAL_ADDR_SHIFT (0) | ||
2455 | +#define PSB_2D_SRCPAL_ADDR_CLRMASK (0xF0000007) | ||
2456 | +#define PSB_2D_SRCPAL_ADDR_MASK (0x0FFFFFF8) | ||
2457 | +#define PSB_2D_SRCPAL_BYTEALIGN (1024) | ||
2458 | + | ||
2459 | +/* | ||
2460 | + * Pattern Palette (PSB_2D_PAT_PAL_BH) | ||
2461 | + */ | ||
2462 | + | ||
2463 | +#define PSB_2D_PATPAL_ADDR_SHIFT (0) | ||
2464 | +#define PSB_2D_PATPAL_ADDR_CLRMASK (0xF0000007) | ||
2465 | +#define PSB_2D_PATPAL_ADDR_MASK (0x0FFFFFF8) | ||
2466 | +#define PSB_2D_PATPAL_BYTEALIGN (1024) | ||
2467 | + | ||
2468 | +/* | ||
2469 | + * Rop3 Codes (2 LS bytes) | ||
2470 | + */ | ||
2471 | + | ||
2472 | +#define PSB_2D_ROP3_SRCCOPY (0xCCCC) | ||
2473 | +#define PSB_2D_ROP3_PATCOPY (0xF0F0) | ||
2474 | +#define PSB_2D_ROP3_WHITENESS (0xFFFF) | ||
2475 | +#define PSB_2D_ROP3_BLACKNESS (0x0000) | ||
2476 | +#define PSB_2D_ROP3_SRC (0xCC) | ||
2477 | +#define PSB_2D_ROP3_PAT (0xF0) | ||
2478 | +#define PSB_2D_ROP3_DST (0xAA) | ||
2479 | + | ||
2480 | + | ||
2481 | +/* | ||
2482 | + * Sizes. | ||
2483 | + */ | ||
2484 | + | ||
2485 | +#define PSB_SCENE_HW_COOKIE_SIZE 16 | ||
2486 | +#define PSB_TA_MEM_HW_COOKIE_SIZE 16 | ||
2487 | + | ||
2488 | +/* | ||
2489 | + * Scene stuff. | ||
2490 | + */ | ||
2491 | + | ||
2492 | +#define PSB_NUM_HW_SCENES 2 | ||
2493 | + | ||
2494 | +/* | ||
2495 | + * Scheduler completion actions. | ||
2496 | + */ | ||
2497 | + | ||
2498 | +#define PSB_RASTER_BLOCK 0 | ||
2499 | +#define PSB_RASTER 1 | ||
2500 | +#define PSB_RETURN 2 | ||
2501 | +#define PSB_TA 3 | ||
2502 | + | ||
2503 | + | ||
2504 | +#endif | ||
2505 | Index: libdrm-2.4.4/libdrm/Makefile.am | ||
2506 | =================================================================== | ||
2507 | --- libdrm-2.4.4.orig/libdrm/Makefile.am 2009-02-04 16:42:01.000000000 +0000 | ||
2508 | +++ libdrm-2.4.4/libdrm/Makefile.am 2009-02-04 16:45:06.000000000 +0000 | ||
2509 | @@ -31,6 +31,6 @@ | ||
2510 | libdrm_lists.h | ||
2511 | |||
2512 | libdrmincludedir = ${includedir} | ||
2513 | -libdrminclude_HEADERS = xf86drm.h xf86drmMode.h | ||
2514 | +libdrminclude_HEADERS = xf86drm.h xf86drmMode.h xf86mm.h libdrm_lists.h | ||
2515 | |||
2516 | EXTRA_DIST = ChangeLog TODO | ||
diff --git a/meta/packages/drm/libdrm-2.4.7/installtests.patch b/meta/packages/drm/libdrm-2.4.7/installtests.patch new file mode 100644 index 0000000000..a16c8a738b --- /dev/null +++ b/meta/packages/drm/libdrm-2.4.7/installtests.patch | |||
@@ -0,0 +1,39 @@ | |||
1 | Index: libdrm-2.4.7/tests/Makefile.am | ||
2 | =================================================================== | ||
3 | --- libdrm-2.4.7.orig/tests/Makefile.am 2009-04-09 20:16:35.000000000 +0100 | ||
4 | +++ libdrm-2.4.7/tests/Makefile.am 2009-04-17 12:35:14.000000000 +0100 | ||
5 | @@ -4,7 +4,7 @@ | ||
6 | |||
7 | LDADD = $(top_builddir)/libdrm/libdrm.la | ||
8 | |||
9 | -noinst_PROGRAMS = \ | ||
10 | +bin_PROGRAMS = \ | ||
11 | dristat \ | ||
12 | drmstat | ||
13 | |||
14 | Index: libdrm-2.4.7/tests/modeprint/Makefile.am | ||
15 | =================================================================== | ||
16 | --- libdrm-2.4.7.orig/tests/modeprint/Makefile.am 2009-02-17 19:52:37.000000000 +0000 | ||
17 | +++ libdrm-2.4.7/tests/modeprint/Makefile.am 2009-04-17 12:35:32.000000000 +0100 | ||
18 | @@ -3,7 +3,7 @@ | ||
19 | -I$(top_srcdir)/libdrm/intel/ \ | ||
20 | -I$(top_srcdir)/libdrm | ||
21 | |||
22 | -noinst_PROGRAMS = \ | ||
23 | +bin_PROGRAMS = \ | ||
24 | modeprint | ||
25 | |||
26 | modeprint_SOURCES = \ | ||
27 | Index: libdrm-2.4.7/tests/modetest/Makefile.am | ||
28 | =================================================================== | ||
29 | --- libdrm-2.4.7.orig/tests/modetest/Makefile.am 2009-02-17 19:52:37.000000000 +0000 | ||
30 | +++ libdrm-2.4.7/tests/modetest/Makefile.am 2009-04-17 12:35:42.000000000 +0100 | ||
31 | @@ -4,7 +4,7 @@ | ||
32 | -I$(top_srcdir)/libdrm \ | ||
33 | $(CAIRO_CFLAGS) | ||
34 | |||
35 | -noinst_PROGRAMS = \ | ||
36 | +bin_PROGRAMS = \ | ||
37 | modetest | ||
38 | |||
39 | modetest_SOURCES = \ | ||
diff --git a/meta/packages/drm/libdrm_2.4.4.bb b/meta/packages/drm/libdrm_2.4.4.bb deleted file mode 100644 index 8198592f8e..0000000000 --- a/meta/packages/drm/libdrm_2.4.4.bb +++ /dev/null | |||
@@ -1,9 +0,0 @@ | |||
1 | SECTION = "x11/base" | ||
2 | LICENSE = "MIT" | ||
3 | SRC_URI = "http://dri.freedesktop.org/libdrm/libdrm-${PV}.tar.bz2 \ | ||
4 | file://poulsbo.patch;patch=1" | ||
5 | PR = "r3" | ||
6 | PROVIDES = "drm" | ||
7 | DEPENDS = "libpthread-stubs" | ||
8 | |||
9 | inherit autotools_stage pkgconfig | ||
diff --git a/meta/packages/drm/libdrm_2.4.7.bb b/meta/packages/drm/libdrm_2.4.7.bb new file mode 100644 index 0000000000..f0d5668937 --- /dev/null +++ b/meta/packages/drm/libdrm_2.4.7.bb | |||
@@ -0,0 +1,12 @@ | |||
1 | SECTION = "x11/base" | ||
2 | LICENSE = "MIT" | ||
3 | SRC_URI = "http://dri.freedesktop.org/libdrm/libdrm-${PV}.tar.bz2 \ | ||
4 | file://installtests.patch;patch=1" | ||
5 | PR = "r1" | ||
6 | PROVIDES = "drm" | ||
7 | DEPENDS = "libpthread-stubs udev cairo" | ||
8 | |||
9 | PACKAGES =+ "libdrm-tests" | ||
10 | FILES_libdrm-tests = "${bindir}/dr* ${bindir}/mode*" | ||
11 | |||
12 | inherit autotools_stage pkgconfig | ||
diff --git a/meta/packages/e2fsprogs/e2fsprogs-native_1.41.2.bb b/meta/packages/e2fsprogs/e2fsprogs-native_1.41.2.bb index eaed14d935..90095d9ae7 100644 --- a/meta/packages/e2fsprogs/e2fsprogs-native_1.41.2.bb +++ b/meta/packages/e2fsprogs/e2fsprogs-native_1.41.2.bb | |||
@@ -2,7 +2,30 @@ require e2fsprogs_${PV}.bb | |||
2 | inherit native | 2 | inherit native |
3 | 3 | ||
4 | DEPENDS = "gettext-native" | 4 | DEPENDS = "gettext-native" |
5 | PR = "r1" | ||
5 | 6 | ||
6 | do_stage () { | 7 | do_stage () { |
7 | oe_runmake install | 8 | oe_libinstall -a -C lib libblkid ${STAGING_LIBDIR}/ |
9 | oe_libinstall -a -C lib libe2p ${STAGING_LIBDIR}/ | ||
10 | oe_libinstall -a -C lib libext2fs ${STAGING_LIBDIR}/ | ||
11 | oe_libinstall -a -C lib libuuid ${STAGING_LIBDIR}/ | ||
12 | install -d ${STAGING_INCDIR}/e2p | ||
13 | for h in ${e2pheaders}; do | ||
14 | install -m 0644 lib/e2p/$h ${STAGING_INCDIR}/e2p/ || die "failed to install $h" | ||
15 | done | ||
16 | install -d ${STAGING_INCDIR}/ext2fs | ||
17 | for h in ${ext2fsheaders}; do | ||
18 | install -m 0644 lib/ext2fs/$h ${STAGING_INCDIR}/ext2fs/ || die "failed to install $h" | ||
19 | done | ||
20 | install -d ${STAGING_INCDIR}/blkid | ||
21 | for h in blkid.h blkid_types.h; do | ||
22 | install -m 0644 lib/blkid/$h ${STAGING_INCDIR}/blkid/ || die "failed to install $h" | ||
23 | done | ||
24 | install -d ${STAGING_INCDIR}/uuid | ||
25 | install -m 0644 lib/uuid/uuid.h ${STAGING_INCDIR}/uuid/ || die "failed to install $h" | ||
26 | |||
27 | install -d ${STAGING_LIBDIR}/pkgconfig | ||
28 | for pc in lib/*/*.pc; do | ||
29 | install -m 0644 $pc ${STAGING_LIBDIR}/pkgconfig/ || die "failed to install $h" | ||
30 | done | ||
8 | } | 31 | } |
diff --git a/meta/packages/initrdscripts/files/init-live.sh b/meta/packages/initrdscripts/files/init-live.sh index d4e53713ef..c96b1f47c3 100644 --- a/meta/packages/initrdscripts/files/init-live.sh +++ b/meta/packages/initrdscripts/files/init-live.sh | |||
@@ -58,6 +58,7 @@ do | |||
58 | for i in `ls /media 2>/dev/null`; do | 58 | for i in `ls /media 2>/dev/null`; do |
59 | if [ -f /media/$i/$ROOT_IMAGE ] ; then | 59 | if [ -f /media/$i/$ROOT_IMAGE ] ; then |
60 | found="yes" | 60 | found="yes" |
61 | break | ||
61 | fi | 62 | fi |
62 | done | 63 | done |
63 | if [ "$found" = "yes" ]; then | 64 | if [ "$found" = "yes" ]; then |
diff --git a/meta/packages/initrdscripts/initramfs-live-boot_1.0.bb b/meta/packages/initrdscripts/initramfs-live-boot_1.0.bb index 2c92f73773..07d349c8f5 100644 --- a/meta/packages/initrdscripts/initramfs-live-boot_1.0.bb +++ b/meta/packages/initrdscripts/initramfs-live-boot_1.0.bb | |||
@@ -2,7 +2,7 @@ DESCRIPTON = "A live image init script" | |||
2 | 2 | ||
3 | SRC_URI = "file://init-live.sh" | 3 | SRC_URI = "file://init-live.sh" |
4 | 4 | ||
5 | PR = "r1" | 5 | PR = "r2" |
6 | 6 | ||
7 | do_install() { | 7 | do_install() { |
8 | install -m 0755 ${WORKDIR}/init-live.sh ${D}/init | 8 | install -m 0755 ${WORKDIR}/init-live.sh ${D}/init |
diff --git a/meta/packages/libnl/libnl_1.0-pre6.bb b/meta/packages/libnl/libnl_1.0-pre8.bb index 740bc937d7..0b98f896a8 100644 --- a/meta/packages/libnl/libnl_1.0-pre6.bb +++ b/meta/packages/libnl/libnl_1.0-pre8.bb | |||
@@ -3,11 +3,11 @@ SECTION = "libs/network" | |||
3 | LICENSE = "LGPL" | 3 | LICENSE = "LGPL" |
4 | HOMEPAGE = "http://people.suug.ch/~tgr/libnl/" | 4 | HOMEPAGE = "http://people.suug.ch/~tgr/libnl/" |
5 | PRIORITY = "optional" | 5 | PRIORITY = "optional" |
6 | PV = "0.99+1.0-pre6" | 6 | PV = "0.99+1.0-pre8" |
7 | 7 | ||
8 | inherit autotools_stage pkgconfig | 8 | inherit autotools_stage pkgconfig |
9 | 9 | ||
10 | SRC_URI= "http://people.suug.ch/~tgr/libnl/files/${PN}-1.0-pre6.tar.gz \ | 10 | SRC_URI= "http://people.suug.ch/~tgr/libnl/files/${PN}-1.0-pre8.tar.gz \ |
11 | file://local-includes.patch;patch=1" | 11 | file://local-includes.patch;patch=1" |
12 | 12 | ||
13 | S = "${WORKDIR}/${PN}-1.0-pre6" | 13 | S = "${WORKDIR}/${PN}-1.0-pre8" |
diff --git a/meta/packages/libproxy/libproxy/asneededfix.patch b/meta/packages/libproxy/libproxy/asneededfix.patch new file mode 100644 index 0000000000..cc22077f07 --- /dev/null +++ b/meta/packages/libproxy/libproxy/asneededfix.patch | |||
@@ -0,0 +1,13 @@ | |||
1 | Index: libproxy-0.2.3/src/lib/Makefile.am | ||
2 | =================================================================== | ||
3 | --- libproxy-0.2.3.orig/src/lib/Makefile.am 2009-03-09 16:24:08.000000000 +0000 | ||
4 | +++ libproxy-0.2.3/src/lib/Makefile.am 2009-03-09 16:24:13.000000000 +0000 | ||
5 | @@ -2,7 +2,7 @@ | ||
6 | libproxy_la_SOURCES = misc.c url.c pac.c dhcp.c dns.c slp.c wpad.c proxy_factory.c config_file.c \ | ||
7 | misc.h url.h pac.h dhcp.h dns.h slp.h wpad.h proxy_factory.h proxy.h config_file.h | ||
8 | libproxy_la_CFLAGS = -Wall | ||
9 | -libproxy_la_LDFLAGS = -lm | ||
10 | +libproxy_la_LDFLAGS = -lm -ldl | ||
11 | |||
12 | include_HEADERS = proxy.h | ||
13 | |||
diff --git a/meta/packages/libproxy/libproxy_0.2.3.bb b/meta/packages/libproxy/libproxy_0.2.3.bb new file mode 100644 index 0000000000..34172f263d --- /dev/null +++ b/meta/packages/libproxy/libproxy_0.2.3.bb | |||
@@ -0,0 +1,16 @@ | |||
1 | DESCRIPTION = "A library that provides automatic proxy configuration management" | ||
2 | HOMEPAGE = "http://code.google.com/p/libproxy/" | ||
3 | LICENSE = "LGPL" | ||
4 | SECTION = "libs" | ||
5 | |||
6 | DEPENDS = "virtual/libx11 xmu gconf-dbus" | ||
7 | |||
8 | SRC_URI = "http://libproxy.googlecode.com/files/libproxy-${PV}.tar.gz \ | ||
9 | file://asneededfix.patch;patch=1" | ||
10 | S = "${WORKDIR}/libproxy-${PV}" | ||
11 | |||
12 | inherit autotools_stage pkgconfig | ||
13 | |||
14 | EXTRA_OECONF = "--without-kde --with-gnome --without-webkit --without-python --without-mozjs --without-networkmanager" | ||
15 | |||
16 | FILES_${PN}-dbg += "${libdir}/libproxy/0.2.3/plugins/" \ No newline at end of file | ||
diff --git a/meta/packages/libsoup/libsoup-2.4_2.25.91.bb b/meta/packages/libsoup/libsoup-2.4_2.25.91.bb new file mode 100644 index 0000000000..e4494cf458 --- /dev/null +++ b/meta/packages/libsoup/libsoup-2.4_2.25.91.bb | |||
@@ -0,0 +1,14 @@ | |||
1 | DESCRIPTION = "An HTTP library implementation in C" | ||
2 | LICENSE = "GPL" | ||
3 | SECTION = "x11/gnome/libs" | ||
4 | |||
5 | DEPENDS = "glib-2.0 gnutls libxml2 libproxy sqlite3" | ||
6 | |||
7 | SRC_URI = "http://ftp.gnome.org/pub/GNOME/sources/libsoup/2.25/libsoup-${PV}.tar.bz2" | ||
8 | S = "${WORKDIR}/libsoup-${PV}" | ||
9 | |||
10 | inherit autotools_stage pkgconfig | ||
11 | |||
12 | do_stage() { | ||
13 | autotools_stage_all | ||
14 | } | ||
diff --git a/meta/packages/mesa/mesa-7.0.2/fix-host-compile.patch b/meta/packages/mesa/mesa-7.0.2/fix-host-compile.patch deleted file mode 100644 index d24d03d379..0000000000 --- a/meta/packages/mesa/mesa-7.0.2/fix-host-compile.patch +++ /dev/null | |||
@@ -1,30 +0,0 @@ | |||
1 | --- /src/mesa/x86/orig-Makefile 2005-07-01 04:54:38.000000000 +0300 | ||
2 | +++ /src/mesa/x86/Makefile 2007-06-07 21:52:31.000000000 +0300 | ||
3 | @@ -5,6 +5,7 @@ | ||
4 | |||
5 | |||
6 | INCLUDE_DIRS = \ | ||
7 | + -I/usr/include \ | ||
8 | -I$(TOP)/include/GL \ | ||
9 | -I$(TOP)/include \ | ||
10 | -I.. \ | ||
11 | @@ -13,6 +14,10 @@ | ||
12 | -I../glapi \ | ||
13 | -I../tnl | ||
14 | |||
15 | +OPT_FLAGS_host = -fexpensive-optimizations -fomit-frame-pointer -frename-registers -Os | ||
16 | + | ||
17 | +CFLAGS_host = -Wall -Wmissing-prototypes $(OPT_FLAGS_host) $(PIC_FLAGS) $(ARCH_FLAGS) \ | ||
18 | + $(DEFINES) $(ASM_FLAGS) $(X11_INCLUDES) -std=c99 -ffast-math | ||
19 | |||
20 | default: gen_matypes matypes.h | ||
21 | |||
22 | @@ -21,7 +26,7 @@ | ||
23 | |||
24 | |||
25 | gen_matypes: gen_matypes.c | ||
26 | - $(CC) $(INCLUDE_DIRS) $(CFLAGS) gen_matypes.c -o gen_matypes | ||
27 | + $(CC) $(INCLUDE_DIRS) $(CFLAGS_host) gen_matypes.c -o gen_matypes | ||
28 | |||
29 | # need some special rules here, unfortunately | ||
30 | matypes.h: ../main/mtypes.h ../tnl/t_context.h gen_matypes | ||
diff --git a/meta/packages/mesa/mesa-7.0.2/mklib-rpath-link.patch b/meta/packages/mesa/mesa-7.0.2/mklib-rpath-link.patch deleted file mode 100644 index 618f5b57ed..0000000000 --- a/meta/packages/mesa/mesa-7.0.2/mklib-rpath-link.patch +++ /dev/null | |||
@@ -1,23 +0,0 @@ | |||
1 | --- /tmp/mklib 2007-12-08 11:03:23.000000000 +0100 | ||
2 | +++ Mesa-7.0.2/bin/mklib 2007-12-08 11:04:02.509863000 +0100 | ||
3 | @@ -106,6 +106,9 @@ | ||
4 | -L*) | ||
5 | DEPS="$DEPS $1" | ||
6 | ;; | ||
7 | + -Wl*) | ||
8 | + DEPS="$DEPS $1" | ||
9 | + ;; | ||
10 | -pthread) | ||
11 | # this is a special case (see bugzilla 10876) | ||
12 | DEPS="$DEPS $1" | ||
13 | --- /tmp/default 2007-12-08 11:04:17.000000000 +0100 | ||
14 | +++ Mesa-7.0.2/configs/default 2007-12-08 11:05:06.279863000 +0100 | ||
15 | @@ -76,7 +76,7 @@ | ||
16 | GLW_LIB_DEPS = -L$(TOP)/$(LIB_DIR) -l$(GL_LIB) $(EXTRA_LIB_PATH) -lXt -lX11 | ||
17 | |||
18 | # Program dependencies - specific GL/glut libraries added in Makefiles | ||
19 | -APP_LIB_DEPS = -lm | ||
20 | +APP_LIB_DEPS = $(EXTRA_LIB_PATH) -lm | ||
21 | |||
22 | |||
23 | |||
diff --git a/meta/packages/mesa/mesa-dri_7.2.bb b/meta/packages/mesa/mesa-dri_7.4.bb index 43e4cb5527..43e4cb5527 100644 --- a/meta/packages/mesa/mesa-dri_7.2.bb +++ b/meta/packages/mesa/mesa-dri_7.4.bb | |||
diff --git a/meta/packages/mesa/mesa-dri_git.bb b/meta/packages/mesa/mesa-dri_git.bb index e565ac5367..2608e226b1 100644 --- a/meta/packages/mesa/mesa-dri_git.bb +++ b/meta/packages/mesa/mesa-dri_git.bb | |||
@@ -14,7 +14,7 @@ DEFAULT_PREFERENCE = "-1" | |||
14 | # Netbooks have DRI support so use mesa-dri by default | 14 | # Netbooks have DRI support so use mesa-dri by default |
15 | DEFAULT_PREFERENCE_netbook = "1" | 15 | DEFAULT_PREFERENCE_netbook = "1" |
16 | 16 | ||
17 | SRC_URI = "git://anongit.freedesktop.org/git/mesa/mesa;protocol=git;branch=intel-2008-q3 " | 17 | SRC_URI = "git://anongit.freedesktop.org/git/mesa/mesa;protocol=git;branch=master" |
18 | S = "${WORKDIR}/git" | 18 | S = "${WORKDIR}/git" |
19 | 19 | ||
20 | PACKAGES =+ "${PN}-xprogs" | 20 | PACKAGES =+ "${PN}-xprogs" |
diff --git a/meta/packages/mesa/mesa-xlib_7.2.bb b/meta/packages/mesa/mesa-xlib_7.4.bb index 069446904c..069446904c 100644 --- a/meta/packages/mesa/mesa-xlib_7.2.bb +++ b/meta/packages/mesa/mesa-xlib_7.4.bb | |||
diff --git a/meta/packages/mozilla-headless/mozilla-headless/configurefix.patch b/meta/packages/mozilla-headless/mozilla-headless/configurefix.patch index 8a5fbbb77f..e02e4af2b6 100644 --- a/meta/packages/mozilla-headless/mozilla-headless/configurefix.patch +++ b/meta/packages/mozilla-headless/mozilla-headless/configurefix.patch | |||
@@ -1,7 +1,7 @@ | |||
1 | Index: git/configure.in | 1 | Index: offscreen/configure.in |
2 | =================================================================== | 2 | =================================================================== |
3 | --- git.orig/configure.in 2009-01-27 16:11:22.000000000 +0000 | 3 | --- offscreen.orig/configure.in 2009-04-16 22:51:48.000000000 +0100 |
4 | +++ git/configure.in 2009-01-27 16:16:45.000000000 +0000 | 4 | +++ offscreen/configure.in 2009-04-16 23:07:48.000000000 +0100 |
5 | @@ -62,7 +62,6 @@ | 5 | @@ -62,7 +62,6 @@ |
6 | 6 | ||
7 | AC_PREREQ(2.13) | 7 | AC_PREREQ(2.13) |
@@ -18,7 +18,7 @@ Index: git/configure.in | |||
18 | 18 | ||
19 | dnl Set the version number of the libs included with mozilla | 19 | dnl Set the version number of the libs included with mozilla |
20 | dnl ======================================================== | 20 | dnl ======================================================== |
21 | @@ -137,6 +135,9 @@ | 21 | @@ -136,6 +134,9 @@ |
22 | 22 | ||
23 | MSMANIFEST_TOOL= | 23 | MSMANIFEST_TOOL= |
24 | 24 | ||
@@ -28,7 +28,7 @@ Index: git/configure.in | |||
28 | dnl Set various checks | 28 | dnl Set various checks |
29 | dnl ======================================================== | 29 | dnl ======================================================== |
30 | MISSING_X= | 30 | MISSING_X= |
31 | @@ -263,7 +264,7 @@ | 31 | @@ -281,7 +282,7 @@ |
32 | ;; | 32 | ;; |
33 | esac | 33 | esac |
34 | 34 | ||
@@ -37,7 +37,7 @@ Index: git/configure.in | |||
37 | echo "cross compiling from $host to $target" | 37 | echo "cross compiling from $host to $target" |
38 | cross_compiling=yes | 38 | cross_compiling=yes |
39 | 39 | ||
40 | @@ -301,7 +302,7 @@ | 40 | @@ -319,7 +320,7 @@ |
41 | 41 | ||
42 | AC_MSG_CHECKING([whether the host c compiler ($HOST_CC $HOST_CFLAGS $HOST_LDFLAGS) works]) | 42 | AC_MSG_CHECKING([whether the host c compiler ($HOST_CC $HOST_CFLAGS $HOST_LDFLAGS) works]) |
43 | AC_TRY_COMPILE([], [return(0);], | 43 | AC_TRY_COMPILE([], [return(0);], |
@@ -46,7 +46,7 @@ Index: git/configure.in | |||
46 | AC_MSG_ERROR([installation or configuration problem: host compiler $HOST_CC cannot create executables.]) ) | 46 | AC_MSG_ERROR([installation or configuration problem: host compiler $HOST_CC cannot create executables.]) ) |
47 | 47 | ||
48 | CC="$HOST_CXX" | 48 | CC="$HOST_CXX" |
49 | @@ -309,7 +310,7 @@ | 49 | @@ -327,7 +328,7 @@ |
50 | 50 | ||
51 | AC_MSG_CHECKING([whether the host c++ compiler ($HOST_CXX $HOST_CXXFLAGS $HOST_LDFLAGS) works]) | 51 | AC_MSG_CHECKING([whether the host c++ compiler ($HOST_CXX $HOST_CXXFLAGS $HOST_LDFLAGS) works]) |
52 | AC_TRY_COMPILE([], [return(0);], | 52 | AC_TRY_COMPILE([], [return(0);], |
@@ -55,7 +55,7 @@ Index: git/configure.in | |||
55 | AC_MSG_ERROR([installation or configuration problem: host compiler $HOST_CXX cannot create executables.]) ) | 55 | AC_MSG_ERROR([installation or configuration problem: host compiler $HOST_CXX cannot create executables.]) ) |
56 | 56 | ||
57 | CC=$_SAVE_CC | 57 | CC=$_SAVE_CC |
58 | @@ -330,7 +331,7 @@ | 58 | @@ -348,7 +349,7 @@ |
59 | ;; | 59 | ;; |
60 | esac | 60 | esac |
61 | 61 | ||
@@ -64,7 +64,7 @@ Index: git/configure.in | |||
64 | unset ac_cv_prog_CC | 64 | unset ac_cv_prog_CC |
65 | AC_PROG_CC | 65 | AC_PROG_CC |
66 | AC_CHECK_PROGS(CXX, $CXX "${target_alias}-g++" "${target}-g++", :) | 66 | AC_CHECK_PROGS(CXX, $CXX "${target_alias}-g++" "${target}-g++", :) |
67 | @@ -354,37 +355,7 @@ | 67 | @@ -372,37 +373,6 @@ |
68 | AC_CHECK_PROGS(STRIP, $STRIP "${target_alias}-strip" "${target}-strip", :) | 68 | AC_CHECK_PROGS(STRIP, $STRIP "${target_alias}-strip" "${target}-strip", :) |
69 | AC_CHECK_PROGS(WINDRES, $WINDRES "${target_alias}-windres" "${target}-windres", :) | 69 | AC_CHECK_PROGS(WINDRES, $WINDRES "${target_alias}-windres" "${target}-windres", :) |
70 | AC_DEFINE(CROSS_COMPILE) | 70 | AC_DEFINE(CROSS_COMPILE) |
@@ -72,7 +72,7 @@ Index: git/configure.in | |||
72 | - AC_PROG_CC | 72 | - AC_PROG_CC |
73 | - AC_PROG_CXX | 73 | - AC_PROG_CXX |
74 | - AC_PROG_RANLIB | 74 | - AC_PROG_RANLIB |
75 | - AC_PATH_PROGS(AS, $AS as, $CC) | 75 | - MOZ_PATH_PROGS(AS, $AS as, $CC) |
76 | - AC_CHECK_PROGS(AR, ar, :) | 76 | - AC_CHECK_PROGS(AR, ar, :) |
77 | - AC_CHECK_PROGS(LD, ld, :) | 77 | - AC_CHECK_PROGS(LD, ld, :) |
78 | - AC_CHECK_PROGS(STRIP, strip, :) | 78 | - AC_CHECK_PROGS(STRIP, strip, :) |
@@ -99,11 +99,10 @@ Index: git/configure.in | |||
99 | - HOST_AR="$AR" | 99 | - HOST_AR="$AR" |
100 | - fi | 100 | - fi |
101 | -fi | 101 | -fi |
102 | + | ||
103 | 102 | ||
104 | GNU_AS= | 103 | GNU_AS= |
105 | GNU_LD= | 104 | GNU_LD= |
106 | @@ -1467,6 +1438,7 @@ | 105 | @@ -1569,6 +1539,7 @@ |
107 | ' | 106 | ' |
108 | 107 | ||
109 | dnl test that the macros actually work: | 108 | dnl test that the macros actually work: |
@@ -111,7 +110,7 @@ Index: git/configure.in | |||
111 | AC_MSG_CHECKING(that static assertion macros used in autoconf tests work) | 110 | AC_MSG_CHECKING(that static assertion macros used in autoconf tests work) |
112 | AC_CACHE_VAL(ac_cv_static_assertion_macros_work, | 111 | AC_CACHE_VAL(ac_cv_static_assertion_macros_work, |
113 | [AC_LANG_SAVE | 112 | [AC_LANG_SAVE |
114 | @@ -2625,9 +2597,13 @@ | 113 | @@ -2730,9 +2701,13 @@ |
115 | AC_LANG_C | 114 | AC_LANG_C |
116 | AC_HEADER_STDC | 115 | AC_HEADER_STDC |
117 | AC_C_CONST | 116 | AC_C_CONST |
@@ -125,7 +124,7 @@ Index: git/configure.in | |||
125 | AC_TYPE_SIZE_T | 124 | AC_TYPE_SIZE_T |
126 | AC_STRUCT_ST_BLKSIZE | 125 | AC_STRUCT_ST_BLKSIZE |
127 | AC_MSG_CHECKING(for siginfo_t) | 126 | AC_MSG_CHECKING(for siginfo_t) |
128 | @@ -3009,19 +2985,9 @@ | 127 | @@ -3115,19 +3090,9 @@ |
129 | dnl We don't want to link against libm or libpthread on Darwin since | 128 | dnl We don't want to link against libm or libpthread on Darwin since |
130 | dnl they both are just symlinks to libSystem and explicitly linking | 129 | dnl they both are just symlinks to libSystem and explicitly linking |
131 | dnl against libSystem causes issues when debugging (see bug 299601). | 130 | dnl against libSystem causes issues when debugging (see bug 299601). |
@@ -146,7 +145,7 @@ Index: git/configure.in | |||
146 | 145 | ||
147 | _SAVE_CFLAGS="$CFLAGS" | 146 | _SAVE_CFLAGS="$CFLAGS" |
148 | CFLAGS="$CFLAGS -D_GNU_SOURCE" | 147 | CFLAGS="$CFLAGS -D_GNU_SOURCE" |
149 | @@ -6763,18 +6729,13 @@ | 148 | @@ -6931,18 +6896,13 @@ |
150 | 149 | ||
151 | # Demangle only for debug or trace-malloc builds | 150 | # Demangle only for debug or trace-malloc builds |
152 | MOZ_DEMANGLE_SYMBOLS= | 151 | MOZ_DEMANGLE_SYMBOLS= |
@@ -167,7 +166,7 @@ Index: git/configure.in | |||
167 | 166 | ||
168 | dnl ======================================================== | 167 | dnl ======================================================== |
169 | dnl = | 168 | dnl = |
170 | @@ -7288,10 +7249,7 @@ | 169 | @@ -7454,10 +7414,7 @@ |
171 | dnl if no gtk/libIDL1 or gtk2/libIDL2 combination was found, fall back | 170 | dnl if no gtk/libIDL1 or gtk2/libIDL2 combination was found, fall back |
172 | dnl to either libIDL1 or libIDL2. | 171 | dnl to either libIDL1 or libIDL2. |
173 | if test -z "$_LIBIDL_FOUND"; then | 172 | if test -z "$_LIBIDL_FOUND"; then |
@@ -178,19 +177,21 @@ Index: git/configure.in | |||
178 | fi | 177 | fi |
179 | dnl | 178 | dnl |
180 | dnl If we don't have a libIDL config program & not cross-compiling, | 179 | dnl If we don't have a libIDL config program & not cross-compiling, |
181 | @@ -7364,11 +7322,7 @@ | 180 | @@ -7529,13 +7486,7 @@ |
181 | fi | ||
182 | 182 | ||
183 | if test -z "$SKIP_PATH_CHECKS"; then | 183 | if test -z "$SKIP_PATH_CHECKS"; then |
184 | if test -z "${GLIB_CFLAGS}" || test -z "${GLIB_LIBS}" ; then | 184 | -if test -z "${GLIB_CFLAGS}" || test -z "${GLIB_LIBS}" ; then |
185 | - if test "$MOZ_ENABLE_GTK2" || test "$USE_ELF_DYNSTR_GC" || test "$MOZ_ENABLE_HEADLESS"; then | 185 | - if test "$MOZ_ENABLE_GTK2" || test "$USE_ELF_DYNSTR_GC" || test "$MOZ_ENABLE_HEADLESS"; then |
186 | PKG_CHECK_MODULES(GLIB, glib-2.0 >= 1.3.7 gobject-2.0) | 186 | PKG_CHECK_MODULES(GLIB, glib-2.0 >= 1.3.7 gobject-2.0) |
187 | - else | 187 | - else |
188 | - AM_PATH_GLIB(${GLIB_VERSION}) | 188 | - AM_PATH_GLIB(${GLIB_VERSION}) |
189 | - fi | 189 | - fi |
190 | fi | 190 | -fi |
191 | fi | 191 | fi |
192 | 192 | ||
193 | @@ -8214,10 +8168,7 @@ | 193 | if test -z "${GLIB_GMODULE_LIBS}" -a -n "${GLIB_CONFIG}"; then |
194 | @@ -8346,10 +8297,7 @@ | ||
194 | HAVE_WCRTOMB | 195 | HAVE_WCRTOMB |
195 | " | 196 | " |
196 | 197 | ||
@@ -202,7 +203,7 @@ Index: git/configure.in | |||
202 | ) | 203 | ) |
203 | 204 | ||
204 | # Save the defines header file before autoconf removes it. | 205 | # Save the defines header file before autoconf removes it. |
205 | @@ -8276,28 +8227,9 @@ | 206 | @@ -8408,31 +8356,11 @@ |
206 | dnl To add new Makefiles, edit allmakefiles.sh. | 207 | dnl To add new Makefiles, edit allmakefiles.sh. |
207 | dnl allmakefiles.sh sets the variable, MAKEFILES. | 208 | dnl allmakefiles.sh sets the variable, MAKEFILES. |
208 | . ${srcdir}/allmakefiles.sh | 209 | . ${srcdir}/allmakefiles.sh |
@@ -225,14 +226,16 @@ Index: git/configure.in | |||
225 | -. ./conftest.sh | 226 | -. ./conftest.sh |
226 | -rm conftest.sh | 227 | -rm conftest.sh |
227 | 228 | ||
228 | -echo $MAKEFILES > unallmakefiles | 229 | echo $MAKEFILES > unallmakefiles |
229 | 230 | ||
230 | -AC_OUTPUT($MAKEFILES) | 231 | mv -f config/autoconf.mk config/autoconf.mk.orig 2> /dev/null |
231 | +echo $MAKEFILES > unallmakefiles | ||
232 | 232 | ||
233 | -AC_OUTPUT($MAKEFILES) | ||
234 | - | ||
233 | dnl Prevent the regeneration of cairo-features.h forcing rebuilds of gfx stuff | 235 | dnl Prevent the regeneration of cairo-features.h forcing rebuilds of gfx stuff |
234 | if test "$CAIRO_FEATURES_H"; then | 236 | if test "$CAIRO_FEATURES_H"; then |
235 | @@ -8323,14 +8255,14 @@ | 237 | if cmp -s $CAIRO_FEATURES_H "$CAIRO_FEATURES_H".orig; then |
238 | @@ -8458,14 +8386,14 @@ | ||
236 | HOST_LDFLAGS="$_SUBDIR_HOST_LDFLAGS" | 239 | HOST_LDFLAGS="$_SUBDIR_HOST_LDFLAGS" |
237 | RC= | 240 | RC= |
238 | 241 | ||
@@ -250,7 +253,7 @@ Index: git/configure.in | |||
250 | if test -z "$MOZ_DEBUG"; then | 253 | if test -z "$MOZ_DEBUG"; then |
251 | ac_configure_args="$ac_configure_args --disable-debug" | 254 | ac_configure_args="$ac_configure_args --disable-debug" |
252 | fi | 255 | fi |
253 | @@ -8346,8 +8278,7 @@ | 256 | @@ -8481,8 +8409,7 @@ |
254 | if test -n "$USE_ARM_KUSER"; then | 257 | if test -n "$USE_ARM_KUSER"; then |
255 | ac_configure_args="$ac_configure_args --with-arm-kuser" | 258 | ac_configure_args="$ac_configure_args --with-arm-kuser" |
256 | fi | 259 | fi |
@@ -260,7 +263,7 @@ Index: git/configure.in | |||
260 | fi | 263 | fi |
261 | 264 | ||
262 | if test -z "$MOZ_NATIVE_NSPR"; then | 265 | if test -z "$MOZ_NATIVE_NSPR"; then |
263 | @@ -8364,7 +8295,6 @@ | 266 | @@ -8499,7 +8426,6 @@ |
264 | 267 | ||
265 | # Run the SpiderMonkey 'configure' script. | 268 | # Run the SpiderMonkey 'configure' script. |
266 | dist=$MOZ_BUILD_ROOT/dist | 269 | dist=$MOZ_BUILD_ROOT/dist |
@@ -268,7 +271,7 @@ Index: git/configure.in | |||
268 | ac_configure_args="$ac_configure_args --enable-threadsafe" | 271 | ac_configure_args="$ac_configure_args --enable-threadsafe" |
269 | if test -z "$MOZ_NATIVE_NSPR"; then | 272 | if test -z "$MOZ_NATIVE_NSPR"; then |
270 | ac_configure_args="$ac_configure_args --with-nspr-cflags='$NSPR_CFLAGS'" | 273 | ac_configure_args="$ac_configure_args --with-nspr-cflags='$NSPR_CFLAGS'" |
271 | @@ -8378,7 +8308,11 @@ | 274 | @@ -8513,11 +8439,14 @@ |
272 | if test "$MOZ_MEMORY"; then | 275 | if test "$MOZ_MEMORY"; then |
273 | ac_configure_args="$ac_configure_args --enable-jemalloc" | 276 | ac_configure_args="$ac_configure_args --enable-jemalloc" |
274 | fi | 277 | fi |
@@ -277,15 +280,18 @@ Index: git/configure.in | |||
277 | +AC_CONFIG_SUBDIRS(js/src) | 280 | +AC_CONFIG_SUBDIRS(js/src) |
278 | 281 | ||
279 | fi # COMPILE_ENVIRONMENT && !LIBXUL_SDK_DIR | 282 | fi # COMPILE_ENVIRONMENT && !LIBXUL_SDK_DIR |
280 | + | 283 | |
281 | +m4_pattern_allow(AS_BIN) | 284 | +m4_pattern_allow(AS_BIN) |
282 | + | 285 | + |
283 | +AC_OUTPUT($MAKEFILES) | 286 | +AC_OUTPUT($MAKEFILES) |
284 | + | 287 | + |
285 | Index: git/js/src/configure.in | 288 | dnl Prevent the regeneration of autoconf.mk forcing rebuilds of the world |
289 | dnl Needs to be at the end to respect possible changes from NSPR configure | ||
290 | if cmp -s config/autoconf.mk config/autoconf.mk.orig; then | ||
291 | Index: offscreen/js/src/configure.in | ||
286 | =================================================================== | 292 | =================================================================== |
287 | --- git.orig/js/src/configure.in 2009-01-27 16:11:53.000000000 +0000 | 293 | --- offscreen.orig/js/src/configure.in 2009-04-16 22:51:49.000000000 +0100 |
288 | +++ git/js/src/configure.in 2009-01-27 16:16:45.000000000 +0000 | 294 | +++ offscreen/js/src/configure.in 2009-04-16 23:06:42.000000000 +0100 |
289 | @@ -62,7 +62,6 @@ | 295 | @@ -62,7 +62,6 @@ |
290 | 296 | ||
291 | AC_PREREQ(2.13) | 297 | AC_PREREQ(2.13) |
@@ -313,7 +319,7 @@ Index: git/js/src/configure.in | |||
313 | dnl Set various checks | 319 | dnl Set various checks |
314 | dnl ======================================================== | 320 | dnl ======================================================== |
315 | MISSING_X= | 321 | MISSING_X= |
316 | @@ -201,7 +205,7 @@ | 322 | @@ -200,7 +204,7 @@ |
317 | 323 | ||
318 | if test "$COMPILE_ENVIRONMENT"; then | 324 | if test "$COMPILE_ENVIRONMENT"; then |
319 | 325 | ||
@@ -322,7 +328,7 @@ Index: git/js/src/configure.in | |||
322 | echo "cross compiling from $host to $target" | 328 | echo "cross compiling from $host to $target" |
323 | 329 | ||
324 | _SAVE_CC="$CC" | 330 | _SAVE_CC="$CC" |
325 | @@ -238,7 +242,7 @@ | 331 | @@ -237,7 +241,7 @@ |
326 | 332 | ||
327 | AC_MSG_CHECKING([whether the host c compiler ($HOST_CC $HOST_CFLAGS $HOST_LDFLAGS) works]) | 333 | AC_MSG_CHECKING([whether the host c compiler ($HOST_CC $HOST_CFLAGS $HOST_LDFLAGS) works]) |
328 | AC_TRY_COMPILE([], [return(0);], | 334 | AC_TRY_COMPILE([], [return(0);], |
@@ -331,7 +337,7 @@ Index: git/js/src/configure.in | |||
331 | AC_MSG_ERROR([installation or configuration problem: host compiler $HOST_CC cannot create executables.]) ) | 337 | AC_MSG_ERROR([installation or configuration problem: host compiler $HOST_CC cannot create executables.]) ) |
332 | 338 | ||
333 | CC="$HOST_CXX" | 339 | CC="$HOST_CXX" |
334 | @@ -246,7 +250,7 @@ | 340 | @@ -245,7 +249,7 @@ |
335 | 341 | ||
336 | AC_MSG_CHECKING([whether the host c++ compiler ($HOST_CXX $HOST_CXXFLAGS $HOST_LDFLAGS) works]) | 342 | AC_MSG_CHECKING([whether the host c++ compiler ($HOST_CXX $HOST_CXXFLAGS $HOST_LDFLAGS) works]) |
337 | AC_TRY_COMPILE([], [return(0);], | 343 | AC_TRY_COMPILE([], [return(0);], |
@@ -340,7 +346,7 @@ Index: git/js/src/configure.in | |||
340 | AC_MSG_ERROR([installation or configuration problem: host compiler $HOST_CXX cannot create executables.]) ) | 346 | AC_MSG_ERROR([installation or configuration problem: host compiler $HOST_CXX cannot create executables.]) ) |
341 | 347 | ||
342 | CC=$_SAVE_CC | 348 | CC=$_SAVE_CC |
343 | @@ -267,7 +271,7 @@ | 349 | @@ -266,7 +270,7 @@ |
344 | ;; | 350 | ;; |
345 | esac | 351 | esac |
346 | 352 | ||
@@ -349,7 +355,7 @@ Index: git/js/src/configure.in | |||
349 | unset ac_cv_prog_CC | 355 | unset ac_cv_prog_CC |
350 | AC_PROG_CC | 356 | AC_PROG_CC |
351 | AC_CHECK_PROGS(CXX, $CXX "${target_alias}-g++" "${target}-g++", :) | 357 | AC_CHECK_PROGS(CXX, $CXX "${target_alias}-g++" "${target}-g++", :) |
352 | @@ -297,37 +301,6 @@ | 358 | @@ -296,37 +300,6 @@ |
353 | dnl able to run ppc code in a translated environment, making a cross | 359 | dnl able to run ppc code in a translated environment, making a cross |
354 | dnl compiler appear native. So we override that here. | 360 | dnl compiler appear native. So we override that here. |
355 | cross_compiling=yes | 361 | cross_compiling=yes |
@@ -357,7 +363,7 @@ Index: git/js/src/configure.in | |||
357 | - AC_PROG_CC | 363 | - AC_PROG_CC |
358 | - AC_PROG_CXX | 364 | - AC_PROG_CXX |
359 | - AC_PROG_RANLIB | 365 | - AC_PROG_RANLIB |
360 | - AC_PATH_PROGS(AS, $AS as, $CC) | 366 | - MOZ_PATH_PROGS(AS, $AS as, $CC) |
361 | - AC_CHECK_PROGS(AR, ar, :) | 367 | - AC_CHECK_PROGS(AR, ar, :) |
362 | - AC_CHECK_PROGS(LD, ld, :) | 368 | - AC_CHECK_PROGS(LD, ld, :) |
363 | - AC_CHECK_PROGS(STRIP, strip, :) | 369 | - AC_CHECK_PROGS(STRIP, strip, :) |
@@ -387,7 +393,7 @@ Index: git/js/src/configure.in | |||
387 | 393 | ||
388 | GNU_AS= | 394 | GNU_AS= |
389 | GNU_LD= | 395 | GNU_LD= |
390 | @@ -1396,6 +1369,8 @@ | 396 | @@ -1435,6 +1408,8 @@ |
391 | fi # GNU_CC | 397 | fi # GNU_CC |
392 | fi # COMPILE_ENVIRONMENT | 398 | fi # COMPILE_ENVIRONMENT |
393 | 399 | ||
@@ -396,7 +402,7 @@ Index: git/js/src/configure.in | |||
396 | dnl ================================================================= | 402 | dnl ================================================================= |
397 | dnl Set up and test static assertion macros used to avoid AC_TRY_RUN, | 403 | dnl Set up and test static assertion macros used to avoid AC_TRY_RUN, |
398 | dnl which is bad when cross compiling. | 404 | dnl which is bad when cross compiling. |
399 | @@ -2524,9 +2499,13 @@ | 405 | @@ -2565,9 +2540,13 @@ |
400 | AC_LANG_C | 406 | AC_LANG_C |
401 | AC_HEADER_STDC | 407 | AC_HEADER_STDC |
402 | AC_C_CONST | 408 | AC_C_CONST |
@@ -410,7 +416,7 @@ Index: git/js/src/configure.in | |||
410 | AC_TYPE_SIZE_T | 416 | AC_TYPE_SIZE_T |
411 | AC_STRUCT_ST_BLKSIZE | 417 | AC_STRUCT_ST_BLKSIZE |
412 | AC_MSG_CHECKING(for siginfo_t) | 418 | AC_MSG_CHECKING(for siginfo_t) |
413 | @@ -2551,7 +2530,8 @@ | 419 | @@ -2592,7 +2571,8 @@ |
414 | 420 | ||
415 | AC_CHECK_HEADER(stdint.h) | 421 | AC_CHECK_HEADER(stdint.h) |
416 | if test "$ac_cv_header_stdint_h" = yes; then | 422 | if test "$ac_cv_header_stdint_h" = yes; then |
@@ -420,7 +426,7 @@ Index: git/js/src/configure.in | |||
420 | else | 426 | else |
421 | dnl We'll figure them out for ourselves. List more likely types | 427 | dnl We'll figure them out for ourselves. List more likely types |
422 | dnl earlier. If we ever really encounter a size for which none of | 428 | dnl earlier. If we ever really encounter a size for which none of |
423 | @@ -2937,10 +2917,7 @@ | 429 | @@ -2990,10 +2970,7 @@ |
424 | ;; | 430 | ;; |
425 | *) | 431 | *) |
426 | AC_CHECK_LIB(m, atan) | 432 | AC_CHECK_LIB(m, atan) |
@@ -432,7 +438,7 @@ Index: git/js/src/configure.in | |||
432 | ;; | 438 | ;; |
433 | esac | 439 | esac |
434 | 440 | ||
435 | @@ -3839,6 +3816,7 @@ | 441 | @@ -3908,6 +3885,7 @@ |
436 | [ --with-nspr-libs=LIBS Pass LIBS to LD when linking code that uses NSPR. | 442 | [ --with-nspr-libs=LIBS Pass LIBS to LD when linking code that uses NSPR. |
437 | See --with-nspr-cflags for more details.], | 443 | See --with-nspr-cflags for more details.], |
438 | NSPR_LIBS=$withval) | 444 | NSPR_LIBS=$withval) |
@@ -440,7 +446,7 @@ Index: git/js/src/configure.in | |||
440 | AC_SUBST(NSPR_CFLAGS) | 446 | AC_SUBST(NSPR_CFLAGS) |
441 | AC_SUBST(NSPR_LIBS) | 447 | AC_SUBST(NSPR_LIBS) |
442 | 448 | ||
443 | @@ -4467,18 +4445,11 @@ | 449 | @@ -4542,18 +4520,11 @@ |
444 | 450 | ||
445 | # Demangle only for debug or trace-malloc builds | 451 | # Demangle only for debug or trace-malloc builds |
446 | MOZ_DEMANGLE_SYMBOLS= | 452 | MOZ_DEMANGLE_SYMBOLS= |
@@ -459,7 +465,7 @@ Index: git/js/src/configure.in | |||
459 | 465 | ||
460 | dnl ======================================================== | 466 | dnl ======================================================== |
461 | dnl = | 467 | dnl = |
462 | @@ -5161,6 +5132,8 @@ | 468 | @@ -5256,6 +5227,8 @@ |
463 | done | 469 | done |
464 | AC_SUBST(LIBS_PATH) | 470 | AC_SUBST(LIBS_PATH) |
465 | 471 | ||
@@ -468,15 +474,15 @@ Index: git/js/src/configure.in | |||
468 | dnl ======================================================== | 474 | dnl ======================================================== |
469 | dnl JavaScript shell | 475 | dnl JavaScript shell |
470 | dnl ======================================================== | 476 | dnl ======================================================== |
471 | @@ -5292,3 +5265,4 @@ | 477 | @@ -5396,3 +5369,4 @@ |
472 | # 'js-config' in Makefile.in. | 478 | # 'js-config' in Makefile.in. |
473 | AC_MSG_RESULT(invoking make to create js-config script) | 479 | AC_MSG_RESULT(invoking make to create js-config script) |
474 | $MAKE js-config | 480 | $MAKE js-config |
475 | + | 481 | + |
476 | Index: git/nsprpub/configure.in | 482 | Index: offscreen/nsprpub/configure.in |
477 | =================================================================== | 483 | =================================================================== |
478 | --- git.orig/nsprpub/configure.in 2009-01-27 16:12:40.000000000 +0000 | 484 | --- offscreen.orig/nsprpub/configure.in 2009-04-16 18:09:00.000000000 +0100 |
479 | +++ git/nsprpub/configure.in 2009-01-27 16:16:45.000000000 +0000 | 485 | +++ offscreen/nsprpub/configure.in 2009-04-16 23:06:42.000000000 +0100 |
480 | @@ -42,7 +42,6 @@ | 486 | @@ -42,7 +42,6 @@ |
481 | AC_PREREQ(2.12) | 487 | AC_PREREQ(2.12) |
482 | AC_INIT(config/libc_r.h) | 488 | AC_INIT(config/libc_r.h) |
@@ -556,7 +562,7 @@ Index: git/nsprpub/configure.in | |||
556 | 562 | ||
557 | dnl ======================================================== | 563 | dnl ======================================================== |
558 | dnl Check for gcc -pipe support | 564 | dnl Check for gcc -pipe support |
559 | @@ -2254,10 +2226,7 @@ | 565 | @@ -2249,10 +2221,7 @@ |
560 | *-darwin*|*-beos*) | 566 | *-darwin*|*-beos*) |
561 | ;; | 567 | ;; |
562 | *) | 568 | *) |
@@ -568,7 +574,7 @@ Index: git/nsprpub/configure.in | |||
568 | esac | 574 | esac |
569 | 575 | ||
570 | 576 | ||
571 | @@ -2874,6 +2843,8 @@ | 577 | @@ -2869,6 +2838,8 @@ |
572 | dnl pr/tests/w16gui/Makefile | 578 | dnl pr/tests/w16gui/Makefile |
573 | dnl tools/Makefile | 579 | dnl tools/Makefile |
574 | 580 | ||
@@ -577,17 +583,17 @@ Index: git/nsprpub/configure.in | |||
577 | if test -z "$USE_PTHREADS" && test -z "$USE_BTHREADS"; then | 583 | if test -z "$USE_PTHREADS" && test -z "$USE_BTHREADS"; then |
578 | MAKEFILES="$MAKEFILES pr/src/threads/combined/Makefile" | 584 | MAKEFILES="$MAKEFILES pr/src/threads/combined/Makefile" |
579 | elif test -n "$USE_PTHREADS"; then | 585 | elif test -n "$USE_PTHREADS"; then |
580 | @@ -2889,3 +2860,5 @@ | 586 | @@ -2884,3 +2855,5 @@ |
581 | echo $MAKEFILES > unallmakefiles | 587 | echo $MAKEFILES > unallmakefiles |
582 | 588 | ||
583 | AC_OUTPUT([$MAKEFILES], [chmod +x config/nspr-config]) | 589 | AC_OUTPUT([$MAKEFILES], [chmod +x config/nspr-config]) |
584 | + | 590 | + |
585 | + | 591 | + |
586 | Index: git/toolkit/toolkit-makefiles.sh | 592 | Index: offscreen/toolkit/toolkit-makefiles.sh |
587 | =================================================================== | 593 | =================================================================== |
588 | --- git.orig/toolkit/toolkit-makefiles.sh 2009-01-27 16:13:11.000000000 +0000 | 594 | --- offscreen.orig/toolkit/toolkit-makefiles.sh 2009-04-16 22:51:50.000000000 +0100 |
589 | +++ git/toolkit/toolkit-makefiles.sh 2009-01-27 16:16:45.000000000 +0000 | 595 | +++ offscreen/toolkit/toolkit-makefiles.sh 2009-04-16 23:06:42.000000000 +0100 |
590 | @@ -632,7 +632,6 @@ | 596 | @@ -628,7 +628,6 @@ |
591 | toolkit/crashreporter/client/Makefile | 597 | toolkit/crashreporter/client/Makefile |
592 | toolkit/crashreporter/google-breakpad/src/client/Makefile | 598 | toolkit/crashreporter/google-breakpad/src/client/Makefile |
593 | toolkit/crashreporter/google-breakpad/src/client/mac/handler/Makefile | 599 | toolkit/crashreporter/google-breakpad/src/client/mac/handler/Makefile |
@@ -595,15 +601,15 @@ Index: git/toolkit/toolkit-makefiles.sh | |||
595 | toolkit/crashreporter/google-breakpad/src/client/windows/handler/Makefile | 601 | toolkit/crashreporter/google-breakpad/src/client/windows/handler/Makefile |
596 | toolkit/crashreporter/google-breakpad/src/client/windows/sender/Makefile | 602 | toolkit/crashreporter/google-breakpad/src/client/windows/sender/Makefile |
597 | toolkit/crashreporter/google-breakpad/src/common/Makefile | 603 | toolkit/crashreporter/google-breakpad/src/common/Makefile |
598 | Index: git/js/src/Makefile.in | 604 | Index: offscreen/js/src/Makefile.in |
599 | =================================================================== | 605 | =================================================================== |
600 | --- git.orig/js/src/Makefile.in 2009-01-27 16:11:52.000000000 +0000 | 606 | --- offscreen.orig/js/src/Makefile.in 2009-04-16 18:07:56.000000000 +0100 |
601 | +++ git/js/src/Makefile.in 2009-01-27 16:16:45.000000000 +0000 | 607 | +++ offscreen/js/src/Makefile.in 2009-04-16 23:06:42.000000000 +0100 |
602 | @@ -513,20 +513,8 @@ | 608 | @@ -507,20 +507,8 @@ |
603 | 609 | ||
604 | export:: jsautocfg.h | 610 | export:: jsautocfg.h |
605 | 611 | ||
606 | -ifeq (,$(CROSS_COMPILE)$(filter-out WINNT,$(OS_ARCH))) | 612 | -ifeq (,$(CROSS_COMPILE)$(GNU_CC)$(filter-out WINNT,$(OS_ARCH))) |
607 | jsautocfg.h: | 613 | jsautocfg.h: |
608 | touch $@ | 614 | touch $@ |
609 | -else | 615 | -else |
@@ -620,7 +626,7 @@ Index: git/js/src/Makefile.in | |||
620 | 626 | ||
621 | # jscpucfg is a strange target | 627 | # jscpucfg is a strange target |
622 | # Needs to be built with the host compiler but needs to include | 628 | # Needs to be built with the host compiler but needs to include |
623 | @@ -556,7 +544,7 @@ | 629 | @@ -550,7 +538,7 @@ |
624 | echo no need to build jscpucfg $< | 630 | echo no need to build jscpucfg $< |
625 | else | 631 | else |
626 | jscpucfg$(HOST_BIN_SUFFIX): jscpucfg.cpp Makefile.in | 632 | jscpucfg$(HOST_BIN_SUFFIX): jscpucfg.cpp Makefile.in |
@@ -629,10 +635,10 @@ Index: git/js/src/Makefile.in | |||
629 | endif | 635 | endif |
630 | endif | 636 | endif |
631 | 637 | ||
632 | Index: git/js/src/xpconnect/loader/mozJSComponentLoader.cpp | 638 | Index: offscreen/js/src/xpconnect/loader/mozJSComponentLoader.cpp |
633 | =================================================================== | 639 | =================================================================== |
634 | --- git.orig/js/src/xpconnect/loader/mozJSComponentLoader.cpp 2009-01-27 16:11:55.000000000 +0000 | 640 | --- offscreen.orig/js/src/xpconnect/loader/mozJSComponentLoader.cpp 2009-04-16 18:08:00.000000000 +0100 |
635 | +++ git/js/src/xpconnect/loader/mozJSComponentLoader.cpp 2009-01-27 16:16:45.000000000 +0000 | 641 | +++ offscreen/js/src/xpconnect/loader/mozJSComponentLoader.cpp 2009-04-16 23:06:42.000000000 +0100 |
636 | @@ -47,6 +47,8 @@ | 642 | @@ -47,6 +47,8 @@ |
637 | 643 | ||
638 | #include <stdarg.h> | 644 | #include <stdarg.h> |
@@ -642,10 +648,10 @@ Index: git/js/src/xpconnect/loader/mozJSComponentLoader.cpp | |||
642 | #include "prlog.h" | 648 | #include "prlog.h" |
643 | 649 | ||
644 | #include "nsCOMPtr.h" | 650 | #include "nsCOMPtr.h" |
645 | Index: git/js/src/xpconnect/loader/mozJSSubScriptLoader.cpp | 651 | Index: offscreen/js/src/xpconnect/loader/mozJSSubScriptLoader.cpp |
646 | =================================================================== | 652 | =================================================================== |
647 | --- git.orig/js/src/xpconnect/loader/mozJSSubScriptLoader.cpp 2009-01-27 16:11:55.000000000 +0000 | 653 | --- offscreen.orig/js/src/xpconnect/loader/mozJSSubScriptLoader.cpp 2009-04-16 18:08:00.000000000 +0100 |
648 | +++ git/js/src/xpconnect/loader/mozJSSubScriptLoader.cpp 2009-01-27 16:16:45.000000000 +0000 | 654 | +++ offscreen/js/src/xpconnect/loader/mozJSSubScriptLoader.cpp 2009-04-16 23:06:42.000000000 +0100 |
649 | @@ -39,6 +39,8 @@ | 655 | @@ -39,6 +39,8 @@ |
650 | * | 656 | * |
651 | * ***** END LICENSE BLOCK ***** */ | 657 | * ***** END LICENSE BLOCK ***** */ |
@@ -655,10 +661,10 @@ Index: git/js/src/xpconnect/loader/mozJSSubScriptLoader.cpp | |||
655 | #if !defined(XPCONNECT_STANDALONE) && !defined(NO_SUBSCRIPT_LOADER) | 661 | #if !defined(XPCONNECT_STANDALONE) && !defined(NO_SUBSCRIPT_LOADER) |
656 | 662 | ||
657 | #include "mozJSSubScriptLoader.h" | 663 | #include "mozJSSubScriptLoader.h" |
658 | Index: git/modules/lcms/include/icc34.h | 664 | Index: offscreen/modules/lcms/include/icc34.h |
659 | =================================================================== | 665 | =================================================================== |
660 | --- git.orig/modules/lcms/include/icc34.h 2009-01-27 16:12:31.000000000 +0000 | 666 | --- offscreen.orig/modules/lcms/include/icc34.h 2009-04-16 18:08:47.000000000 +0100 |
661 | +++ git/modules/lcms/include/icc34.h 2009-01-27 16:16:45.000000000 +0000 | 667 | +++ offscreen/modules/lcms/include/icc34.h 2009-04-16 23:06:42.000000000 +0100 |
662 | @@ -144,7 +144,7 @@ | 668 | @@ -144,7 +144,7 @@ |
663 | */ | 669 | */ |
664 | 670 | ||
@@ -668,10 +674,10 @@ Index: git/modules/lcms/include/icc34.h | |||
668 | /* | 674 | /* |
669 | June 9, 2003, Adapted for use with configure by Bob Friesenhahn | 675 | June 9, 2003, Adapted for use with configure by Bob Friesenhahn |
670 | Added the stupid check for autoconf by Marti Maria. | 676 | Added the stupid check for autoconf by Marti Maria. |
671 | Index: git/toolkit/mozapps/update/src/updater/Makefile.in | 677 | Index: offscreen/toolkit/mozapps/update/src/updater/Makefile.in |
672 | =================================================================== | 678 | =================================================================== |
673 | --- git.orig/toolkit/mozapps/update/src/updater/Makefile.in 2009-01-27 16:13:09.000000000 +0000 | 679 | --- offscreen.orig/toolkit/mozapps/update/src/updater/Makefile.in 2009-04-16 18:09:35.000000000 +0100 |
674 | +++ git/toolkit/mozapps/update/src/updater/Makefile.in 2009-01-27 16:16:45.000000000 +0000 | 680 | +++ offscreen/toolkit/mozapps/update/src/updater/Makefile.in 2009-04-16 23:06:42.000000000 +0100 |
675 | @@ -59,7 +59,7 @@ | 681 | @@ -59,7 +59,7 @@ |
676 | 682 | ||
677 | LIBS += \ | 683 | LIBS += \ |
@@ -681,10 +687,10 @@ Index: git/toolkit/mozapps/update/src/updater/Makefile.in | |||
681 | $(NULL) | 687 | $(NULL) |
682 | 688 | ||
683 | ifeq ($(OS_ARCH),WINNT) | 689 | ifeq ($(OS_ARCH),WINNT) |
684 | Index: git/xpcom/sample/program/Makefile.in | 690 | Index: offscreen/xpcom/sample/program/Makefile.in |
685 | =================================================================== | 691 | =================================================================== |
686 | --- git.orig/xpcom/sample/program/Makefile.in 2009-01-27 16:13:18.000000000 +0000 | 692 | --- offscreen.orig/xpcom/sample/program/Makefile.in 2009-04-16 18:09:47.000000000 +0100 |
687 | +++ git/xpcom/sample/program/Makefile.in 2009-01-27 16:16:45.000000000 +0000 | 693 | +++ offscreen/xpcom/sample/program/Makefile.in 2009-04-16 23:06:42.000000000 +0100 |
688 | @@ -57,7 +57,7 @@ | 694 | @@ -57,7 +57,7 @@ |
689 | # that the application be linked against the XPCOM dynamic library or the NSPR | 695 | # that the application be linked against the XPCOM dynamic library or the NSPR |
690 | # dynamic libraries. | 696 | # dynamic libraries. |
@@ -694,10 +700,10 @@ Index: git/xpcom/sample/program/Makefile.in | |||
694 | $(NULL) | 700 | $(NULL) |
695 | 701 | ||
696 | # Need to link with CoreFoundation on Mac | 702 | # Need to link with CoreFoundation on Mac |
697 | Index: git/xpcom/tools/registry/Makefile.in | 703 | Index: offscreen/xpcom/tools/registry/Makefile.in |
698 | =================================================================== | 704 | =================================================================== |
699 | --- git.orig/xpcom/tools/registry/Makefile.in 2009-01-27 16:13:18.000000000 +0000 | 705 | --- offscreen.orig/xpcom/tools/registry/Makefile.in 2009-04-16 18:09:48.000000000 +0100 |
700 | +++ git/xpcom/tools/registry/Makefile.in 2009-01-27 16:16:45.000000000 +0000 | 706 | +++ offscreen/xpcom/tools/registry/Makefile.in 2009-04-16 23:06:42.000000000 +0100 |
701 | @@ -54,7 +54,7 @@ | 707 | @@ -54,7 +54,7 @@ |
702 | SIMPLE_PROGRAMS = $(CPPSRCS:.cpp=$(BIN_SUFFIX)) | 708 | SIMPLE_PROGRAMS = $(CPPSRCS:.cpp=$(BIN_SUFFIX)) |
703 | 709 | ||
@@ -707,10 +713,10 @@ Index: git/xpcom/tools/registry/Makefile.in | |||
707 | $(NULL) | 713 | $(NULL) |
708 | 714 | ||
709 | # Need to link with CoreFoundation on Mac | 715 | # Need to link with CoreFoundation on Mac |
710 | Index: git/xulrunner/app/Makefile.in | 716 | Index: offscreen/xulrunner/app/Makefile.in |
711 | =================================================================== | 717 | =================================================================== |
712 | --- git.orig/xulrunner/app/Makefile.in 2009-01-27 16:13:19.000000000 +0000 | 718 | --- offscreen.orig/xulrunner/app/Makefile.in 2009-04-16 18:09:50.000000000 +0100 |
713 | +++ git/xulrunner/app/Makefile.in 2009-01-27 16:16:45.000000000 +0000 | 719 | +++ offscreen/xulrunner/app/Makefile.in 2009-04-16 23:06:42.000000000 +0100 |
714 | @@ -180,7 +180,7 @@ | 720 | @@ -180,7 +180,7 @@ |
715 | RCFLAGS += -DXULRUNNER_ICO=\"$(DIST)/branding/xulrunner.ico\" -DDOCUMENT_ICO=\"$(DIST)/branding/document.ico\" | 721 | RCFLAGS += -DXULRUNNER_ICO=\"$(DIST)/branding/xulrunner.ico\" -DDOCUMENT_ICO=\"$(DIST)/branding/document.ico\" |
716 | endif | 722 | endif |
@@ -720,10 +726,10 @@ Index: git/xulrunner/app/Makefile.in | |||
720 | 726 | ||
721 | include $(topsrcdir)/config/rules.mk | 727 | include $(topsrcdir)/config/rules.mk |
722 | 728 | ||
723 | Index: git/xulrunner/stub/Makefile.in | 729 | Index: offscreen/xulrunner/stub/Makefile.in |
724 | =================================================================== | 730 | =================================================================== |
725 | --- git.orig/xulrunner/stub/Makefile.in 2009-01-27 16:13:20.000000000 +0000 | 731 | --- offscreen.orig/xulrunner/stub/Makefile.in 2009-04-16 18:09:50.000000000 +0100 |
726 | +++ git/xulrunner/stub/Makefile.in 2009-01-27 16:16:45.000000000 +0000 | 732 | +++ offscreen/xulrunner/stub/Makefile.in 2009-04-16 23:06:42.000000000 +0100 |
727 | @@ -101,7 +101,7 @@ | 733 | @@ -101,7 +101,7 @@ |
728 | endif | 734 | endif |
729 | endif | 735 | endif |
@@ -733,10 +739,10 @@ Index: git/xulrunner/stub/Makefile.in | |||
733 | 739 | ||
734 | include $(topsrcdir)/config/rules.mk | 740 | include $(topsrcdir)/config/rules.mk |
735 | 741 | ||
736 | Index: git/modules/plugin/test/testplugin/Makefile.in | 742 | Index: offscreen/modules/plugin/test/testplugin/Makefile.in |
737 | =================================================================== | 743 | =================================================================== |
738 | --- git.orig/modules/plugin/test/testplugin/Makefile.in 2009-01-27 16:12:37.000000000 +0000 | 744 | --- offscreen.orig/modules/plugin/test/testplugin/Makefile.in 2009-04-16 18:08:56.000000000 +0100 |
739 | +++ git/modules/plugin/test/testplugin/Makefile.in 2009-01-27 16:16:45.000000000 +0000 | 745 | +++ offscreen/modules/plugin/test/testplugin/Makefile.in 2009-04-16 23:06:42.000000000 +0100 |
740 | @@ -63,9 +63,7 @@ | 746 | @@ -63,9 +63,7 @@ |
741 | CMMSRCS = nptest_macosx.mm | 747 | CMMSRCS = nptest_macosx.mm |
742 | endif | 748 | endif |
@@ -745,12 +751,12 @@ Index: git/modules/plugin/test/testplugin/Makefile.in | |||
745 | CPPSRCS += nptest_gtk2.cpp | 751 | CPPSRCS += nptest_gtk2.cpp |
746 | -endif | 752 | -endif |
747 | 753 | ||
748 | ifeq ($(MOZ_WIDGET_TOOLKIT),windows) | 754 | ifeq ($(MOZ_WIDGET_TOOLKIT),qt) |
749 | CPPSRCS += nptest_windows.cpp | 755 | CPPSRCS += nptest_qt.cpp |
750 | Index: git/xulrunner/installer/libxul-unstable.pc.in | 756 | Index: offscreen/xulrunner/installer/libxul-unstable.pc.in |
751 | =================================================================== | 757 | =================================================================== |
752 | --- git.orig/xulrunner/installer/libxul-unstable.pc.in 2009-01-27 18:07:55.000000000 +0000 | 758 | --- offscreen.orig/xulrunner/installer/libxul-unstable.pc.in 2009-04-16 18:09:50.000000000 +0100 |
753 | +++ git/xulrunner/installer/libxul-unstable.pc.in 2009-01-28 15:19:22.000000000 +0000 | 759 | +++ offscreen/xulrunner/installer/libxul-unstable.pc.in 2009-04-16 23:06:42.000000000 +0100 |
754 | @@ -8,5 +8,5 @@ | 760 | @@ -8,5 +8,5 @@ |
755 | Description: The Mozilla Runtime and Embedding Engine (unstable API) | 761 | Description: The Mozilla Runtime and Embedding Engine (unstable API) |
756 | Version: %MOZILLA_VERSION% | 762 | Version: %MOZILLA_VERSION% |
@@ -758,3 +764,12 @@ Index: git/xulrunner/installer/libxul-unstable.pc.in | |||
758 | -Libs: -L${sdkdir}/lib -lxpcomglue_s -lxul -lxpcom | 764 | -Libs: -L${sdkdir}/lib -lxpcomglue_s -lxul -lxpcom |
759 | +Libs: -L${sdkdir}/lib -lxpcomglue_s -lxul -lxpcom -lsmime3 -lnss3 -lssl3 -lnssutil3 -L${sdkdir}/../xulrunner-1.9.2a1pre | 765 | +Libs: -L${sdkdir}/lib -lxpcomglue_s -lxul -lxpcom -lsmime3 -lnss3 -lssl3 -lnssutil3 -L${sdkdir}/../xulrunner-1.9.2a1pre |
760 | Cflags: -I${includedir}/${includetype} %WCHAR_CFLAGS% | 766 | Cflags: -I${includedir}/${includetype} %WCHAR_CFLAGS% |
767 | Index: offscreen/js/src/aclocal.m4 | ||
768 | =================================================================== | ||
769 | --- offscreen.orig/js/src/aclocal.m4 2009-04-16 18:07:56.000000000 +0100 | ||
770 | +++ offscreen/js/src/aclocal.m4 2009-04-16 23:06:42.000000000 +0100 | ||
771 | @@ -9,4 +9,3 @@ | ||
772 | builtin(include, build/autoconf/moznbytetype.m4)dnl | ||
773 | builtin(include, build/autoconf/mozprog.m4)dnl | ||
774 | |||
775 | -MOZ_PROG_CHECKMSYS() | ||
diff --git a/meta/packages/mozilla-headless/mozilla-headless_git.bb b/meta/packages/mozilla-headless/mozilla-headless_git.bb index 9a016ad69b..7e59ed35f7 100644 --- a/meta/packages/mozilla-headless/mozilla-headless_git.bb +++ b/meta/packages/mozilla-headless/mozilla-headless_git.bb | |||
@@ -1,14 +1,14 @@ | |||
1 | 1 | ||
2 | SRC_URI = "git://git.o-hand.com/${PN}.git;protocol=git \ | 2 | SRC_URI = "hg://hg.mozilla.org/incubator;protocol=http;rev=c6fe23d41598;module=offscreen \ |
3 | file://configurefix.patch;patch=1 \ | 3 | file://configurefix.patch;patch=1 \ |
4 | file://jsautocfg.h \ | 4 | file://jsautocfg.h \ |
5 | file://mozconfig" | 5 | file://mozconfig" |
6 | PV = "0.0+git${SRCREV}" | 6 | PV = "0.0+hg-1.0+c6fe23d41598" |
7 | PR = "r8" | 7 | PR = "r0" |
8 | 8 | ||
9 | S = "${WORKDIR}/git" | 9 | S = "${WORKDIR}/offscreen" |
10 | 10 | ||
11 | DEPENDS = "gconf gnome-vfs pango dbus-glib alsa-lib libidl-native sqlite3" | 11 | DEPENDS = "gconf gnome-vfs pango dbus-glib alsa-lib libidl-native sqlite3 libidl" |
12 | 12 | ||
13 | FILES_${PN} += "${libdir}/xulrunner-1.9.2a1pre" | 13 | FILES_${PN} += "${libdir}/xulrunner-1.9.2a1pre" |
14 | FILES_${PN}-dev += "${libdir}/xulrunner-devel-1.9.2a1pre" | 14 | FILES_${PN}-dev += "${libdir}/xulrunner-devel-1.9.2a1pre" |
diff --git a/meta/packages/gnome/metacity-clutter/crosscompile.patch b/meta/packages/mutter/mutter/crosscompile.patch index b27383b09a..b27383b09a 100644 --- a/meta/packages/gnome/metacity-clutter/crosscompile.patch +++ b/meta/packages/mutter/mutter/crosscompile.patch | |||
diff --git a/meta/packages/gnome/metacity-clutter/fix_pkgconfig.patch b/meta/packages/mutter/mutter/fix_pkgconfig.patch index 3714383bc1..3714383bc1 100644 --- a/meta/packages/gnome/metacity-clutter/fix_pkgconfig.patch +++ b/meta/packages/mutter/mutter/fix_pkgconfig.patch | |||
diff --git a/meta/packages/gnome/metacity-clutter/nodocs.patch b/meta/packages/mutter/mutter/nodocs.patch index 98f43be5e8..98f43be5e8 100644 --- a/meta/packages/gnome/metacity-clutter/nodocs.patch +++ b/meta/packages/mutter/mutter/nodocs.patch | |||
diff --git a/meta/packages/gnome/metacity-clutter_git.bb b/meta/packages/mutter/mutter_git.bb index 00d9a9427e..7d3a3b8c4f 100644 --- a/meta/packages/gnome/metacity-clutter_git.bb +++ b/meta/packages/mutter/mutter_git.bb | |||
@@ -1,12 +1,12 @@ | |||
1 | SECTION = "x11/wm" | 1 | SECTION = "x11/wm" |
2 | DESCRIPTION = "Metacity is the boring window manager for the adult in you." | 2 | DESCRIPTION = "Metacity is the boring window manager for the adult in you. Mutter is metacity + clutter." |
3 | LICENSE = "GPL" | 3 | LICENSE = "GPL" |
4 | DEPENDS = "startup-notification gtk+ gconf clutter-0.8 gdk-pixbuf-csource-native intltool glib-2.0-native" | 4 | DEPENDS = "startup-notification gtk+ gconf clutter gdk-pixbuf-csource-native intltool glib-2.0-native" |
5 | PR = "r8" | 5 | PR = "r8" |
6 | PV = "2.25.1+git${SRCREV}" | 6 | PV = "2.25.1+git${SRCREV}" |
7 | inherit gnome update-alternatives | 7 | inherit gnome update-alternatives |
8 | 8 | ||
9 | SRC_URI = "git://git.o-hand.com/metacity-clutter.git;protocol=git;branch=clutter \ | 9 | SRC_URI = "git://git.gnome.org/mutter.git;protocol=git;branch=master \ |
10 | file://nodocs.patch;patch=1 \ | 10 | file://nodocs.patch;patch=1 \ |
11 | file://crosscompile.patch;patch=1 \ | 11 | file://crosscompile.patch;patch=1 \ |
12 | file://fix_pkgconfig.patch;patch=1" | 12 | file://fix_pkgconfig.patch;patch=1" |
diff --git a/meta/packages/sqlite/sqlite3_3.6.7.bb b/meta/packages/sqlite/sqlite3_3.6.10.bb index 5075dd35b7..5075dd35b7 100644 --- a/meta/packages/sqlite/sqlite3_3.6.7.bb +++ b/meta/packages/sqlite/sqlite3_3.6.10.bb | |||
diff --git a/meta/packages/tasks/task-poky-x11-netbook.bb b/meta/packages/tasks/task-poky-x11-netbook.bb index 61bd5833af..a5ebb54073 100644 --- a/meta/packages/tasks/task-poky-x11-netbook.bb +++ b/meta/packages/tasks/task-poky-x11-netbook.bb | |||
@@ -3,7 +3,7 @@ | |||
3 | # | 3 | # |
4 | 4 | ||
5 | DESCRIPTION = "Netbook Tasks for Poky" | 5 | DESCRIPTION = "Netbook Tasks for Poky" |
6 | PR = "r0" | 6 | PR = "r1" |
7 | 7 | ||
8 | PACKAGES = "\ | 8 | PACKAGES = "\ |
9 | task-poky-x11-netbook \ | 9 | task-poky-x11-netbook \ |
@@ -17,7 +17,7 @@ ALLOW_EMPTY = "1" | |||
17 | 17 | ||
18 | NETWORK_MANAGER ?= "networkmanager-applet" | 18 | NETWORK_MANAGER ?= "networkmanager-applet" |
19 | RDEPENDS_task-poky-x11-netbook = "\ | 19 | RDEPENDS_task-poky-x11-netbook = "\ |
20 | metacity-clutter \ | 20 | mutter \ |
21 | matchbox-desktop \ | 21 | matchbox-desktop \ |
22 | matchbox-session-netbook \ | 22 | matchbox-session-netbook \ |
23 | matchbox-config-gtk \ | 23 | matchbox-config-gtk \ |
diff --git a/meta/packages/xorg-driver/xf86-input-evdev_2.1.1.bb b/meta/packages/xorg-driver/xf86-input-evdev_2.2.1.bb index d1fb0f000d..d1fb0f000d 100644 --- a/meta/packages/xorg-driver/xf86-input-evdev_2.1.1.bb +++ b/meta/packages/xorg-driver/xf86-input-evdev_2.2.1.bb | |||
diff --git a/meta/packages/xorg-driver/xf86-input-synaptics_0.99.3.bb b/meta/packages/xorg-driver/xf86-input-synaptics_1.1.0.bb index f554141c97..f554141c97 100644 --- a/meta/packages/xorg-driver/xf86-input-synaptics_0.99.3.bb +++ b/meta/packages/xorg-driver/xf86-input-synaptics_1.1.0.bb | |||
diff --git a/meta/packages/xorg-driver/xf86-video-intel-dri2_git.bb b/meta/packages/xorg-driver/xf86-video-intel-dri2_git.bb deleted file mode 100644 index ca9334625c..0000000000 --- a/meta/packages/xorg-driver/xf86-video-intel-dri2_git.bb +++ /dev/null | |||
@@ -1,27 +0,0 @@ | |||
1 | require xf86-video-common.inc | ||
2 | |||
3 | DESCRIPTION = "X.Org X server -- Intel i8xx, i9xx display driver" | ||
4 | DEPENDS += "virtual/libx11 libxvmc drm dri2proto glproto \ | ||
5 | virtual/libgl xineramaproto libpciaccess" | ||
6 | PROVIDES = "xf86-video-intel" | ||
7 | |||
8 | DEFAULT_PREFERENCE = "-1" | ||
9 | |||
10 | PE = "1" | ||
11 | PR = "r2" | ||
12 | PV = "2.4.97.0+git${SRCREV}" | ||
13 | |||
14 | FILESPATH = "${FILE_DIRNAME}/xf86-video-intel" | ||
15 | |||
16 | SRC_URI = "git://anongit.freedesktop.org/git/xorg/driver/xf86-video-intel;protocol=git;branch=dri2 \ | ||
17 | file://002_avoid_duplicate_SaveHWState.patch;patch=1 \ | ||
18 | file://004_reduce_driver_boottime.patch;patch=1 \ | ||
19 | file://005_disable_sdvo_TV_port_restoreHW.patch;patch=1 \ | ||
20 | file://006_disable_check_lvds_panelpower_status.patch;patch=1" | ||
21 | |||
22 | S = "${WORKDIR}/git" | ||
23 | |||
24 | COMPATIBLE_HOST = '(i.86.*-linux)' | ||
25 | |||
26 | EXTRA_OECONF = "--enable-dri --disable-static" | ||
27 | |||
diff --git a/meta/packages/xorg-driver/xf86-video-intel_2.6.0.bb b/meta/packages/xorg-driver/xf86-video-intel_2.7.0.bb index 30e713538d..30e713538d 100644 --- a/meta/packages/xorg-driver/xf86-video-intel_2.6.0.bb +++ b/meta/packages/xorg-driver/xf86-video-intel_2.7.0.bb | |||
diff --git a/meta/packages/xorg-lib/libice_1.0.4.bb b/meta/packages/xorg-lib/libice_1.0.4.bb index e4a6557397..afe405a55e 100644 --- a/meta/packages/xorg-lib/libice_1.0.4.bb +++ b/meta/packages/xorg-lib/libice_1.0.4.bb | |||
@@ -7,3 +7,5 @@ PR = "r1" | |||
7 | PE = "1" | 7 | PE = "1" |
8 | 8 | ||
9 | XORG_PN = "libICE" | 9 | XORG_PN = "libICE" |
10 | |||
11 | BBCLASSEXTEND = "native" | ||
diff --git a/meta/packages/xorg-lib/libsm_1.1.0.bb b/meta/packages/xorg-lib/libsm_1.1.0.bb index 32bee5bd85..72a1c726dd 100644 --- a/meta/packages/xorg-lib/libsm_1.1.0.bb +++ b/meta/packages/xorg-lib/libsm_1.1.0.bb | |||
@@ -6,3 +6,5 @@ PR = "r1" | |||
6 | PE = "1" | 6 | PE = "1" |
7 | 7 | ||
8 | XORG_PN = "libSM" | 8 | XORG_PN = "libSM" |
9 | |||
10 | BBCLASSEXTEND = "native" | ||
diff --git a/meta/packages/xorg-lib/libxt_1.0.5.bb b/meta/packages/xorg-lib/libxt_1.0.5.bb index 504779933f..b0b983f67d 100644 --- a/meta/packages/xorg-lib/libxt_1.0.5.bb +++ b/meta/packages/xorg-lib/libxt_1.0.5.bb | |||
@@ -8,6 +8,8 @@ PE = "1" | |||
8 | 8 | ||
9 | XORG_PN = "libXt" | 9 | XORG_PN = "libXt" |
10 | 10 | ||
11 | BBCLASSEXTEND = "native" | ||
12 | |||
11 | EXTRA_OECONF += "--disable-install-makestrs --disable-xkb" | 13 | EXTRA_OECONF += "--disable-install-makestrs --disable-xkb" |
12 | 14 | ||
13 | do_compile() { | 15 | do_compile() { |
diff --git a/meta/packages/xorg-xserver/xserver-xf86-dri-lite.inc b/meta/packages/xorg-xserver/xserver-xf86-dri-lite.inc index 227be4ec0c..3ffd4a4d19 100644 --- a/meta/packages/xorg-xserver/xserver-xf86-dri-lite.inc +++ b/meta/packages/xorg-xserver/xserver-xf86-dri-lite.inc | |||
@@ -2,7 +2,7 @@ require xserver-xf86-common.inc | |||
2 | 2 | ||
3 | PROTO_DEPS = "randrproto renderproto fixesproto damageproto xextproto xproto xf86dgaproto xf86miscproto xf86rushproto xf86vidmodeproto xf86bigfontproto compositeproto recordproto resourceproto videoproto scrnsaverproto evieext trapproto xineramaproto fontsproto kbproto inputproto bigreqsproto xcmiscproto glproto" | 3 | PROTO_DEPS = "randrproto renderproto fixesproto damageproto xextproto xproto xf86dgaproto xf86miscproto xf86rushproto xf86vidmodeproto xf86bigfontproto compositeproto recordproto resourceproto videoproto scrnsaverproto evieext trapproto xineramaproto fontsproto kbproto inputproto bigreqsproto xcmiscproto glproto" |
4 | 4 | ||
5 | LIB_DEPS = "pixman mesa-dri libxfont xtrans libxau libxext libxdmcp libdrm libxkbfile libpciaccess openssl" | 5 | LIB_DEPS = "pixman virtual/libgl libxfont xtrans libxau libxext libxdmcp libdrm libxkbfile libpciaccess openssl" |
6 | 6 | ||
7 | DEPENDS = "${PROTO_DEPS} ${LIB_DEPS}" | 7 | DEPENDS = "${PROTO_DEPS} ${LIB_DEPS}" |
8 | 8 | ||