sei510.h 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * Configuration for the SEI510
  4. *
  5. * Copyright (C) 2019 Baylibre, SAS
  6. * Author: Jerome Brunet <jbrunet@baylibre.com>
  7. */
  8. #ifndef __CONFIG_H
  9. #define __CONFIG_H
  10. #define LOGO_UUID "43a3305d-150f-4cc9-bd3b-38fca8693846;"
  11. #define CACHE_UUID "99207ae6-5207-11e9-999e-6f77a3612069;"
  12. #define SYSTEM_UUID "99f9b7ac-5207-11e9-8507-c3c037e393f3;"
  13. #define VENDOR_UUID "9d082802-5207-11e9-954c-cbbce08ba108;"
  14. #define USERDATA_UUID "9b976e42-5207-11e9-8f16-ff47ac594b22;"
  15. #define ROOT_UUID "ddb8c3f6-d94d-4394-b633-3134139cc2e0;"
  16. #define PARTS_DEFAULT \
  17. "uuid_disk=${uuid_gpt_disk};" \
  18. "name=boot,size=64M,bootable,uuid=${uuid_gpt_boot};" \
  19. "name=logo,size=2M,uuid=" LOGO_UUID \
  20. "name=cache,size=256M,uuid=" CACHE_UUID \
  21. "name=system,size=1536M,uuid=" SYSTEM_UUID \
  22. "name=vendor,size=256M,uuid=" VENDOR_UUID \
  23. "name=userdata,size=5341M,uuid=" USERDATA_UUID \
  24. "name=rootfs,size=-,uuid=" ROOT_UUID
  25. #include <configs/meson64_android.h>
  26. #endif /* __CONFIG_H */