Re: [OE-core] Installing files in the /home/xxx directory

2013-10-21 Thread Ulf Samuelsson
On 2013-10-17 23:25, Ulf Samuelsson wrote: Would like to install some files in under the "/home" directory. A simplfied recipe looks like this: do_install () { install -d ${D}/${base_dir}/home/root install-m 0644${S}/my.conf ${D}/${base_dir}/home/root/my.conf } FILES_mypackage

[OE-core] Installing files in the /home/xxx directory

2013-10-17 Thread Ulf Samuelsson
Would like to install some files in under the "/home" directory. A simplfied recipe looks like this: do_install () { install -d ${D}/${base_dir}/home/root install-m 0644${S}/my.conf ${D}/${base_dir}/home/root/my.conf } FILES_mypackage = "${base_dir}/home/root/* " Have extended