rootfs.mk 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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. ADK_TARGET_FS:=$(1)
  6. FS_CMDLINE:=$(3)
  7. endif
  8. endef
  9. ifeq ($(ADK_TARGET_SYSTEM_QEMU_X86),y)
  10. ROOTFS:= root=/dev/sda1
  11. endif
  12. ifeq ($(ADK_TARGET_SYSTEM_MIKROTIK_RB532),y)
  13. ROOTFS:= root=/dev/sda2
  14. MTDDEV:= root=/dev/mtdblock1
  15. endif
  16. ifeq ($(ADK_TARGET_SYSTEM_MIKROTIK_RB433),y)
  17. MTDDEV:= root=/dev/mtdblock2
  18. endif
  19. ifeq ($(ADK_TARGET_SYSTEM_ACMESYSTEMS_FOXG20),y)
  20. ROOTFS:= root=/dev/mmcblk0p2 rootwait
  21. endif
  22. $(eval $(call rootfs_template,cf,CF,$(ROOTFS)))
  23. $(eval $(call rootfs_template,mmc,MMC,$(ROOTFS)))
  24. $(eval $(call rootfs_template,usb,USB,rootdelay=3))
  25. $(eval $(call rootfs_template,archive,ARCHIVE,$(ROOTFS)))
  26. $(eval $(call rootfs_template,initramfs,INITRAMFS))
  27. $(eval $(call rootfs_template,initramfs-piggyback,INITRAMFS_PIGGYBACK))
  28. $(eval $(call rootfs_template,squashfs,SQUASHFS))
  29. $(eval $(call rootfs_template,yaffs,YAFFS,$(MTDDEV) panic=3))
  30. $(eval $(call rootfs_template,nfsroot,NFSROOT,root=/dev/nfs ip=dhcp init=/init))
  31. $(eval $(call rootfs_template,encrypted,ENCRYPTED))
  32. export ADK_TARGET_FS