diff options
| author | Martin Jansa <martin.jansa@gmail.com> | 2012-03-29 16:08:55 +0200 | 
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-04-24 17:42:49 +0100 | 
| commit | 24472a794e1787ebcd700dde66018a31069aa50b (patch) | |
| tree | 8288f60be550c7eeefca4c57092a60f7046cd143 /meta/classes/kernel.bbclass | |
| parent | 9ce6bd1d58b4418d3a53be417c18a0e57314462a (diff) | |
| download | openembedded-core-24472a794e1787ebcd700dde66018a31069aa50b.tar.gz openembedded-core-24472a794e1787ebcd700dde66018a31069aa50b.tar.bz2 openembedded-core-24472a794e1787ebcd700dde66018a31069aa50b.zip | |
kernel.bbclass: unify white spaces
* indentation was with spaces and tabs, unify to use tabs instead of
  spaces, for shell code and populate_packages_preppend,
  because "python populate_packages" expects tabs (or 8 spaces)
* and use 4 spaces for anonymous python
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/kernel.bbclass')
| -rw-r--r-- | meta/classes/kernel.bbclass | 26 | 
1 files changed, 13 insertions, 13 deletions
| diff --git a/meta/classes/kernel.bbclass b/meta/classes/kernel.bbclass index fefa608500..7c5240bd30 100644 --- a/meta/classes/kernel.bbclass +++ b/meta/classes/kernel.bbclass @@ -13,9 +13,9 @@ INITRAMFS_TASK ?= ""  python __anonymous () {      kerneltype = d.getVar('KERNEL_IMAGETYPE', True) or ''      if kerneltype == 'uImage': -    	depends = d.getVar("DEPENDS", True) -    	depends = "%s u-boot-mkimage-native" % depends -    	d.setVar("DEPENDS", depends) +        depends = d.getVar("DEPENDS", True) +        depends = "%s u-boot-mkimage-native" % depends +        d.setVar("DEPENDS", depends)      image = d.getVar('INITRAMFS_IMAGE', True)      if image: @@ -91,7 +91,7 @@ kernel_do_compile() {  do_compile_kernelmodules() {  	unset CFLAGS CPPFLAGS CXXFLAGS LDFLAGS MACHINE  	if (grep -q -i -e '^CONFIG_MODULES=y$' .config); then -		oe_runmake ${PARALLEL_MAKE} modules  CC="${KERNEL_CC}" LD="${KERNEL_LD}" +		oe_runmake ${PARALLEL_MAKE} modules CC="${KERNEL_CC}" LD="${KERNEL_LD}"  	else  		bbnote "no modules to compile"  	fi @@ -115,7 +115,7 @@ kernel_do_install() {  	#  	# Install various kernel output (zImage, map file, config, module support files) -	#	 +	#  	install -d ${D}/${KERNEL_IMAGEDEST}  	install -d ${D}/boot  	install -m 0644 ${KERNEL_OUTPUT} ${D}/${KERNEL_IMAGEDEST}/${KERNEL_IMAGETYPE}-${KERNEL_VERSION} @@ -188,7 +188,7 @@ kernel_do_install() {  	bin_files="arch/powerpc/boot/addnote arch/powerpc/boot/hack-coff \  	           arch/powerpc/boot/mktree"  	for entry in $bin_files; do -	        rm -f $kerneldir/$entry +		rm -f $kerneldir/$entry  	done  } @@ -386,10 +386,10 @@ python populate_packages_prepend () {  		return deps  	def get_dependencies(file, pattern, format): -                # file no longer includes PKGD +		# file no longer includes PKGD  		file = file.replace(d.getVar('PKGD', True) or '', '', 1) -                # instead is prefixed with /lib/modules/${KERNEL_VERSION} -                file = file.replace("/lib/modules/%s/" % d.getVar('KERNEL_VERSION', True) or '', '', 1) +		# instead is prefixed with /lib/modules/${KERNEL_VERSION} +		file = file.replace("/lib/modules/%s/" % d.getVar('KERNEL_VERSION', True) or '', '', 1)  		if module_deps.has_key(file):  			import re @@ -493,11 +493,11 @@ python populate_packages_prepend () {  do_sizecheck() {  	if [ ! -z "${KERNEL_IMAGE_MAXSIZE}" ]; then  		size=`ls -l ${KERNEL_OUTPUT} | awk '{ print $5}'` -        	if [ $size -ge ${KERNEL_IMAGE_MAXSIZE} ]; then +		if [ $size -ge ${KERNEL_IMAGE_MAXSIZE} ]; then  			rm ${KERNEL_OUTPUT} -                	die  "This kernel (size=$size > ${KERNEL_IMAGE_MAXSIZE}) is too big for your device. Please reduce the size of the kernel by making more of it modular." -        	fi -    	fi +			die "This kernel (size=$size > ${KERNEL_IMAGE_MAXSIZE}) is too big for your device. Please reduce the size of the kernel by making more of it modular." +		fi +	fi  }  addtask sizecheck before do_install after do_compile | 
