Makefile (ec208491936d6adb8a70c3dd4a517cdfe54e823d) | Makefile (3540ce8238c2d29a2a20a1876575c0064d0da23e) |
---|---|
1ifeq ($(CONFIG_MMU),y) 2UTS_SYSNAME = -DUTS_SYSNAME=\"Linux\" 3else 4UTS_SYSNAME = -DUTS_SYSNAME=\"uClinux\" 5endif 6 7# What CPU vesion are we building for, and crack it open 8# as major.minor.rev --- 37 unchanged lines hidden (view full) --- 46 47head-y := arch/microblaze/kernel/head.o 48libs-y += arch/microblaze/lib/ 49libs-y += $(LIBGCC) 50core-y += arch/microblaze/kernel/ 51core-y += arch/microblaze/mm/ 52core-y += arch/microblaze/platform/ 53 | 1ifeq ($(CONFIG_MMU),y) 2UTS_SYSNAME = -DUTS_SYSNAME=\"Linux\" 3else 4UTS_SYSNAME = -DUTS_SYSNAME=\"uClinux\" 5endif 6 7# What CPU vesion are we building for, and crack it open 8# as major.minor.rev --- 37 unchanged lines hidden (view full) --- 46 47head-y := arch/microblaze/kernel/head.o 48libs-y += arch/microblaze/lib/ 49libs-y += $(LIBGCC) 50core-y += arch/microblaze/kernel/ 51core-y += arch/microblaze/mm/ 52core-y += arch/microblaze/platform/ 53 |
54drivers-$(CONFIG_OPROFILE) += arch/microblaze/oprofile/ 55 |
|
54boot := arch/microblaze/boot 55 56# Are we making a simpleImage.<boardname> target? If so, crack out the boardname 57DTB:=$(subst simpleImage.,,$(filter simpleImage.%, $(MAKECMDGOALS))) 58 59ifneq ($(DTB),) 60 core-y += $(boot)/ 61endif --- 32 unchanged lines hidden --- | 56boot := arch/microblaze/boot 57 58# Are we making a simpleImage.<boardname> target? If so, crack out the boardname 59DTB:=$(subst simpleImage.,,$(filter simpleImage.%, $(MAKECMDGOALS))) 60 61ifneq ($(DTB),) 62 core-y += $(boot)/ 63endif --- 32 unchanged lines hidden --- |