diff options
| author | Jonathan Bauer | 2013-02-13 13:36:00 +0100 |
|---|---|---|
| committer | Jonathan Bauer | 2013-02-13 13:36:00 +0100 |
| commit | 73b5c26cfaac0a073762f6e69c30532fa0e88662 (patch) | |
| tree | 073ed94cc89e2b8d568637e4e3b53ac7793756a2 | |
| parent | [systemd] service files for: network interface, udhcpc, nfs mount (diff) | |
| download | tm-scripts-73b5c26cfaac0a073762f6e69c30532fa0e88662.tar.gz tm-scripts-73b5c26cfaac0a073762f6e69c30532fa0e88662.tar.xz tm-scripts-73b5c26cfaac0a073762f6e69c30532fa0e88662.zip | |
german keymap loading & fix for aufs and squashfs modules
3 files changed, 10 insertions, 0 deletions
diff --git a/remote/tools/systemd/data/etc/systemd/system/load-german-keymap.service b/remote/tools/systemd/data/etc/systemd/system/load-german-keymap.service new file mode 100644 index 00000000..74753259 --- /dev/null +++ b/remote/tools/systemd/data/etc/systemd/system/load-german-keymap.service @@ -0,0 +1,5 @@ +[Unit] +Description=Setup german keyboard layout + +[Service] +ExecStart=/bin/bash -c 'exec /openslx/sbin/loadkmap < /etc/keymaps/de_DE' diff --git a/remote/tools/systemd/data/etc/systemd/system/sysinit.target.wants/load-german-keymap.service b/remote/tools/systemd/data/etc/systemd/system/sysinit.target.wants/load-german-keymap.service new file mode 120000 index 00000000..d329f45a --- /dev/null +++ b/remote/tools/systemd/data/etc/systemd/system/sysinit.target.wants/load-german-keymap.service @@ -0,0 +1 @@ +../load-german-keymap.service
\ No newline at end of file diff --git a/server/build_core b/server/build_core index 8435a4fe..a9763715 100755 --- a/server/build_core +++ b/server/build_core @@ -71,6 +71,10 @@ generate_initramfs() { # copy busybox, its libs and static data to stage3.1 cp -r ${STAGE32_DIR}/openslx/* ${STAGE31_STATIC_DIR}/* ${STAGE31_DIR} + # fix for aufs & squashfs modules needed for stage 3.1 + cp /lib/modules/$(uname -r)/kernel/fs/squashfs/squashfs.ko ${STAGE31_DIR}/lib/modules + cp /lib/modules/$(uname -r)/kernel/ubuntu/aufs/aufs.ko ${STAGE31_DIR}/lib/modules + # fetch the libraries needed for busybox BASICLIBS="" for i in $(ldd ${STAGE31_DIR}/bin/busybox); |
