- Use container modules from kernel_modules stage for dependency resolution - Remove dependency on initramfs modules that haven't been copied yet - Fixes regression where clean builds had empty stage1.list - Dependency resolution now works correctly in clean build scenarios
10 lines
189 B
Bash
Executable File
10 lines
189 B
Bash
Executable File
#!/bin/sh
|
|
|
|
ntp_flags=$(grep -o 'ntp=.*' /proc/cmdline | sed 's/^ntp=//')
|
|
|
|
params=""
|
|
if [ -n "$ntp_flags" ]; then
|
|
params=$(echo "-p $ntp_flags" | sed s/,/' -p '/g)
|
|
fi
|
|
|
|
exec ntpd -n $params |