0

I want to modify the permission of a file. I created my own device_table.txt in location board/<product>.

Configured BR2_ROOTFS_DEVICE_TABLE to point to the location of the new device_table.txt.

The permission of the file is not modified.

I can see that buildroot uses a default device_table.txt: system/device_table.txt.

Do I have to do extra configurations to buildroot? What I am missing?

Vasi Marin
  • 453
  • 1
  • 3
  • 9
  • It seems that the ROOTFS_DEVICE_TABLE makefile variable is not getting the new device_table.txt location. Uses the default one. – Vasi Marin Jul 22 '21 at 15:52

1 Answers1

0

Problem found: had a space in:

BR2_ROOTFS_DEVICE_TABLE =<device_table_location>.

Fix BR2_ROOTFS_DEVICE_TABLE=<device_table_location>.

Vasi Marin
  • 453
  • 1
  • 3
  • 9