Yann E. MORIN | 22 May 22:21
Picon
Favicon

kconfig-frontends-3.4.0-0 released

Hello All!

I'm pleased to announce the release of kconfig-frontends 3.4.0-0!
Go download it there:
    http://ymorin.is-a-geek.org/download/kconfig-frontends/kconfig-frontends-3.4.0-0.tar.xz
    http://ymorin.is-a-geek.org/download/kconfig-frontends/kconfig-frontends-3.4.0-0.tar.bz2

The kconfig-frontends package provides the kconfig parser, as well as all the
kconfig frontends and utilities, packaged using the traditional autotools, so
the kconfig infrastructure is easy to deploy, either locally or system-wide.

What's new since 3.3.0-0:
  - all programs are intalled with the 'kconfig-' prefix by default
  - the kconfig documentation has been added
  - the parser's headers are isntalled into their own sub-dir
  - some side utilities have been added from the Linux kernel tree:
    - kconfig-diff      show differences between two .config files
    - kconfig-gettext   prepare catalog of options strings for L10n
    - kconfig-merge     merge .config fragments
    - kconfig-tweak     get and set .config optiond from the command line

Thank you to Arnout Vandecappelle and Peter Kjellerstedt for their patches in
this release cycle. :-)

As a reminder, the home for kconfig-frontends is:
  http://ymorin.is-a-geek.org/projects/kconfig-frontends

And the repository can be browsed or hg-cloned from:
  http://ymorin.is-a-geek.org/hg/kconfig-frontends

(Continue reading)

Picon

最新广交会买家库,B2B询盘买家、thomasnet 采购商,海关数据,群发软件,展会买家 仅300元!

2008-2012年8届广交会数据,2010海关提单piers版1000万数据,免费更新2012年广交会买家数据。

一共10个包(数据是全行业的,按照行业分好类,并且可以按照关键词提取出来的):

1,2011秋季+春季广交会买家现场询盘数据库新鲜出炉,超级新鲜买家,新鲜数据,容易成单! 
2,购买后可以免费更新2012春季广交会+2012秋季广交会买家数据。太超值了。
3,2012最新全球展会现场买家库(与贸发同步),共46万条数据。 (按照行业分类)
4,2010年,2009年,2008年 春季+秋季广交会买家名录,103 104 105 106 107 108
共六届 共120.6万数据。
5,48.68万条最新买家询盘,都带有Email,最有价值的询盘。
6,2011最新 B2B 英文国际站60万带联络方式询盘 最有价值询盘之一.
7,2010海关提单piers版1000万数据.
8,2011年到香港采购的国外客人名录(香港贸发局提供),超级重要的买家。
9,2011年新增加的-美国B2B thomasnet 采购商名单。
10,群发软件安装与部署服务。

这些全有,共1280万 数据。

 
要的抓紧联系QQ: 1760301183 或者立即回复邮箱: 1760301183 <at> qq.com
要的抓紧联系QQ: 1760301183 或者立即回复邮箱: 1760301183 <at> qq.com
要的抓紧联系QQ: 1760301183 或者立即回复邮箱:
1760301183 <at> qq.com


诚信为本,如果不信任本人,可以走淘宝交易,收到数据验证10天后再付款,这是对您最好的保障了。 



小技巧:
(Continue reading)

Randy Dunlap | 21 May 04:49

[PATCH 3/3] scripts/patch-kernel: update comments to 3.x

From: Randy Dunlap <rdunlap <at> xenotime.net>

Update comments from 2.6.x to 3.x.

Signed-off-by: Randy Dunlap <rdunlap <at> xenotime.net>
---
 scripts/patch-kernel |   16 +++++++++-------
 1 file changed, 9 insertions(+), 7 deletions(-)

--- lnx-34-rc7-pk.orig/scripts/patch-kernel
+++ lnx-34-rc7-pk/scripts/patch-kernel
@@ -7,8 +7,10 @@
 #   scripts/patch-kernel . ..
 #      Update the kernel tree in the current directory using patches in the
 #      directory above to the latest Linus kernel
