mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-09-02 03:03:05 +00:00
There is new patch-status QA check in oe-core: https://git.openembedded.org/openembedded-core/commit/?id=76a685bfcf927593eac67157762a53259089ea8a This is temporary work around just to hide _many_ warnings from optional patch-status (if you add it to WARN_QA). This just added Upstream-Status: Pending everywhere without actually investigating what's the proper status. This is just to hide current QA warnings and to catch new .patch files being added without Upstream-Status, but the number of Pending patches is now terrible: 5 (26%) meta-xfce 6 (50%) meta-perl 15 (42%) meta-webserver 21 (36%) meta-gnome 25 (57%) meta-filesystems 26 (43%) meta-initramfs 45 (45%) meta-python 47 (55%) meta-multimedia 312 (63%) meta-networking 756 (61%) meta-oe Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
40 lines
1.2 KiB
Diff
40 lines
1.2 KiB
Diff
Upstream-Status: Pending
|
|
|
|
We cant run tests during cross compile therefore pin to 4k pages
|
|
|
|
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
|
|
|
Index: dmalloc-5.5.2/configure.ac
|
|
===================================================================
|
|
--- dmalloc-5.5.2.orig/configure.ac
|
|
+++ dmalloc-5.5.2/configure.ac
|
|
@@ -348,26 +348,8 @@ AC_MSG_RESULT([$ac_cv_use_mmap])
|
|
#
|
|
AC_CHECK_FUNCS(getpagesize)
|
|
AC_MSG_CHECKING([basic-block size])
|
|
-ac_cv_page_size=0
|
|
-if test $ac_cv_page_size = 0; then
|
|
- AC_RUN_IFELSE([main() { if (getpagesize()<=2048) exit(0); else exit(1); }],
|
|
- [ ac_cv_page_size=11 ] )
|
|
-fi
|
|
-if test $ac_cv_page_size = 0; then
|
|
- AC_RUN_IFELSE([main() { if (getpagesize()<=4096) exit(0); else exit(1); }],
|
|
- [ ac_cv_page_size=12 ] )
|
|
-fi
|
|
-if test $ac_cv_page_size = 0; then
|
|
- AC_RUN_IFELSE([main() { if (getpagesize()<=8192) exit(0); else exit(1); }],
|
|
- [ ac_cv_page_size=13 ] )
|
|
-fi
|
|
-if test $ac_cv_page_size = 0; then
|
|
- AC_RUN_IFELSE([main() { if (getpagesize()<=16384) exit(0); else exit(1); }],
|
|
- [ ac_cv_page_size=14 ] )
|
|
-fi
|
|
-if test $ac_cv_page_size = 0; then
|
|
- ac_cv_page_size=15
|
|
-fi
|
|
+# fix to 4K for now
|
|
+ac_cv_page_size=12
|
|
AC_DEFINE_UNQUOTED([BASIC_BLOCK],[$ac_cv_page_size])
|
|
AC_MSG_RESULT([$ac_cv_page_size])
|
|
|