rootfs.mk 871 B

12345678910111213141516171819202122232425262728
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. define rootfs_template
  4. ifeq ($(ADK_TARGET_ROOTFS_$(2)),y)
  5. FS:=$(1)
  6. FS_CMDLINE:=$(3)
  7. endif
  8. endef
  9. ifeq ($(ADK_LINUX_MIPS_RB532),y)
  10. ROOTFS:= root=/dev/sda2
  11. endif
  12. ifeq ($(ADK_LINUX_ARM_FOXBOARD),y)
  13. ROOTFS:= root=/dev/mmcblk0p2 rootwait
  14. endif
  15. $(eval $(call rootfs_template,ext2-block,EXT2_BLOCK,$(ROOTFS)))
  16. $(eval $(call rootfs_template,archive,ARCHIVE))
  17. $(eval $(call rootfs_template,initramfs,INITRAMFS))
  18. $(eval $(call rootfs_template,initramfs-piggyback,INITRAMFS_PIGGYBACK))
  19. $(eval $(call rootfs_template,squashfs,SQUASHFS))
  20. $(eval $(call rootfs_template,yaffs,YAFFS,root=/dev/mtdblock1))
  21. $(eval $(call rootfs_template,nfsroot,NFSROOT,root=/dev/nfs ip=dhcp init=/init))
  22. $(eval $(call rootfs_template,encrypted,ENCRYPTED))
  23. export FS