Compare commits
4 Commits
cgroup-nam
...
0.44.1
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f839ba27c5 | ||
|
|
80dd6aac5f | ||
|
|
0d00b8d8ab | ||
|
|
551bdff2fb |
24
ChangeLog
24
ChangeLog
@@ -1,3 +1,27 @@
|
||||
commit 0d00b8d8abe33c4d824446ed989e8cc3166590b4
|
||||
Author: William Hubbs <w.d.hubbs@gmail.com>
|
||||
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||
|
||||
build: fix sysvinit script installation
|
||||
|
||||
commit 551bdff2fbe61452187d5d492377b876e868a9fb
|
||||
Author: William Hubbs <w.d.hubbs@gmail.com>
|
||||
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||
|
||||
build: fix symlinks
|
||||
|
||||
commit 803aa1c637c42352c05a520dbb02bee6c03ccf75
|
||||
Author: William Hubbs <w.d.hubbs@gmail.com>
|
||||
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||
|
||||
version 0.44
|
||||
|
||||
commit fb186a38673201a7a25d6a7c1516fcb734020ee1
|
||||
Author: William Hubbs <w.d.hubbs@gmail.com>
|
||||
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||
|
||||
update ChangeLog
|
||||
|
||||
commit c9b64b64fa9b2d2ee31684e8d35375f4c5bddba1
|
||||
Author: William Hubbs <w.d.hubbs@gmail.com>
|
||||
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
NAME= openrc
|
||||
VERSION= 0.44
|
||||
VERSION= 0.44.1
|
||||
PKG= ${NAME}-${VERSION}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
project('OpenRC', 'c',
|
||||
version : '0.44',
|
||||
version : '0.44.1',
|
||||
license: 'BSD-2',
|
||||
default_options : [
|
||||
'c_std=c99',
|
||||
@@ -180,7 +180,8 @@ meson.add_install_script('tools/meson_runlevels.sh',
|
||||
os,
|
||||
get_option('newnet') ? 'yes' : 'no',
|
||||
rc_libexecdir,
|
||||
get_option('sysconfdir'))
|
||||
get_option('sysconfdir'),
|
||||
get_option('sysvinit') ? 'yes' : 'no')
|
||||
meson.add_install_script('tools/meson_final.sh',
|
||||
rc_libexecdir,
|
||||
os)
|
||||
|
||||
@@ -12,10 +12,10 @@ scripts_Linux = [
|
||||
]
|
||||
|
||||
scripts_sysvinit = [
|
||||
'halt',
|
||||
'poweroff',
|
||||
'shutdown',
|
||||
'reboot',
|
||||
'halt.in',
|
||||
'poweroff.in',
|
||||
'shutdown.in',
|
||||
'reboot.in',
|
||||
]
|
||||
|
||||
install_data(scripts_internal,
|
||||
|
||||
@@ -12,3 +12,8 @@ for f in $binaries; do
|
||||
"${DESTDIR}${sbindir}/${f}"
|
||||
fi
|
||||
done
|
||||
# sysvinit is active when halt exits
|
||||
if [ -x "${DESTDIR}${rc_libexecdir}/bin/halt" ]; then
|
||||
ln -snf "${DESTDIR}${sbindir}/openrc-init" \
|
||||
"${DESTDIR}${sbindir}/init"
|
||||
fi
|
||||
|
||||
@@ -7,6 +7,7 @@ os="$1"
|
||||
net="$2"
|
||||
rc_libexecdir="$3"
|
||||
sysconfdir="$4"
|
||||
sysvinit="$5"
|
||||
|
||||
init_d_dir="${sysconfdir}/init.d"
|
||||
leveldir="${sysconfdir}/runlevels"
|
||||
@@ -90,5 +91,11 @@ if ! test -d "${DESTDIR}${shutdowndir}"; then
|
||||
ln -snf "${init_d_dir}/$x" "${DESTDIR}${shutdowndir}/$x"
|
||||
done
|
||||
fi
|
||||
if test "${sysvinit}" = yes && test "${os}" = Linux; then \
|
||||
for x in tty1 tty2 tty3 tty4 tty5 tty6; do
|
||||
ln -snf "${init_d_dir}/agetty" "${DESTDIR}/${init_d_dir}/agetty.$x"
|
||||
ln -snf "${init_d_dir}/agetty.$x" "${DESTDIR}/${defaultdir}/agetty.$x"
|
||||
done;
|
||||
fi
|
||||
|
||||
ln -snf "${rc_libexecdir}"/sh/functions.sh "${DESTDIR}/${init_d_dir}"
|
||||
|
||||
Reference in New Issue
Block a user