sei510.h 935 B

12345678910111213141516171819202122232425262728293031
  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 ROOT_UUID "ddb8c3f6-d94d-4394-b633-3134139cc2e0;"
  12. #define PARTS_DEFAULT \
  13. "uuid_disk=${uuid_gpt_disk};" \
  14. "name=logo,size=2M,uuid=" LOGO_UUID \
  15. "name=misc,size=128K,uuid=${uuid_gpt_misc};" \
  16. "name=dtbo,size=8M,uuid=${uuid_gpt_dtbo};" \
  17. "name=vbmeta,size=64K,uuid=${uuid_gpt_vbmeta};" \
  18. "name=boot,size=32M,bootable,uuid=${uuid_gpt_boot};" \
  19. "name=recovery,size=32M,uuid=${uuid_gpt_recovery};" \
  20. "name=cache,size=256M,uuid=${uuid_gpt_cache};" \
  21. "name=super,size=2304M,uuid=${uuid_gpt_super};" \
  22. "name=userdata,size=4820M,uuid=${uuid_gpt_userdata};" \
  23. "name=rootfs,size=-,uuid=" ROOT_UUID
  24. #include <configs/meson64_android.h>
  25. #endif /* __CONFIG_H */