-#   scripts/patch-kernel . .. 2.4.9
-#      Gets standard kernel 2.4.9
+#   scripts/patch-kernel . .. 3.2.5
+#      Gets standard kernel 3.2.5
+#   scripts/patch-kernel . .. 3.3-rc4
+#      Gets standard kernel 3.3-rc4
 #
 # It determines the current kernel version from the top-level Makefile.
 # It then looks for patches for the next sublevel in the patch directory.
@@ -203,7 +205,7 @@ else
 	STOPEXTRA=9999
 fi

-# This all assumes a 2.6.x[.y] kernel tree.
+# This all assumes a 3.x[.y] kernel tree.
(Continue reading)

Randy Dunlap | 21 May 04:49

[PATCH 1/3] scripts/patch-kernel: fix typos and compression comment

From: Randy Dunlap <rdunlap <at> xenotime.net>

Fix typo, drop trailing whitespace, and add "xz" to list of
compression types supported.

Signed-off-by: Randy Dunlap <rdunlap <at> xenotime.net>
---
 scripts/patch-kernel |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

--- lnx-34-rc7-pk.orig/scripts/patch-kernel
+++ lnx-34-rc7-pk/scripts/patch-kernel
@@ -26,8 +26,8 @@
 #
 #       Nick Holloway <Nick.Holloway <at> alfie.demon.co.uk>, 2nd January 1995.
 #
-# Added support for handling multiple types of compression. What includes
-# gzip, bzip, bzip2, zip, compress, and plaintext. 
+# Added support for handling multiple types of compression. That includes
+# gzip, bzip, bzip2, zip, compress, xz, and plaintext.
 #
 #       Adam Sulmicki <adam <at> cfar.umd.edu>, 1st January 1997.
 #
