[Armadeus-commitlog] armadeus branch, master, updated. armadeus-5.2-407-g12e9a8c
Brought to you by:
sszy
|
From: jorasse <jo...@us...> - 2013-08-22 08:59:39
|
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "armadeus".
The branch, master has been updated
via 12e9a8c25fdd8085d43605159854c491a6e3dd45 (commit)
from d5a92cdd65ace4de47806797aa1db590cf6a7cc5 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 12e9a8c25fdd8085d43605159854c491a6e3dd45
Author: Eric Jarrige <eri...@ar...>
Date: Thu Aug 22 11:09:48 2013 +0200
[BUILDROOT] remove fbtest - use BR fb-test instead
-----------------------------------------------------------------------
Summary of changes:
.../buildroot/2013.05/119-fbtest-add_package.patch | 176 --------------------
1 files changed, 0 insertions(+), 176 deletions(-)
delete mode 100644 patches/buildroot/2013.05/119-fbtest-add_package.patch
diff --git a/patches/buildroot/2013.05/119-fbtest-add_package.patch b/patches/buildroot/2013.05/119-fbtest-add_package.patch
deleted file mode 100644
index b132154..0000000
--- a/patches/buildroot/2013.05/119-fbtest-add_package.patch
+++ /dev/null
@@ -1,176 +0,0 @@
-Add fbtest package to BR.
-
-Signed-off-by: Julien Boibessot <jul...@ar...>
-
-Index: buildroot/package/Config.in
-===================================================================
---- buildroot.orig/package/Config.in 2012-07-30 10:43:47.000000000 +0200
-+++ buildroot/package/Config.in 2012-07-30 10:59:43.000000000 +0200
-@@ -130,6 +130,7 @@
- if BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
- source "package/fbset/Config.in"
- endif
-+source "package/fbtest/Config.in"
- source "package/fbterm/Config.in"
- source "package/fbv/Config.in"
- source "package/fb-test-app/Config.in"
-Index: buildroot/package/fbtest/Config.in
-===================================================================
---- /dev/null 1970-01-01 00:00:00.000000000 +0000
-+++ buildroot/package/fbtest/Config.in 2012-07-30 10:43:47.000000000 +0200
-@@ -0,0 +1,7 @@
-+config BR2_PACKAGE_FBTEST
-+ bool "fbtest"
-+ help
-+ Fbtest is a collection of tests for the framebuffer device.
-+ All tests are gathered inside the same executable.
-+
-+ http://linux-fbdev.cvs.sourceforge.net/viewvc/linux-fbdev/fbtest/
-Index: buildroot/package/fbtest/fbtest.mk
-===================================================================
---- /dev/null 1970-01-01 00:00:00.000000000 +0000
-+++ buildroot/package/fbtest/fbtest.mk 2012-07-30 10:43:47.000000000 +0200
-@@ -0,0 +1,51 @@
-+#############################################################
-+#
-+# fbtest
-+#
-+#############################################################
-+FBTEST_VERSION:=20041102-1
-+FBTEST_SOURCE:=fbtest-$(FBTEST_VERSION).tar.gz
-+FBTEST_SITE:=http://www.pengutronix.de/software/ptxdist/temporary-src/
-+FBTEST_DIR:=$(BUILD_DIR)/fbtest-$(FBTEST_VERSION)
-+FBTEST_CAT:=$(ZCAT)
-+FBTEST_BINARY:=fbtest
-+FBTEST_TARGET_BINARY:=usr/bin/$(FBTEST_BINARY)
-+
-+$(DL_DIR)/$(FBTEST_SOURCE):
-+ $(call DOWNLOAD,$(FBTEST_SITE),$(FBTEST_SOURCE))
-+
-+$(FBTEST_DIR)/.unpacked: $(DL_DIR)/$(FBTEST_SOURCE)
-+ $(FBTEST_CAT) $(DL_DIR)/$(FBTEST_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
-+ support/scripts/apply-patches.sh $(FBTEST_DIR) package/fbtest/ \
-+ fbtest-$(FBTEST_VERSION)\*.patch \
-+ fbtest-$(FBTEST_VERSION)\*.patch.$(ARCH)
-+ touch $@
-+
-+$(FBTEST_DIR)/$(FBTEST_BINARY): $(FBTEST_DIR)/.unpacked
-+ $(MAKE1) ARCH=$(ARCH) CROSS_COMPILE=$(TARGET_CROSS) -C $(FBTEST_DIR)
-+ touch -c $@
-+
-+$(TARGET_DIR)/$(FBTEST_TARGET_BINARY): $(FBTEST_DIR)/$(FBTEST_BINARY)
-+ $(INSTALL) -m 755 $(FBTEST_DIR)/$(FBTEST_BINARY) $(TARGET_DIR)/$(FBTEST_TARGET_BINARY)
-+ -$(STRIPCMD) $(STRIP_STRIP_UNNEEDED) $(TARGET_DIR)/$(FBTEST_TARGET_BINARY)
-+ touch -c $@
-+
-+fbtest: $(TARGET_DIR)/$(FBTEST_TARGET_BINARY)
-+
-+fbtest-source: $(DL_DIR)/$(FBTEST_SOURCE)
-+
-+fbtest-clean:
-+ rm -f $(TARGET_DIR)/$(FBTEST_TARGET_BINARY)
-+ -$(MAKE) -C $(FBTEST_DIR) clean
-+
-+fbtest-dirclean:
-+ rm -rf $(FBTEST_DIR)
-+
-+#############################################################
-+#
-+# Toplevel Makefile options
-+#
-+#############################################################
-+ifeq ($(strip $(BR2_PACKAGE_FBTEST)),y)
-+TARGETS+=fbtest
-+endif
-Index: buildroot/package/fbtest/fbtest-20041102-1-page-mask.patch
-===================================================================
---- /dev/null 1970-01-01 00:00:00.000000000 +0000
-+++ buildroot/package/fbtest/fbtest-20041102-1-page-mask.patch 2012-07-30 10:43:47.000000000 +0200
-@@ -0,0 +1,36 @@
-+--- fbtest-20041102-1.org/fb.c 2003-04-04 14:07:55.000000000 +0200
-++++ fbtest-20041102-1/fb.c 2009-05-20 10:32:32.000000000 +0200
-+@@ -19,7 +19,6 @@
-+ #include <sys/stat.h>
-+ #include <unistd.h>
-+
-+-#include <asm/page.h>
-+
-+ #include "types.h"
-+ #include "fb.h"
-+@@ -179,6 +179,7 @@
-+ void fb_map(void)
-+ {
-+ caddr_t addr;
-++ unsigned long PAGE_MASK = ~(sysconf(_SC_PAGE_SIZE)-1);
-+
-+ Debug("fb_map()\n");
-+ fb_start = (unsigned long)fb_fix.smem_start & PAGE_MASK;
-+@@ -189,7 +190,7 @@
-+ addr = mmap(NULL, fb_len, PROT_READ | PROT_WRITE, MAP_SHARED, fb_fd, 0);
-+ if (addr == (caddr_t)-1)
-+ Fatal("mmap smem: %s\n", strerror(errno));
-+- fb = addr+fb_offset;
-++ fb = (u8*)(addr+fb_offset);
-+ }
-+
-+
-+@@ -199,6 +200,8 @@
-+
-+ void fb_unmap(void)
-+ {
-++ unsigned long PAGE_MASK = ~(sysconf(_SC_PAGE_SIZE)-1);
-++
-+ Debug("fb_unmap()\n");
-+ if (munmap((caddr_t)((unsigned long)fb & PAGE_MASK), fb_len) == -1)
-+ Fatal("munmap smem: %s\n", strerror(errno));
-Index: buildroot/package/fbtest/fbtest-20041102-1-exe-target-name-change.patch
-===================================================================
---- /dev/null 1970-01-01 00:00:00.000000000 +0000
-+++ buildroot/package/fbtest/fbtest-20041102-1-exe-target-name-change.patch 2012-07-30 10:43:47.000000000 +0200
-@@ -0,0 +1,11 @@
-+--- fbtest-20041102-1.org/Makefile 2009-05-21 10:16:05.000000000 +0200
-++++ fbtest-20041102-1/Makefile 2009-05-21 10:17:47.000000000 +0200
-+@@ -1,7 +1,7 @@
-+
-+ TOPDIR = .
-+
-+-TARGET = $(CROSS_COMPILE)fbtest
-++TARGET = fbtest
-+
-+ OBJS += drawops/drawops.o fonts/fonts.o images/images.o visops/visops.o \
-+ tests/tests.o
-Index: buildroot/package/fbtest/fbtest-20041102-1-pnmtohex-libs-depends.patch
-===================================================================
---- /dev/null 1970-01-01 00:00:00.000000000 +0000
-+++ buildroot/package/fbtest/fbtest-20041102-1-pnmtohex-libs-depends.patch 2012-07-30 10:43:47.000000000 +0200
-@@ -0,0 +1,11 @@
-+--- fbtest-20041102-1.org/pnmtohex/Makefile 2004-11-02 09:43:02.000000000 +0100
-++++ fbtest-20041102-1/pnmtohex/Makefile 2005-11-16 22:24:08.406157582 +0100
-+@@ -3,7 +3,7 @@ TOPDIR = ..
-+
-+ HOST_TARGET = pnmtohex
-+
-+-LIBS += -lnetpnm -lnetpbm -lnetpgm -lnetppm
-++LIBS += -lnetpbm -lm
-+
-+ include $(TOPDIR)/Rules.make
-+
-Index: buildroot/package/fbtest/fbtest-20041102-1-correct_struct_fb_var_screeninfo.reserved_usage.patch
-===================================================================
---- /dev/null 1970-01-01 00:00:00.000000000 +0000
-+++ buildroot/package/fbtest/fbtest-20041102-1-correct_struct_fb_var_screeninfo.reserved_usage.patch 2012-07-30 11:08:14.000000000 +0200
-@@ -0,0 +1,14 @@
-+struct fb_var_screeninfo has only 4 bytes available in "reserved[]" table (on
-+recent kernel versions)
-+
-+--- fbtest-20041102-1/fb.c 2011-05-03 11:53:28.000000000 +0200
-++++ fbtest-20041102-1.mod/fb.c 2011-05-03 12:30:34.000000000 +0200
-+@@ -340,8 +341,6 @@
-+ CHECK_CHANGE(reserved[1]);
-+ CHECK_CHANGE(reserved[2]);
-+ CHECK_CHANGE(reserved[3]);
-+- CHECK_CHANGE(reserved[4]);
-+- CHECK_CHANGE(reserved[5]);
-+
-+ var_validate();
-+ }
hooks/post-receive
--
armadeus
|