Hi, > -----Original Message----- > From: linux-arm-kernel [mailto:linux-arm-kernel- > [email protected]] On Behalf Of Abhilash Kesavan > Sent: Monday, September 22, 2014 1:47 PM > To: [email protected]; linux-arm- > [email protected]; [email protected]; > [email protected] > Cc: [email protected]; [email protected]; > [email protected] > Subject: [PATCH v5 8/8] arm64: dts: add <dt-bindings/> symlink > > From: Pankaj Dubey <[email protected]> > > Add symlink to include/dt-bindings from arch/arm64/boot/dts/include/ to > match the ones in ARM architectures so that preprocessed device > tree files can include various useful constant definitions. > > See commit c58299aa8754 ("kbuild: create an "include chroot" for DT > bindings") > merged in v3.10-rc1 for details. > > CC: Catalin Marinas <[email protected]> > Signed-off-by: Pankaj Dubey <[email protected]> > Signed-off-by: Abhilash Kesavan <[email protected]> > Reviewed-by: Thomas Abraham <[email protected]> > Tested-by: Thomas Abraham <[email protected]> > --- > arch/arm64/boot/dts/include/dt-bindings | 1 + > 1 file changed, 1 insertion(+) > create mode 120000 arch/arm64/boot/dts/include/dt-bindings > > diff --git a/arch/arm64/boot/dts/include/dt-bindings > b/arch/arm64/boot/dts/include/dt-bindings > new file mode 120000 > index 0000000..1e89bce > --- /dev/null > +++ b/arch/arm64/boot/dts/include/dt-bindings > @@ -0,0 +1 @@ > +../../../../../include/dt-bindings/ > \ No newline at end of file ^ It generates incorrect symlink. Please remove last line like below:
diff --git a/arch/arm64/boot/dts/include/dt-bindings b/arch/arm64/boot/dts/include/dt-bindings new file mode 120000 index 0000000..499472b --- /dev/null +++ b/arch/arm64/boot/dts/include/dt-bindings @@ -0,0 +1 @@ +../../../../../include/dt-bindings/ -- Best Regards, Chanho Park -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html
