Magellan Linux

Diff of /trunk/mlivecdbuild/profiles/alx-0_7_branch/prepare_custom

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 2660 by niro, Fri Jan 3 07:45:49 2014 UTC revision 2661 by niro, Thu Jul 3 09:18:13 2014 UTC
# Line 8  install -d ${CDCHROOTDIR}/var/lib/plymou Line 8  install -d ${CDCHROOTDIR}/var/lib/plymou
8  install -m 0644 $(get_profile boot-duration.livecd) ${CDCHROOTDIR}/var/lib/plymouth/boot-duration || die  install -m 0644 $(get_profile boot-duration.livecd) ${CDCHROOTDIR}/var/lib/plymouth/boot-duration || die
9    
10  # install mnt-cdrom mount service, should be provided by alxinstall-ng  # install mnt-cdrom mount service, should be provided by alxinstall-ng
11  install -m 0644 $(get_profile mnt-cdrom.mount) ${CDCHROOTDIR}/usr/lib/systemd/system/mnt-cdrom.mount || die  #install -m 0644 $(get_profile mnt-cdrom.mount) ${CDCHROOTDIR}/usr/lib/systemd/system/mnt-cdrom.mount || die
12  ln -snf ../mnt-cdrom.mount ${CDCHROOTDIR}/usr/lib/systemd/system/local-fs.target.wants/mnt-cdrom.mount || die  #ln -snf ../mnt-cdrom.mount ${CDCHROOTDIR}/usr/lib/systemd/system/local-fs.target.wants/mnt-cdrom.mount || die
13    
14  # disable splash X11 vt change and set splash to be always verbose  # disable splash X11 vt change and set splash to be always verbose
15  #if [[ -f ${CDCHROOTDIR}/etc/splash/splash.conf ]]  #if [[ -f ${CDCHROOTDIR}/etc/splash/splash.conf ]]
# Line 19  ln -snf ../mnt-cdrom.mount ${CDCHROOTDIR Line 19  ln -snf ../mnt-cdrom.mount ${CDCHROOTDIR
19  # ${CDCHROOTDIR}/etc/splash/splash.conf  # ${CDCHROOTDIR}/etc/splash/splash.conf
20  #fi  #fi
21    
22    # setup de keymap and locales
23    if [ -f ${CDCHROOTDIR}/etc/vconsole.conf ]
24    then
25     cat > ${CDCHROOTDIR}/etc/vconsole.conf || die << EOF
26    KEYMAP=de
27    KEYMAP_TOGGLE=
28    FONT=lat9w-16
29    FONT_MAP=8859-1_to_uni
30    FONT_UNIMAP=
31    EOF
32    fi
33    if [ -f ${CDCHROOTDIR}/etc/locale.conf ]
34    then
35     sed "s:^\(LANG=\).*:\1\"de_DE.utf8\":" ${CDCHROOTDIR}/etc/locale.conf || die
36    fi
37    
38  # stop here if the user don't want to create the install tarball  # stop here if the user don't want to create the install tarball
39  [[ ! -z ${SKIP_CREATE_INSTALL_TARBALL} ]] && exit 0  [[ ! -z ${SKIP_CREATE_INSTALL_TARBALL} ]] && exit 0
40    

Legend:
Removed from v.2660  
changed lines
  Added in v.2661