430-mtd_myloader_partition_parser.patch 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. --- a/drivers/mtd/Kconfig
  2. +++ b/drivers/mtd/Kconfig
  3. @@ -156,6 +156,22 @@ config MTD_BCM63XX_PARTS
  4. This provides partions parsing for BCM63xx devices with CFE
  5. bootloaders.
  6. +config MTD_MYLOADER_PARTS
  7. + tristate "MyLoader partition parsing"
  8. + depends on ADM5120 || ATHEROS_AR231X || ATHEROS_AR71XX || ATH79
  9. + ---help---
  10. + MyLoader is a bootloader which allows the user to define partitions
  11. + in flash devices, by putting a table in the second erase block
  12. + on the device, similar to a partition table. This table gives the
  13. + offsets and lengths of the user defined partitions.
  14. +
  15. + If you need code which can detect and parse these tables, and
  16. + register MTD 'partitions' corresponding to each image detected,
  17. + enable this option.
  18. +
  19. + You will still need the parsing functions to be called by the driver
  20. + for your particular device. It won't happen automatically.
  21. +
  22. comment "User Modules And Translation Layers"
  23. config MTD_CHAR
  24. --- a/drivers/mtd/Makefile
  25. +++ b/drivers/mtd/Makefile
  26. @@ -12,6 +12,7 @@ obj-$(CONFIG_MTD_CMDLINE_PARTS) += cmdli
  27. obj-$(CONFIG_MTD_AFS_PARTS) += afs.o
  28. obj-$(CONFIG_MTD_AR7_PARTS) += ar7part.o
  29. obj-$(CONFIG_MTD_BCM63XX_PARTS) += bcm63xxpart.o
  30. +obj-$(CONFIG_MTD_MYLOADER_PARTS) += myloader.o
  31. # 'Users' - code which presents functionality to userspace.
  32. obj-$(CONFIG_MTD_CHAR) += mtdchar.o