diff options
author | davidovski <david@davidovski.xyz> | 2022-03-30 23:58:13 +0100 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-03-30 23:58:13 +0100 |
commit | cdfc69fe6621f7b2b4b31ea38365b7c652e51a29 (patch) | |
tree | cbe028480144e9a27904392899fec9d07df448c6 /repo/system | |
parent | de16da348671bd797500ab144ae56d23e88c7463 (diff) |
bumped versions on xi tools
Diffstat (limited to 'repo/system')
-rw-r--r-- | repo/system/grub.xibuild | 12 | ||||
-rw-r--r-- | repo/system/sysklogd.xibuild | 4 |
2 files changed, 14 insertions, 2 deletions
diff --git a/repo/system/grub.xibuild b/repo/system/grub.xibuild index cf224bb..343c07e 100644 --- a/repo/system/grub.xibuild +++ b/repo/system/grub.xibuild @@ -28,4 +28,16 @@ package () { make DESTDIR=$PKG_DEST install mkdir -p $PKG_DEST/usr/share/bash-completion/completions mv $PKG_DEST/etc/bash_completion.d/grub $PKG_DEST/usr/share/bash-completion/completions + mkdir -p $PKG_DEST/etc/default + cat > $PKG_DEST/etc/default/grub << "EOF" +# GRUB boot loader configuration + +GRUB_DEFAULT=0 +GRUB_TIMEOUT=5 +GRUB_DISTRIBUTOR="XiLinux" + +GRUB_CMDLINE_LINUX_DEFAULT="" +GRUB_CMDLINE_LINUX="" + +EOF } diff --git a/repo/system/sysklogd.xibuild b/repo/system/sysklogd.xibuild index bfff8c4..87370e4 100644 --- a/repo/system/sysklogd.xibuild +++ b/repo/system/sysklogd.xibuild @@ -33,6 +33,6 @@ user.* -/var/log/user.log # End /etc/syslog.conf EOF install -Dm 754 sysklogd.initd $PKG_DEST/etc/init.d/sysklogd - mkdir -p $PKG_DEST/etc/runlevels/boot/ - ln -s /etc/init.d/sysklogd $PKG_DEST/etc/runlevels/boot/sysklogd + mkdir -p $PKG_DEST/etc/runlevels/default/ + ln -s /etc/init.d/sysklogd $PKG_DEST/etc/runlevels/default/sysklogd } |