Sterling
Sterling
DIIDevHeads IoT Integration Server
Created by Sterling on 7/16/2024 in #📦-middleware-and-os
Is there a method for creating a new empty directory in the root filesystem in BitBake?
Lest I forget guys @Middleware & OS, Is there a specific method for creating a new, empty directory in the root filesystem in BitBake? I attempted to include this in one of my bbappend files:
do_install() {
install -d ${D}/tmp/myNewDir
}
FILES_${PN} += "/tmp/myNewDir"
do_install() {
install -d ${D}/tmp/myNewDir
}
FILES_${PN} += "/tmp/myNewDir"
I ended up with a vague error: "Function failed: do_install". I want the desired location for the directory to be in /tmp.
3 replies