JianyuWang0623 commented on code in PR #17216:
URL: https://github.com/apache/nuttx/pull/17216#discussion_r2467760815
##########
boards/arm64/qemu/qemu-armv8a/configs/fastboot/defconfig:
##########
@@ -31,17 +31,19 @@ CONFIG_DRIVERS_VIRTIO_NET=y
CONFIG_DRIVERS_VIRTIO_RNG=y
CONFIG_DRIVERS_VIRTIO_SERIAL=y
CONFIG_DRIVERS_VIRTIO_SOUND=y
+CONFIG_ETC_ROMFS=y
CONFIG_EXAMPLES_HELLO=y
CONFIG_FAT_LCNAMES=y
CONFIG_FAT_LFN=y
CONFIG_FS_FAT=y
CONFIG_FS_FATTIME=y
CONFIG_FS_PROCFS=y
+CONFIG_FS_ROMFS=y
CONFIG_FS_V9FS=y
CONFIG_HAVE_CXX=y
CONFIG_HAVE_CXXINITIALIZE=y
CONFIG_IDLETHREAD_STACKSIZE=8192
-CONFIG_INIT_ENTRYPOINT="nsh_main"
+CONFIG_INIT_ENTRYPOINT="init_main"
Review Comment:
@cederom Thank you. This is my view: whether it is the current NxInit, or
SystemV Init (which may be added later), or other versions, from a functional
perspective, the default value of PROGNAME should be "init". For example, in
some Linux distributions, even systemd uses the widely recognized name "init":
```bash
$ cat /etc/lsb-release
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=22.04
DISTRIB_CODENAME=jammy
DISTRIB_DESCRIPTION="Ubuntu 22.04.3 LTS"
$ ls /usr/sbin/init -l
lrwxrwxrwx 1 root root 20 Jun 4 22:17 /usr/sbin/init -> /lib/systemd/systemd
```
```
SYSTEMD(1)
NAME
systemd, init - systemd system and service manager
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]