@@ -159,7 +159,7 @@ applyPatch () {
   fi
   # Remove backup files
   find $sourcedir/ '(' -name '*.orig' -o -name '.*.orig' ')' -exec rm -f {} \;
- 
+
   return 0;
(Continue reading)

Mcckoy Robertson | 20 May 18:58
Picon

Order Enquiry


Hello Sales
     I went over your contact online and found some items which we have interest in purchasing to our store in
Spain for urgent supply. I will like to know the prices per each items plus the shipping cost. I also want to
know if Letter of Credit or T/T is acceptable for payment. I await your quick response asap so i can proceed
with my needed items and quantity.

Thank you
mcckoy robertson

N.B.M Global Supply Inc
Address: Autovía A-5,
salidas 22 y 26.
Arroyomolinos,
28939 Madrid Spain
Tel: +34 902 26 77 26
Email: nbmglobalsupply <at> gmail.com
Website : http://www.brplastics.com

--
To unsubscribe from this list: send the line "unsubscribe linux-kbuild" in
the body of a message to majordomo <at> vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Anthony.Escalera | 20 May 15:16

(unknown)


Your e-mail won £1,000,000.00 in the BBC 2012 bonanza, For claims, Send your details to Mr.Roy Calton
viaE-mail: mrcaltonclaimsunit1 <at> 9.cn PHONE:+447553197697
--
To unsubscribe from this list: send the line "unsubscribe linux-kbuild" in
the body of a message to majordomo <at> vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Lekensteyn | 18 May 10:22
Picon

[PATCH] builddeb: include autogenerated header files

From 6f7e4f7e05705d3a71380442be28a584dd76025e Mon Sep 17 00:00:00 2001
From: Peter Lekensteyn <lekensteyn <at> gmail.com>
Date: Tue, 20 Mar 2012 22:59:56 +0100
Subject: [PATCH] builddeb: include autogenerated header files

After 303395ac3bf3e2cb488435537d416bc840438fcb, some headers are autogenerated.
Include these autogenerated headers (mainly unistd_32_ia32.h) in out-of-tree
builds to allow DKMS modules to be built succesfully.

Signed-off-by: Peter Lekensteyn <lekensteyn <at> gmail.com>
---
 scripts/package/builddeb |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/package/builddeb b/scripts/package/builddeb
index eee5f8e..c95fdda 100644
--- a/scripts/package/builddeb
+++ b/scripts/package/builddeb
@@ -245,7 +245,7 @@ fi
 # Build header package
 (cd $srctree; find . -name Makefile -o -name Kconfig\* -o -name \*.pl > "$objtree/debian/hdrsrcfiles")
 (cd $srctree; find arch/$SRCARCH/include include scripts -type f >> "$objtree/debian/hdrsrcfiles")
-(cd $objtree; find .config Module.symvers include scripts -type f >> "$objtree/debian/hdrobjfiles")
+(cd $objtree; find arch/$SRCARCH/include .config Module.symvers include scripts -type f >> "$objtree/debian/hdrobjfiles")
 destdir=$kernel_headers_dir/usr/src/linux-headers-$version
 mkdir -p "$destdir"
 (cd $srctree; tar -c -f - -T "$objtree/debian/hdrsrcfiles") | (cd $destdir; tar -xf -)
--

-- 
1.7.9.5

(Continue reading)

Geert Uytterhoeven | 12 May 22:39

[PATCH 1/4] [-next] Makefile: Do not call cc-option before including the arch's Makefile

On architectures that setup CROSS_COMPILE in their arch/*/Makefile
(blackfin, h8300, m68k, mips, parisc, score, sh, tile, unicore32, xtensa),
cc-option may check against the wrong compiler, causing errors like

cc1: error: unrecognized command line option "-fno-ipa-cp-clone"

if the host gcc supports -fno-ipa-cp-clone, while the cross compiler
doesn't support that option.

Move the CONFIG_READABLE_ASM section below the inclusion of the arch's
Makefile to fix this.

Signed-off-by: Geert Uytterhoeven <geert <at> linux-m68k.org>
Cc: Andi Kleen <ak <at> linux.intel.com>
Cc: H. Peter Anvin <hpa <at> zytor.com>
Cc: Michal Marek <mmarek <at> suse.cz>
Cc: linux-kbuild <at> vger.kernel.org
---
 Makefile |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/Makefile b/Makefile
index d17a616..77355ba 100644
--- a/Makefile
+++ b/Makefile
@@ -561,6 +561,8 @@ else
 KBUILD_CFLAGS	+= -O2
 endif

+include $(srctree)/arch/$(SRCARCH)/Makefile
(Continue reading)

David Howells | 11 May 17:15
Picon
Favicon

Help with Kbuild to do user-API header split


Hi,

I have some some patches here:

	http://git.infradead.org/users/dhowells/linux-headers.git

that split the user API out of the main kernel headers.  The patches are
committed on branch uapi-split and consist of two subsets:

 (1) master to tag uapi-prep-20120511

     These patches prepare for the UAPI split.

 (2) Tag uapi-prep-20120511 to tag uapi-post-split-20120511.

     These patches perform the UAPI split.

Note that most of these patches are generated by some perl scripts that I've
written.

The problem is that the first subset of patches modify the Kbuild stuff ready
for the second subset, but header installation then fails until all of the
second subset is applied.  So building make allyesconfig for x86_64 at the
first tag results in the following errors:

  INSTALL include/asm (3 files)
make[3]: *** No rule to make target `/data/fs/linux-2.6-uapi/usr/include/asm-generic/auxvec.h',
needed by `/data/fs/linux-2.6-uapi/usr/include/asm-generic/.check'.  Stop.
make[2]: *** [asm-generic] Error 2
(Continue reading)

Mrs Sabah Halif | 5 May 20:59
Picon
Favicon

(unknown)


--

-- 
Good day,my name is Mrs Sabah Halif  i have a business proposal please contact me for details.
--
To unsubscribe from this list: send the line "unsubscribe linux-kbuild" in
the body of a message to majordomo <at> vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Gmane