diff options
author | Andreas Kling <awesomekling@gmail.com> | 2018-12-19 21:14:55 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2018-12-19 21:14:55 +0100 |
commit | 038d8641f9394aa587c0fa06878b6798a80dbcda (patch) | |
tree | ab29b5465d3db41e21e8470915d82fdb24f9fea3 /Kernel/sync.sh | |
parent | e03d341615119788037f9e50c9043a30a2449894 (diff) | |
download | serenity-038d8641f9394aa587c0fa06878b6798a80dbcda.zip |
Implement utime() along with a naive /bin/touch.
This synchronous approach to inodes is silly, obviously. I need to rework
it so that the in-memory CoreInode object is the canonical inode, and then
we just need a sync() that flushes pending changes to disk.
Diffstat (limited to 'Kernel/sync.sh')
-rwxr-xr-x | Kernel/sync.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Kernel/sync.sh b/Kernel/sync.sh index 130ceba83c..49ed14e7e3 100755 --- a/Kernel/sync.sh +++ b/Kernel/sync.sh @@ -30,6 +30,7 @@ cp -v ../Userland/kill mnt/bin/kill cp -v ../Userland/tty mnt/bin/tty cp -v ../Userland/strsignal mnt/bin/strsignal cp -v ../Userland/mkdir mnt/bin/mkdir +cp -v ../Userland/touch mnt/bin/touch sh sync-local.sh cp -v kernel.map mnt/ ln -s dir_a mnt/dir_cur |