# # kbuild file for usr/ - including initramfs image # klibcdirs:; PHONY += klibcdirs # Generate builtin.o based on initramfs_data.o obj-$(CONFIG_BLK_DEV_INITRD) := initramfs_data.o # initramfs_data.o contains the initramfs_data.cpio.gz image. # The image is included using .incbin, a dependency which is not # tracked automatically. $(obj)/initramfs_data.o: $(obj)/initramfs_data.cpio.gz FORCE ##### # Generate the initramfs cpio archive hostprogs-y := gen_init_cpio initramfs := $(CONFIG_SHELL) $(srctree)/scripts/gen_initramfs_list.sh ramfs-input := $(if $(filter-out "",$(CONFIG_INITRAMFS_SOURCE)), \ $(shell echo $(CONFIG_INITRAMFS_SOURCE)),-d) ramfs-args := \ $(if $(CONFIG_INITRAMFS_ROOT_UID), -u $(CONFIG_INITRAMFS_ROOT_UID)) \ $(if $(CONFIG_INITRAMFS_ROOT_GID), -g $(CONFIG_INITRAMFS_ROOT_GID)) # .initramfs_data.cpio.gz.d is used to identify all files included # in initramfs and to detect if any files are added/removed. # Removed files are identified by directory timestamp being updated # The dependency list is generated by gen_initramfs.sh -l ifneq ($(wildcard $(obj)/.initramfs_data.cpio.gz.d),) include $(obj)/.initramfs_data.cpio.gz.d endif quiet_cmd_initfs = GEN $@ cmd_initfs = $(initramfs) -o $@ $(ramfs-args) $(ramfs-input) targets := initramfs_data.cpio.gz # do not try to update files included in initramfs $(deps_initramfs): ; $(deps_initramfs): klibcdirs # We rebuild initramfs_data.cpio.gz if: # 1) Any included file is newer then initramfs_data.cpio.gz # 2) There are changes in which files are included (added or deleted) # 3) If gen_init_cpio are newer than initramfs_data.cpio.gz # 4) arguments to gen_initramfs.sh changes $(obj)/initramfs_data.cpio.gz: $(obj)/gen_init_cpio $(deps_initramfs) klibcdirs $(Q)$(initramfs) -l $(ramfs-input) > $(obj)/.initramfs_data.cpio.gz.d $(call if_changed,initfs) linux-2.6.26.y Hosts the 0x221E linux distro kernel.Ubuntu
summaryrefslogtreecommitdiff
path: root/arch/arm/mach-tegra/board.h
AgeCommit message (Expand)Author
2014-07-17ARM: tegra: Convert PMC to a driverThierry Reding
2013-09-17ARM: tegra: delete stale header contentStephen Warren
2013-09-17ARM: tegra: remove common.cStephen Warren
2013-08-13PCI: tegra: Move PCIe driver to drivers/pci/hostThierry Reding
2013-07-09reboot: arm: change reboot_mode to use enum reboot_modeRobin Holt
2013-03-29ARM: tegra: move <mach/powergate.h> to <linux/tegra-powergate.h>Stephen Warren
2013-03-11ARM: tegra: Unify tegra{20,30,114}_init_early()Hiroshi Doyu
2013-02-09ARM: tegra: Fix build error w/ ARCH_TEGRA_114_SOC w/o ARCH_TEGRA_3x_SOCOlof Johansson
2013-01-28ARM: tegra: move timer.c to drivers/clocksource/Stephen Warren
2012-12-24ARM: delete struct sys_timerStephen Warren
2012-10-16ARM: tegra: rename tegra system timerSivaram Nair
2012-06-20ARM: tegra: paz00: enable WiFi rfkill when booting from device treeStephen Warren
2012-06-20ARM: tegra: harmony: init regulators, PCIe when booting from DTStephen Warren
2012-05-08ARM: tegra: use machine specific hook for late initShawn Guo
2011-12-19arm/tegra: Delete tegra_init_clock()Stephen Warren
2011-12-17arm/tegra: implement support for tegra30Peter De Schrijver
2011-12-17arm/tegra: prepare early init for multiple tegra variantsPeter De Schrijver