On 5/21/07, Sam Ravnborg <[EMAIL PROTECTED]> wrote:
> Could you please check this.
>
> The line that says:
> deps_arch/blackfin/kernel/vmlinux.lds := \ ....
> list all the files that the .lds file is dependent on (the prerequisites).
> For the config option BOOT_LOAD look for include/config/boot/load
>
> Check that this file gets properly update on OS X.

thanks for the tip ... the arch/blackfin/kernel/.vmlinux.lds.cmd looks
sane ... looks like a problem with how the config files are created
though [on OS X]

$ stat -f"atime: %a mtime: %m ctime: %c" include/config/boot/load.h
atime: 1180043489 mtime: 1180043489 ctime: 1180045790
$ sed -i '/BOOT_LOAD/s:$:0:' .config
$ make silentoldconfig
scripts/kconfig/conf -s arch/blackfin/Kconfig
$ stat -f"atime: %a mtime: %m ctime: %c" include/config/boot/load.h
atime: 1180043489 mtime: 1180043489 ctime: 1180045807

only inode creation time was changed ...

$ make arch/blackfin/kernel/vmlinux.lds
  SYMLINK include/asm-blackfin/mach-bf537 -> include/asm-blackfin/mach
  CHK     include/linux/version.h
  CHK     include/linux/utsrelease.h
  CHK     include/linux/compile.h
$ touch include/config/boot/load.h
$ stat -f"atime: %a mtime: %m ctime: %c" include/config/boot/load.h
atime: 1180045922 mtime: 1180045922 ctime: 1180045922
$ make arch/blackfin/kernel/vmlinux.lds
  CHK     include/linux/version.h
  CHK     include/linux/utsrelease.h
  CHK     include/linux/compile.h
  LDS     arch/blackfin/kernel/vmlinux.lds
  AS      arch/blackfin/mach-common/entry.o
  LD      arch/blackfin/mach-common/built-in.o

guess i'll poke around kconfig and see what's what
-mike

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
kbuild-devel mailing list
kbuild-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/kbuild-devel

Reply via email to