Chinaunix首页 | 论坛 | 博客
  • 博客访问: 22169
  • 博文数量: 10
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 140
  • 用 户 组: 普通用户
  • 注册时间: 2014-03-05 00:47
文章分类

全部博文(10)

文章存档

2015年(1)

2014年(9)

我的朋友

分类: 虚拟化

2014-12-09 21:44:41

It's odd. There are some errors when I compiling android's kernel. I remember I compiled it already.

Anyway

  CC      drivers/gpu/vithar/kds/lib/kds/kds.o
arm-eabi-gcc: error: directory: No such file or directory
arm-eabi-gcc: error: directory": No such file or directory

For this error, there is a solution from stakoverflow.com

The problem is in drivers/gpu/vithar/ump/src/devicedrv/Makefile.common. It assumes that the vithar SDK has been pulled from SVN and has a valid SVN revision (it doesn't).

You have 2 options: 1) Edit the file above to skip invocation of svnversion:

- SVN_REV:=$(shell ((svnversion | grep -qv exported && echo -n 'Revision: ' && svnversion) || git svn info | sed -e 's/$$$$/M/' | grep '^Revision: ' || echo ${MALI_RELEASE_NAME}) 2>/dev$
+ SVN_REV=0 

2) Add to make command line:

SVN_REV=0 

There also is a
make[3]: *** No rule to make target `drivers/mtk_combo/gps/gps.c', needed by `drivers/mtk_combo/gps/gps.o'.  Stop.
make[3]: *** Waiting for unfinished jobs....

Turns out there is no gps.c under drivers/mtk_combo/gps/gps.c

So I canceled all mtk related drivers, see how it goes.

For the record,
arndale5250/android

$ source ./arndale_envsetup.sh
$ kernel_make distclean
$ kernel_make pyrustek_arndale_android_defconfig
$ kernel_make SVN_REV=0

阅读(1442) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~