I've been attempting to add some custom user for an application in my AOSP build,
Following the notes here, I tried to add a custom vendor AID to my AOSP build
I thought I'd find an /etc/passwd entry somewhere with a mapping of the uid 2222 -> vendor_foobar (or maybe to just a user named foobar). Maybe I'm missing something from the notes linked above, but that's not happening. It seems like the new user isn't getting added to either the system.img or vendor.img
config.fs:
[AID_VENDOR_FOOBAR]
value: 2222
additions to BoardConfig.mk:
TARGET_FS_CONFIG_GEN += device/google/muskie/walleye/config.fs
TARGET_ANDROID_FILESYSTEM_CONFIG_H :=
Does anyone know how to correctly add a custom vendor AID? Thanks!