Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-09-03 | base_filesystem_create: do not try to create "/root" if it exists | Harald Hoyer | |
The check, if the directory/file already exists is only executed, if there is a symlink target specified. In case of "/root", there is none, so it is unconditionally tried to create the directory. In case of a readonly filesystem, errno != EEXIST, but errno == EROFS, so base_filesystem_create() and switch_root does not succeed. This patch checks for existance not only in the symlink case. | |||
2014-07-07 | base-filesystem.c: terminate string array elements with \0 | Harald Hoyer | |
NULSTR_FOREACH() looks for a terminating zero and the element also needs one. | |||
2014-07-01 | base-filesystem: avoid all searching if the link already exists | Kay Sievers | |
2014-07-01 | base-filesystem: explicitely check existence of the platform's ABI dynamic ↵ | Kay Sievers | |
loader | |||
2014-07-01 | base-filesystem: create /lib64 symlink to libdir /usr directory | Kay Sievers | |
2014-06-24 | nspawn: create essential base directories at system bootup | Kay Sievers | |
This allows us to bootup a rootfs with a /usr directory only. |