1
0

vbmeta.ark 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. #
  2. # Copyright 2026 Aarav Ravindra Kharade
  3. #
  4. # Licensed under the Apache License, Version 2.0 (the "License");
  5. # you may not use this file except in compliance with the License.
  6. # You may obtain a copy of the License at
  7. #
  8. # http://www.apache.org/licenses/LICENSE-2.0
  9. #
  10. # Unless required by applicable law or agreed to in writing, software
  11. # distributed under the License is distributed on an "AS IS" BASIS,
  12. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. # See the License for the specific language governing permissions and
  14. # limitations under the License.
  15. #
  16. # ── ArkOS VBMeta Mount Configuration ────────────────────────────
  17. # This file is packaged inside vbmeta.img and loaded first by the
  18. # bootloader. It tells the bootloader where each partition image
  19. # lives and how to mount it.
  20. #
  21. # Format: <label> = <mount_point> <filesystem> <options>
  22. #
  23. # System partition — frameworks, libraries, apps
  24. system = /system ext4 ro,noatime
  25. # Vendor partition — DRM blobs, signing keys, mirror info
  26. vendor = /vendor ext4 ro,noatime
  27. # Device Tree Blob Overlays — extracted and applied by the bootloader
  28. # before the kernel takes over
  29. dtbo = /dtbo ext4 ro,noatime
  30. # Verified Boot Key — the bootloader reads the VBK key from this
  31. # partition and verifies sys.img and vend.img signatures against it
  32. vbk = /vbk ext4 ro,noatime
  33. # Boot partition — kernel, initramfs, DTBs (FAT32 on RPi4)
  34. boot = /boot vfat ro,noatime
  35. # Initramfs — loaded into RAM by the bootloader, not mounted as a partition
  36. initramfs = ram cpio none