hc
2024-12-19 9370bb92b2d16684ee45cf24e879c93c509162da
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/*
 * Copyright (c) 2017 Fuzhou Rockchip Electronics Co., Ltd
 *
 * SPDX-License-Identifier: (GPL-2.0+ OR MIT)
 */
 
/dts-v1/;
#include "rk3328-evb-android.dtsi"
 
/ {
   model = "Rockchip RK3328 EVB";
   compatible = "rockchip,rk3328-evb", "rockchip,rk3328";
};
 
&firmware_android{
   compatible = "android,firmware";
   fstab {
       compatible = "android,fstab";
       system {
           compatible = "android,system";
           dev = "/dev/block/platform/ff520000.dwmmc/by-name/system";
           type = "ext4";
           mnt_flags = "ro,barrier=1,inode_readahead_blks=8";
           fsmgr_flags = "wait,verify";
       };
       vendor {
           compatible = "android,vendor";
           dev = "/dev/block/platform/ff520000.dwmmc/by-name/vendor";
           type = "ext4";
           mnt_flags = "ro,barrier=1,inode_readahead_blks=8";
           fsmgr_flags = "wait,verify";
       };
   };
};