This file is indexed.

/etc/tcos/hacking/template is in initramfs-tools-tcos 0.89.86.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
##############################################
#                                            #
#       Template hacking file of TCOS        #
#                                            #
##############################################
#
# PLEASE, DON'T EDIT THIS FILE, CREATE A NEW ONE
# IN /etc/tcos/hacking/ dir
#
# Examples:
#
#   # include nano
#   cpifexists /usr/bin/nano /usr/bin/
#   cpifexists /etc/nanorc    /etc
#
#
#   # copy a dir
#   copydir /usr/NX/          /usr/
#
#
#   # create a complex dir structure
#   mkdir -p $DESTDIR/var/cache/fonts
#
#   # $DESTDIR is where initramfs root dir 
#
#
#  To copy kernel modules (copy module depends to image too):
#
#    tcos_manual_add_modules   module_name
#
#  If you want to be loaded at startup:
#
#    echo "module_name" >> $DESTDIR/etc/modules
#
#
#  Some info in /usr/share/doc/initramfs-tools-tcos/HACKING
#