diff --git a/private/property_contexts b/private/property_contexts
index 80476cc25061df0e94cecdd4218a8ecca886bb29..552c6b5f2fbc6b868407673b232c29e5fe7b0efc 100644
--- a/private/property_contexts
+++ b/private/property_contexts
@@ -57,6 +57,7 @@ persist.sys.audit_safemode      u:object_r:safemode_prop:s0
 persist.service.        u:object_r:system_prop:s0
 persist.service.bdroid. u:object_r:bluetooth_prop:s0
 persist.security.       u:object_r:system_prop:s0
+persist.hal.binderization    u:object_r:hal_binderization_prop:s0
 persist.vendor.overlay.  u:object_r:overlay_prop:s0
 ro.boot.vendor.overlay.  u:object_r:overlay_prop:s0
 ro.boottime.             u:object_r:boottime_prop:s0
diff --git a/private/system_app.te b/private/system_app.te
index 367df1f245831516992639becf8ed9f8b9a25a65..c53f7a81d0cc002b5c473e07c27f8c494f96d33e 100644
--- a/private/system_app.te
+++ b/private/system_app.te
@@ -30,6 +30,7 @@ allow system_app icon_file:file r_file_perms;
 # Write to properties
 set_prop(system_app, bluetooth_prop)
 set_prop(system_app, debug_prop)
+set_prop(system_app, hal_binderization_prop)
 set_prop(system_app, system_prop)
 set_prop(system_app, logd_prop)
 set_prop(system_app, net_radio_prop)
diff --git a/public/property.te b/public/property.te
index 1bde35c4d80817018cfd28718999fcd4acc08b19..572c24e84188259b295d611ea3056889e9a7ea5d 100644
--- a/public/property.te
+++ b/public/property.te
@@ -41,6 +41,7 @@ type serialno_prop, property_type;
 type shell_prop, property_type, core_property_type;
 type system_prop, property_type, core_property_type;
 type system_radio_prop, property_type, core_property_type;
+type hal_binderization_prop, property_type;
 type vold_prop, property_type, core_property_type;
 type wifi_log_prop, property_type, log_property_type;
 type wifi_prop, property_type;
diff --git a/public/shell.te b/public/shell.te
index d643b7e7a952ccc537bba2de105c1f92f57e85f7..9f4ac5cf5f22912b23c8e43d4c2f65af3fab2e72 100644
--- a/public/shell.te
+++ b/public/shell.te
@@ -64,6 +64,8 @@ set_prop(shell, wifi_log_prop)
 userdebug_or_eng(`set_prop(shell, log_prop)')
 # logpersist script
 userdebug_or_eng(`set_prop(shell, logpersistd_logging_prop)')
+# hal binderization
+userdebug_or_eng(`set_prop(shell, hal_binderization_prop)')
 
 userdebug_or_eng(`
   # "systrace --boot" support - allow boottrace service to run
diff --git a/public/te_macros b/public/te_macros
index 0eba3ff3fd5fe8fd4dccc743a54dfe281729e0d4..0a423acf0b8538ba1fa1687912b5284eb09543b7 100644
--- a/public/te_macros
+++ b/public/te_macros
@@ -217,6 +217,12 @@ allow hwservicemanager $1:binder { call transfer };
 allow hwservicemanager $1:dir search;
 allow hwservicemanager $1:file { read open };
 allow hwservicemanager $1:process getattr;
+# TODO(b/34274385): hals wait for data to be mounted so they can
+# start only if persist.hal.binderization is enabled. (for dogfood
+# stability). getService must also check for data to be mounted
+# if the vintf promises the hal will be registered over hwbinder.
+get_prop($1, hal_binderization_prop)
+get_prop($1, vold_prop)
 # rw access to /dev/hwbinder and /dev/ashmem is presently granted to
 # all domains in domain.te.
 ')