home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2006 November (DVD) / PCWELT_11_2006.ISO / casper / filesystem.squashfs / usr / src / linux-headers-2.6.17-6 / debian / ruleset / arches / arm.mk < prev    next >
Encoding:
Text File  |  2005-12-09  |  2.1 KB  |  62 lines

  1. ######################### -*- Mode: Makefile-Gmake -*- ########################
  2. ## arm.mk --- 
  3. ## Author           : Manoj Srivastava ( srivasta@glaurung.internal.golden-gryphon.com ) 
  4. ## Created On       : Fri Dec  9 14:58:51 2005
  5. ## Created On Node  : glaurung.internal.golden-gryphon.com
  6. ## Last Modified By : Manoj Srivastava
  7. ## Last Modified On : Fri Dec  9 15:02:02 2005
  8. ## Last Machine Used: glaurung.internal.golden-gryphon.com
  9. ## Update Count     : 3
  10. ## Status           : Unknown, Use with caution!
  11. ## HISTORY          : 
  12. ## Description      : 
  13. ## 
  14. ## arch-tag: ac6e7f1e-b138-49a9-b007-abec5154ccf2
  15. ## 
  16. ## This program is free software; you can redistribute it and/or modify
  17. ## it under the terms of the GNU General Public License as published by
  18. ## the Free Software Foundation; either version 2 of the License, or
  19. ## (at your option) any later version.
  20. ##
  21. ## This program is distributed in the hope that it will be useful,
  22. ## but WITHOUT ANY WARRANTY; without even the implied warranty of
  23. ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  24. ## GNU General Public License for more details.
  25. ##
  26. ## You should have received a copy of the GNU General Public License
  27. ## along with this program; if not, write to the Free Software
  28. ## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
  29. ##
  30. ###############################################################################
  31.  
  32. ### ARM
  33. ifeq ($(strip $(architecture)),arm)
  34.   GUESS_SUBARCH:='netwinder'
  35.  
  36.   ifneq (,$(findstring $(KPKG_SUBARCH),netwinder))
  37.     KPKG_SUBARCH:=$(GUESS_SUBARCH)
  38.     kimage := zImage
  39.     target = Image
  40.     kimagesrc = arch/$(KERNEL_ARCH)/boot/Image
  41.     kimagedest = $(INT_IMAGE_DESTDIR)/vmlinuz-$(version)
  42.     loaderdep=
  43.     loader=nettrom
  44.     loaderdoc=
  45.     NEED_DIRECT_GZIP_IMAGE=NO
  46.     DEBCONFIG= $(CONFDIR)/config.netwinder
  47.   else
  48.     kimage := zImage
  49.     target = zImage
  50.     NEED_DIRECT_GZIP_IMAGE=NO
  51.     kimagesrc = arch/$(KERNEL_ARCH)/boot/zImage
  52.     kimagedest = $(INT_IMAGE_DESTDIR)/vmlinuz-$(version)
  53.     DEBCONFIG = $(CONFDIR)/config.arm
  54.   endif
  55.   kelfimagesrc = vmlinux
  56.   kelfimagedest = $(INT_IMAGE_DESTDIR)/vmlinux-$(version)
  57. endif
  58.  
  59. #Local variables:
  60. #mode: makefile
  61. #End:
  62.