/ isn't in my fstab. What should my fstab line look like?
It isn't really needed at all. The / mount in /etc/fstab is just a "formality". The actual mount happens at boot time without /etc/fstab involved.
I found
this post but trying "mount -o bind ubi0:rootfs /mnt" says "special device ubi0:rootfs does not exist", so what special do I need to use?
If you are using "-o bind" then you are mounting a directory, not a device. Without "-o bind" the "mount" utility expects a device node (usually located in /dev).
I don't understand how / gets mounted on boot without an fstab line, anyway.
Well, try to imagine how it would work
with fstab. To mount / you would need to read fstab first. But to read it you would need to mount / first. It's a chicken-egg problem. That must be why the root file system is mounted based only on the kernel boot parameters. In fact, fstab is used only by the "mount" utility, which is obviously not involved in mounting the root file system. People often add a line for / in fstab to let "mount" show it properly in the list of active mounts. That is also the reason why the options shown by "mount" can differ from the actual ones, which you can see in /proc/mounts.
/proc/mounts does have relatime there after a boot.
That means the root has been mounted with "relatime". It may be just the default behavior even if "relatime" is not explicitly specified. In that case you can be happy, as you don't have to do anything.
Why would /sbin/mount and /proc/mounts differ? I thought the former just read the latter..
"mount" normally reads /etc/mtab, not /proc/mounts. The former may or may not be a symlink to the latter. That depends on the distribution. If /etc/mtab is not a symlink then its contents are maintained by "mount" itself and can in some cases go out of sync with the reality.
Thanks. I thought it was worth a shot, and it does seem to have worked. Should I be passing 'ro' or 'rw'? And back to my original question, what's the proper way to mount with relatime at boot - an fstab entry?
As I mentioned, fstab has no influence on mounting the root. Everything should be specified with kernel boot parameters. You can use "rootflags" parameter to pass arbitrary mount options. However, if "relatime" is already in /proc/mounts then you don't need to do anything.