1
0

rootfs.mk 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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_HARDWARE_QEMU),y)
  10. MTDDEV:= root=/dev/mtdblock0
  11. ifeq ($(ADK_TARGET_QEMU_WITH_VIRTIO),y)
  12. ROOTFS:= root=/dev/vda1
  13. endif
  14. endif
  15. ifeq ($(ADK_TARGET_SYSTEM_MIKROTIK_RB532),y)
  16. ROOTFS:= root=/dev/sda2
  17. MTDDEV:= root=/dev/mtdblock1
  18. endif
  19. ifeq ($(ADK_TARGET_SYSTEM_MIKROTIK_RB4XX),y)
  20. MTDDEV:= root=/dev/mtdblock2
  21. endif
  22. ifeq ($(ADK_TARGET_SYSTEM_ACMESYSTEMS_FOXG20),y)
  23. ROOTFS:= root=/dev/mmcblk0p2 rootwait
  24. endif
  25. ifeq ($(ADK_TARGET_SYSTEM_SHARP_ZAURUS),y)
  26. ROOTFS:= root=/dev/sda1 rootwait
  27. endif
  28. ifeq ($(ADK_TARGET_SYSTEM_LEMOTE_YEELONG),y)
  29. USB:= rootwait root=/dev/sdc1
  30. else
  31. USB:= rootdelay=2
  32. endif
  33. $(eval $(call rootfs_template,genext2fs,GENEXT2FS,$(ROOTFS)))
  34. $(eval $(call rootfs_template,cf,CF,$(ROOTFS)))
  35. $(eval $(call rootfs_template,mmc,MMC,$(ROOTFS)))
  36. $(eval $(call rootfs_template,usb,USB,$(USB)))
  37. $(eval $(call rootfs_template,archive,ARCHIVE,$(ROOTFS)))
  38. $(eval $(call rootfs_template,initramfs,INITRAMFS))
  39. $(eval $(call rootfs_template,initramfs-piggyback,INITRAMFS_PIGGYBACK))
  40. $(eval $(call rootfs_template,squashfs,SQUASHFS,$(ROOTFS)))
  41. $(eval $(call rootfs_template,yaffs,YAFFS,$(MTDDEV) panic=3))
  42. $(eval $(call rootfs_template,jffs2,JFFS2,$(MTDDEV) rootfstype=jffs2))
  43. $(eval $(call rootfs_template,nfsroot,NFSROOT,root=/dev/nfs ip=dhcp init=/init))
  44. $(eval $(call rootfs_template,encrypted,ENCRYPTED))
  45. $(eval $(call rootfs_template,iso,ISO))
  46. export ADK_TARGET_FS