Advertisement
Guest User

Untitled

a guest
Jul 7th, 2021
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. // SPDX-License-Identifier: GPL-2.0-or-later OR MIT
  2.  
  3. #include "qca9563_tplink_re450.dtsi"
  4.  
  5. / {
  6. compatible = "tplink,re450-v2", "qca,qca9563";
  7. model = "TP-Link RE450 v2";
  8. };
  9.  
  10. &partitions {
  11. partition@0 {
  12. label = "u-boot";
  13. reg = <0x000000 0x020000>;
  14. read-only;
  15. };
  16.  
  17. partition@20000 {
  18. compatible = "tplink,firmware";
  19. label = "firmware";
  20. reg = <0x020000 0x5e0000>;
  21. };
  22.  
  23. partition@600000 {
  24. label = "partition-table";
  25. reg = <0x600000 0x010000>;
  26. read-only;
  27. };
  28.  
  29. info: partition@610000 {
  30. label = "info";
  31. reg = <0x610000 0x020000>;
  32. read-only;
  33. };
  34.  
  35. partition@630000 {
  36. label = "config";
  37. reg = <0x630000 0x020000>;
  38. read-only;
  39. };
  40.  
  41. // this one is my new partition
  42. extraspace: partition@650000 {
  43. label = "rootfs";
  44. reg = <0x650000 0x1a0000>;
  45. read-only;
  46. };
  47. // end of the new partition
  48.  
  49. art: partition@7f0000 {
  50. label = "art";
  51. reg = <0x7f0000 0x010000>;
  52. read-only;
  53. };
  54. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement