This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

PROCESSOR-SDK-AM62X: How I can apply changed defconfig setting to .config

Part Number: PROCESSOR-SDK-AM62X

Hello,

I use Linux SDK 08_06_00_42.
I have following question.

* I'm modifing "tisdk_am62xx-evm_defconfig" directly.
After modifing "tisdk_am62xx-evm_defconfig", I perform following command.

$ make  ARCH=arm64 CROSS_COMPILE=aarch64-none-linux-gnu- tisdk_am62xx-evm_defconfig

I could confirm message of "configuration written to .config", however the setting which I modify is NOT changed.
I re-confirmed above defconfig file, but changed point was remained. So could you please tell how I can apply modified defconfig setting to .config file ?
(Of course, I know I can apply setting to .config by using menuconfig, but it is difficult to apply small setting change, so if possible, I would like to apply this by modifing defconfig.)

Best Regards

  • Hi Machida-san,

    I could confirm message of "configuration written to .config", however the setting which I modify is NOT changed.

    This is likely due to missing Kconfig dependencies.

    Here is the proper way:

    $ export ARCH=arm64
    $ export CROSS_COMPILE=aarch64-none-linux-gnu- 
    $ make tisdk_am62xx-evm_defconfig
    $ make menuconfig       <== make corresponding config changes and save and exit
    $ make savedefconfig    <== this generates file defconfig from .config at the kernel top level directory
    $ cp defconfig arch/arm64/configs/tisdk_am62xx-evm_defconfig

    Now the change you made is already in tisdk_am62xx-evm_defconfig. From now on, whenever you do 'make tisdk_am62xx-evm_defconfig', the generated .config should have the changes you wanted.

  • Hello,

    I performed above your posted contents.
    I could create new tisdk_am62xx-evm_defconfig, but file size is quitely different from original ".config" file.

    * Original ".config" size is "202649"
    * Created defconfig size is "22136".

    From following sentence, created defconfig size should become similar size to ".config". However is my this understanding incorrect ?

    >$ make savedefconfig    <== this generates file defconfig from .config at the kernel top level directory

    BR,

  • No, the file defconfig should have similar size to tisdk_am62xx-evm_defconfig.

    .config is much bigger, it has a lot of config options generated based on default values in kernel Kconfig.

  • I just edited my first response above with more instructions at the end. Hopefully it is complete now.

  • Hello,
    I performed last intruction which you wrote on first response.

    I confirmed following message after performing "make tisdk_am62xx-evm_defconfig", but file size is different from original tisdk_am62xx-evm_defconfig...

    --
    #
    # configuration written to .config
    #
    --

    It seems this phenomenon is same as my first question...
    Did you set any other before performing "make tisdk_am62xx-evm_defconfig" ?

    BR,

  • I confirmed following message after performing "make tisdk_am62xx-evm_defconfig", but file size is different from original tisdk_am62xx-evm_defconfig...

    While file size? tisdk_am62xx-evm_defconfig or .config?

    It seems this phenomenon is same as my first question...

    Do you mean .config still doesn't have the option you changed in 'make menuconfig'?

  • Hello,

    >While file size? tisdk_am62xx-evm_defconfig or .config?
    Time stamp was changed, but file size was same as following condition.

    >* Original ".config" size is "202649"
    >* Created defconfig size is "22136".

    >Do you mean .config still doesn't have the option you changed in 'make menuconfig'?
    No, menuconfig setting was applied to ".config" file.
    But, what I mean is defconfig setting was NOT applied to ".config" file. (As I described above, time zone was changed, but file size was different between defconfig and ".config".)

    BR,

  • Sorry, it is till not clear to me what exactly the problem is.

    Please start over and do the process again. Please capture the console log of the entire process to a file and attach it here. The log would show me the problem you have.

    Please also indication which option(s) you changed in 'make menuconfig'.

  • Hello,

    OK, I will create document to explain my problem.
    Please wait for a while.

    BR,

  • Hello,

    Please see attached log.

    ----
    Line 2 : $ make ARCH=arm64 CROSS_COMPILE=aarch64-none-linux-gnu- distclean
    Line 23 : $ make ARCH=arm64 CROSS_COMPILE=aarch64-none-linux-gnu- tisdk_am62xx-evm_defconfig
    Line 42 : $ $ gedit tisdk_am62xx-evm_defconfig (Modify defconfig by myself)
    LIne 44 : $ make ARCH=arm64 CROSS_COMPILE=aarch64-none-linux-gnu- tisdk_am62xx-evm_defconfig
    => I got "No change to ".config"" I expect that ".config" file will change following by my above change.
    ----

    ----
    Line 3205 : $ make ARCH=arm64 CROSS_COMPILE=aarch64-none-linux-gnu- tisdk_am62xx-evm_defconfig
    Line 3217 : $ make ARCH=arm64 CROSS_COMPILE=aarch64-none-linux-gnu- savedefconfig
    => I confirmed "defconfig" file was generated however size is different from ".config"
    -rw-rw-r--   1 machida machida    202693 12月  2 10:00 .config
    -rw-rw-r--   1 machida machida     22136 12月  2 10:02 defconfig
    ----

    As I described, I expect ".config" become same setting when I perform "make ARCH=arm64 CROSS_COMPILE=aarch64-none-linux-gnu- tisdk_am62xx-evm_defconfig". However the result was different.

    And also, I expect "defconfig" become same setting when I perform "make ARCH=arm64 CROSS_COMPILE=aarch64-none-linux-gnu- savedefconfig". However the result was different.

    Is there any wrong understanding ?

    BR,

    defconfigissue_E2E.txt


  • Is there any wrong understanding ?

    Yes.

    Please study how to use kernel 'make savedefconfig', this is not relevant to TI platforms, or follow my exact instructions.

  • Hello,

    Since my previous log file was complex, so I re-confirmed again.
    Here is point.

    * I enabled "CONFIG_HDC100X" from "menuconfig".

    As a result, I actually confirmed above change was reflected both ".config" and "tisdk_am62xx-evm_defconfig", however file size was different.

    From your reply, I think that ".config" should be similar size to "tisdk_am62xx-evm_defconfig", however is it expected result ?

    Here is summary about attached log and please see attached file about detail.

    ---
    Line 67 : $ export ARCH=arm64
    Line 68 : $ export CROSS_COMPILE=aarch64-none-linux-gnu-
    Line 69 : $ make tisdk_am62xx-evm_defconfig
    Line 73 : $ make menuconfig  //Enabled "CONFIG_HDC100X"
    Line 144 : $ make savedefconfig
    => After "ls" command ; defconfig                 // Confirmed "CONFIG_HDC100X" was enabled.
    Line 219 : $ cp defconfig arch/arm64/configs/tisdk_am62xx-evm_defconfig
    => After "ls" command ; tisdk_am62xx-evm_defconfig     //"cp" was applied.
    Line 229 : $ make tisdk_am62xx-evm_defconfig
    => ".config" size is "202638" and "tisdk_am62xx-evm_defconfig" size is "22153"
    However, I confirmed "CONFIG_HDC100X" was enabled on both file.

    Line 302 : $ gedit tisdk_am62xx-evm_defconfig //Removed "CONFIG_HDC100X" manually.
    Line 305 : $ make tisdk_am62xx-evm_defconfig
    Line 309 : $ gedit .config  //Confirmed "CONFIG_HDC100X" was disabled
    => Changed contents of "tisdk_am62xx-evm_defconfig" was applied to ".config" however file size was different.
    ---

    Best Regards,


    machida@machida-virtual-machine:~$ cd ti-processor-sdk-linux-am62xx-evm-08.06.00.42/board-support/linux-5.10.168+gitAUTOINC+2c23e6c538-g2c23e6c538/
    machida@machida-virtual-machine:~/ti-processor-sdk-linux-am62xx-evm-08.06.00.42/board-support/linux-5.10.168+gitAUTOINC+2c23e6c538-g2c23e6c538$ ls -la
    total 1245500
    drwxr-xr-x  27 machida machida      4096 12月  4 13:09 .
    drwxr-xr-x  10 machida machida      4096  2月 24  2023 ..
    drwxr-xr-x  26 machida machida      4096  2月 24  2023 arch
    drwxr-xr-x   3 machida machida     12288 12月  1 20:42 block
    drwxr-xr-x   2 machida machida      4096 12月  1 20:35 certs
    -rw-r--r--   1 machida machida     16673  2月 24  2023 .clang-format
    -rw-r--r--   1 machida machida        59  2月 24  2023 .cocciconfig
    -rw-rw-r--   1 machida machida    202649 12月  4 10:10 .config
    -rw-rw-r--   1 machida machida    202649 12月  2 11:15 .config.BACK
    -rw-rw-r--   1 machida machida    202649 11月 20 14:18 .config.DEFCONFIG
    -rw-rw-r--   1 machida machida    202693 12月  2 10:00 .config.old
    -rw-r--r--   1 machida machida       496  2月 24  2023 COPYING
    -rw-r--r--   1 machida machida    100478  2月 24  2023 CREDITS
    drwxr-xr-x   4 machida machida     20480 12月  1 20:41 crypto
    -rw-rw-r--   1 machida machida     19750 12月  4 10:07 defconfig
    drwxr-xr-x  81 machida machida      4096  2月 24  2023 Documentation
    drwxr-xr-x 141 machida machida      4096 12月  1 20:52 drivers
    drwxr-xr-x  79 machida machida     12288 12月  1 20:40 fs
    -rw-r--r--   1 machida machida        71  2月 24  2023 .get_maintainer.ignore
    drwxr-xr-x   8 machida machida      4096  2月 24  2023 .git
    -rw-r--r--   1 machida machida        62  2月 24  2023 .gitattributes
    -rw-r--r--   1 machida machida      1918  2月 24  2023 .gitignore
    drwxr-xr-x  31 machida machida      4096 12月  1 19:48 include
    drwxr-xr-x   2 machida machida      4096 12月  1 20:32 init
    drwxr-xr-x   2 machida machida      4096 12月  1 20:42 io_uring
    drwxr-xr-x   2 machida machida      4096 12月  1 20:40 ipc
    -rw-r--r--   1 machida machida      1327  2月 24  2023 Kbuild
    -rw-r--r--   1 machida machida       555  2月 24  2023 Kconfig
    drwxr-xr-x  21 machida machida     12288 12月  4 10:22 kernel
    drwxr-xr-x  21 machida machida     20480 12月  1 20:58 lib
    drwxr-xr-x   6 machida machida      4096  2月 24  2023 LICENSES
    -rw-r--r--   1 machida machida     18204  2月 24  2023 .mailmap
    -rw-r--r--   1 machida machida    578683  2月 24  2023 MAINTAINERS
    -rw-r--r--   1 machida machida     64743  2月 24  2023 Makefile
    -rw-rw-r--   1 machida machida       578 12月  4 10:22 .missing-syscalls.d
    drwxr-xr-x   3 machida machida     12288 12月  1 20:36 mm
    -rw-rw-r--   1 machida machida     16938 12月  1 20:58 modules.builtin
    -rw-rw-r--   1 machida machida    107974 12月  1 20:58 modules.builtin.modinfo
    drwxr-xr-x  73 machida machida      4096 12月  1 20:56 net
    -rw-r--r--   1 machida machida       727  2月 24  2023 README
    drwxr-xr-x  32 machida machida      4096 12月  1 20:52 samples
    -rw-r--r--   1 machida machida        13  2月 24  2023 .scmversion
    drwxr-xr-x  17 machida machida      4096 12月  1 20:31 scripts
    drwxr-xr-x  13 machida machida      4096 12月  1 20:41 security
    drwxr-xr-x  26 machida machida      4096 12月  1 20:52 sound
    -rw-rw-r--   1 machida machida   4132067 12月  1 20:58 System.map
    drwxr-xr-x   2 machida machida      4096  2月 24  2023 ti_config_fragments
    -rw-r--r--   1 machida machida       553  2月 24  2023 TISDK-README
    -rw-rw-r--   1 machida machida   4132067 12月  1 20:58 .tmp_System.map
    -rwxrwxr-x   1 machida machida  23102672 12月  1 20:58 .tmp_vmlinux.kallsyms1
    -rw-rw-r--   1 machida machida   1606784 12月  1 20:58 .tmp_vmlinux.kallsyms1.o
    -rw-rw-r--   1 machida machida   9439274 12月  1 20:58 .tmp_vmlinux.kallsyms1.S
    -rwxrwxr-x   1 machida machida  24741448 12月  1 20:58 .tmp_vmlinux.kallsyms2
    -rw-rw-r--   1 machida machida   1606784 12月  1 20:58 .tmp_vmlinux.kallsyms2.o
    -rw-rw-r--   1 machida machida   9440168 12月  1 20:58 .tmp_vmlinux.kallsyms2.S
    drwxr-xr-x  37 machida machida      4096  2月 24  2023 tools
    drwxr-xr-x   3 machida machida      4096 12月  1 20:32 usr
    -rw-rw-r--   1 machida machida         2 12月  1 20:58 .version
    drwxr-xr-x   4 machida machida      4096 12月  1 20:56 virt
    -rwxrwxr-x   1 machida machida 335738360 12月  1 20:58 vmlinux
    -rw-rw-r--   1 machida machida       253 12月  1 20:58 .vmlinux.cmd
    -rw-rw-r--   1 machida machida 859522168 12月  1 20:58 vmlinux.o
    machida@machida-virtual-machine:~/ti-processor-sdk-linux-am62xx-evm-08.06.00.42/board-support/linux-5.10.168+gitAUTOINC+2c23e6c538-g2c23e6c538$ export PATH=/home/machida/ti-processor-sdk-linux-am62xx-evm-08.06.00.42/linux-devkit/sysroots/x86_64-arago-linux/usr/bin:$PATH
    machida@machida-virtual-machine:~/ti-processor-sdk-linux-am62xx-evm-08.06.00.42/board-support/linux-5.10.168+gitAUTOINC+2c23e6c538-g2c23e6c538$ export ARCH=arm64
    machida@machida-virtual-machine:~/ti-processor-sdk-linux-am62xx-evm-08.06.00.42/board-support/linux-5.10.168+gitAUTOINC+2c23e6c538-g2c23e6c538$ export CROSS_COMPILE=aarch64-none-linux-gnu-
    machida@machida-virtual-machine:~/ti-processor-sdk-linux-am62xx-evm-08.06.00.42/board-support/linux-5.10.168+gitAUTOINC+2c23e6c538-g2c23e6c538$ make tisdk_am62xx-evm_defconfig
    #
    # No change to .config
    #
    machida@machida-virtual-machine:~/ti-processor-sdk-linux-am62xx-evm-08.06.00.42/board-support/linux-5.10.168+gitAUTOINC+2c23e6c538-g2c23e6c538$ make menuconfig  //Enabled "CONFIG_HDC100X"
    
    
    *** End of the configuration.
    *** Execute 'make' to start the build or try 'make help'.
    
    machida@machida-virtual-machine:~/ti-processor-sdk-linux-am62xx-evm-08.06.00.42/board-support/linux-5.10.168+gitAUTOINC+2c23e6c538-g2c23e6c538$ ls -la
    total 1245500
    drwxr-xr-x  27 machida machida      4096 12月  5 07:12 .
    drwxr-xr-x  10 machida machida      4096  2月 24  2023 ..
    drwxr-xr-x  26 machida machida      4096  2月 24  2023 arch
    drwxr-xr-x   3 machida machida     12288 12月  1 20:42 block
    drwxr-xr-x   2 machida machida      4096 12月  1 20:35 certs
    -rw-r--r--   1 machida machida     16673  2月 24  2023 .clang-format
    -rw-r--r--   1 machida machida        59  2月 24  2023 .cocciconfig
    -rw-rw-r--   1 machida machida    202638 12月  5 07:12 .config                   //Confirmd ".config" was updated.
    -rw-rw-r--   1 machida machida    202649 12月  2 11:15 .config.BACK
    -rw-rw-r--   1 machida machida    202649 11月 20 14:18 .config.DEFCONFIG
    -rw-rw-r--   1 machida machida    202649 12月  4 10:10 .config.old
    -rw-r--r--   1 machida machida       496  2月 24  2023 COPYING
    -rw-r--r--   1 machida machida    100478  2月 24  2023 CREDITS
    drwxr-xr-x   4 machida machida     20480 12月  1 20:41 crypto
    -rw-rw-r--   1 machida machida     19750 12月  4 10:07 defconfig
    drwxr-xr-x  81 machida machida      4096  2月 24  2023 Documentation
    drwxr-xr-x 141 machida machida      4096 12月  1 20:52 drivers
    drwxr-xr-x  79 machida machida     12288 12月  1 20:40 fs
    -rw-r--r--   1 machida machida        71  2月 24  2023 .get_maintainer.ignore
    drwxr-xr-x   8 machida machida      4096  2月 24  2023 .git
    -rw-r--r--   1 machida machida        62  2月 24  2023 .gitattributes
    -rw-r--r--   1 machida machida      1918  2月 24  2023 .gitignore
    drwxr-xr-x  31 machida machida      4096 12月  1 19:48 include
    drwxr-xr-x   2 machida machida      4096 12月  1 20:32 init
    drwxr-xr-x   2 machida machida      4096 12月  1 20:42 io_uring
    drwxr-xr-x   2 machida machida      4096 12月  1 20:40 ipc
    -rw-r--r--   1 machida machida      1327  2月 24  2023 Kbuild
    -rw-r--r--   1 machida machida       555  2月 24  2023 Kconfig
    drwxr-xr-x  21 machida machida     12288 12月  4 10:22 kernel
    drwxr-xr-x  21 machida machida     20480 12月  1 20:58 lib
    drwxr-xr-x   6 machida machida      4096  2月 24  2023 LICENSES
    -rw-r--r--   1 machida machida     18204  2月 24  2023 .mailmap
    -rw-r--r--   1 machida machida    578683  2月 24  2023 MAINTAINERS
    -rw-r--r--   1 machida machida     64743  2月 24  2023 Makefile
    -rw-rw-r--   1 machida machida       578 12月  4 10:22 .missing-syscalls.d
    drwxr-xr-x   3 machida machida     12288 12月  1 20:36 mm
    -rw-rw-r--   1 machida machida     16938 12月  1 20:58 modules.builtin
    -rw-rw-r--   1 machida machida    107974 12月  1 20:58 modules.builtin.modinfo
    drwxr-xr-x  73 machida machida      4096 12月  1 20:56 net
    -rw-r--r--   1 machida machida       727  2月 24  2023 README
    drwxr-xr-x  32 machida machida      4096 12月  1 20:52 samples
    -rw-r--r--   1 machida machida        13  2月 24  2023 .scmversion
    drwxr-xr-x  17 machida machida      4096 12月  1 20:31 scripts
    drwxr-xr-x  13 machida machida      4096 12月  1 20:41 security
    drwxr-xr-x  26 machida machida      4096 12月  1 20:52 sound
    -rw-rw-r--   1 machida machida   4132067 12月  1 20:58 System.map
    drwxr-xr-x   2 machida machida      4096  2月 24  2023 ti_config_fragments
    -rw-r--r--   1 machida machida       553  2月 24  2023 TISDK-README
    -rw-rw-r--   1 machida machida   4132067 12月  1 20:58 .tmp_System.map
    -rwxrwxr-x   1 machida machida  23102672 12月  1 20:58 .tmp_vmlinux.kallsyms1
    -rw-rw-r--   1 machida machida   1606784 12月  1 20:58 .tmp_vmlinux.kallsyms1.o
    -rw-rw-r--   1 machida machida   9439274 12月  1 20:58 .tmp_vmlinux.kallsyms1.S
    -rwxrwxr-x   1 machida machida  24741448 12月  1 20:58 .tmp_vmlinux.kallsyms2
    -rw-rw-r--   1 machida machida   1606784 12月  1 20:58 .tmp_vmlinux.kallsyms2.o
    -rw-rw-r--   1 machida machida   9440168 12月  1 20:58 .tmp_vmlinux.kallsyms2.S
    drwxr-xr-x  37 machida machida      4096  2月 24  2023 tools
    drwxr-xr-x   3 machida machida      4096 12月  1 20:32 usr
    -rw-rw-r--   1 machida machida         2 12月  1 20:58 .version
    drwxr-xr-x   4 machida machida      4096 12月  1 20:56 virt
    -rwxrwxr-x   1 machida machida 335738360 12月  1 20:58 vmlinux
    -rw-rw-r--   1 machida machida       253 12月  1 20:58 .vmlinux.cmd
    -rw-rw-r--   1 machida machida 859522168 12月  1 20:58 vmlinux.o
    -rw-rw-r--   1 machida machida    648394 12月  1 20:58 vmlinux.symvers
    machida@machida-virtual-machine:~/ti-processor-sdk-linux-am62xx-evm-08.06.00.42/board-support/linux-5.10.168+gitAUTOINC+2c23e6c538-g2c23e6c538$ make savedefconfig
    machida@machida-virtual-machine:~/ti-processor-sdk-linux-am62xx-evm-08.06.00.42/board-support/linux-5.10.168+gitAUTOINC+2c23e6c538-g2c23e6c538$ ls -la
    total 1245504
    drwxr-xr-x  27 machida machida      4096 12月  5 07:13 .
    drwxr-xr-x  10 machida machida      4096  2月 24  2023 ..
    drwxr-xr-x  26 machida machida      4096  2月 24  2023 arch
    drwxr-xr-x   3 machida machida     12288 12月  1 20:42 block
    drwxr-xr-x   2 machida machida      4096 12月  1 20:35 certs
    -rw-r--r--   1 machida machida     16673  2月 24  2023 .clang-format
    -rw-r--r--   1 machida machida        59  2月 24  2023 .cocciconfig
    -rw-rw-r--   1 machida machida    202638 12月  5 07:12 .config
    -rw-rw-r--   1 machida machida    202649 12月  2 11:15 .config.BACK
    -rw-rw-r--   1 machida machida    202649 11月 20 14:18 .config.DEFCONFIG
    -rw-rw-r--   1 machida machida    202649 12月  4 10:10 .config.old
    -rw-r--r--   1 machida machida       496  2月 24  2023 COPYING
    -rw-r--r--   1 machida machida    100478  2月 24  2023 CREDITS
    drwxr-xr-x   4 machida machida     20480 12月  1 20:41 crypto
    -rw-rw-r--   1 machida machida     22153 12月  5 07:13 defconfig                 // Confirmed "CONFIG_HDC100X" was enabled.
    drwxr-xr-x  81 machida machida      4096  2月 24  2023 Documentation
    drwxr-xr-x 141 machida machida      4096 12月  1 20:52 drivers
    drwxr-xr-x  79 machida machida     12288 12月  1 20:40 fs
    -rw-r--r--   1 machida machida        71  2月 24  2023 .get_maintainer.ignore
    drwxr-xr-x   8 machida machida      4096  2月 24  2023 .git
    -rw-r--r--   1 machida machida        62  2月 24  2023 .gitattributes
    -rw-r--r--   1 machida machida      1918  2月 24  2023 .gitignore
    drwxr-xr-x  31 machida machida      4096 12月  1 19:48 include
    drwxr-xr-x   2 machida machida      4096 12月  1 20:32 init
    drwxr-xr-x   2 machida machida      4096 12月  1 20:42 io_uring
    drwxr-xr-x   2 machida machida      4096 12月  1 20:40 ipc
    -rw-r--r--   1 machida machida      1327  2月 24  2023 Kbuild
    -rw-r--r--   1 machida machida       555  2月 24  2023 Kconfig
    drwxr-xr-x  21 machida machida     12288 12月  4 10:22 kernel
    drwxr-xr-x  21 machida machida     20480 12月  1 20:58 lib
    drwxr-xr-x   6 machida machida      4096  2月 24  2023 LICENSES
    -rw-r--r--   1 machida machida     18204  2月 24  2023 .mailmap
    -rw-r--r--   1 machida machida    578683  2月 24  2023 MAINTAINERS
    -rw-r--r--   1 machida machida     64743  2月 24  2023 Makefile
    -rw-rw-r--   1 machida machida       578 12月  4 10:22 .missing-syscalls.d
    drwxr-xr-x   3 machida machida     12288 12月  1 20:36 mm
    -rw-rw-r--   1 machida machida     16938 12月  1 20:58 modules.builtin
    -rw-rw-r--   1 machida machida    107974 12月  1 20:58 modules.builtin.modinfo
    drwxr-xr-x  73 machida machida      4096 12月  1 20:56 net
    -rw-r--r--   1 machida machida       727  2月 24  2023 README
    drwxr-xr-x  32 machida machida      4096 12月  1 20:52 samples
    -rw-r--r--   1 machida machida        13  2月 24  2023 .scmversion
    drwxr-xr-x  17 machida machida      4096 12月  1 20:31 scripts
    drwxr-xr-x  13 machida machida      4096 12月  1 20:41 security
    drwxr-xr-x  26 machida machida      4096 12月  1 20:52 sound
    -rw-rw-r--   1 machida machida   4132067 12月  1 20:58 System.map
    drwxr-xr-x   2 machida machida      4096  2月 24  2023 ti_config_fragments
    -rw-r--r--   1 machida machida       553  2月 24  2023 TISDK-README
    -rw-rw-r--   1 machida machida   4132067 12月  1 20:58 .tmp_System.map
    -rwxrwxr-x   1 machida machida  23102672 12月  1 20:58 .tmp_vmlinux.kallsyms1
    -rw-rw-r--   1 machida machida   1606784 12月  1 20:58 .tmp_vmlinux.kallsyms1.o
    -rw-rw-r--   1 machida machida   9439274 12月  1 20:58 .tmp_vmlinux.kallsyms1.S
    -rwxrwxr-x   1 machida machida  24741448 12月  1 20:58 .tmp_vmlinux.kallsyms2
    -rw-rw-r--   1 machida machida   1606784 12月  1 20:58 .tmp_vmlinux.kallsyms2.o
    -rw-rw-r--   1 machida machida   9440168 12月  1 20:58 .tmp_vmlinux.kallsyms2.S
    drwxr-xr-x  37 machida machida      4096  2月 24  2023 tools
    drwxr-xr-x   3 machida machida      4096 12月  1 20:32 usr
    -rw-rw-r--   1 machida machida         2 12月  1 20:58 .version
    drwxr-xr-x   4 machida machida      4096 12月  1 20:56 virt
    -rwxrwxr-x   1 machida machida 335738360 12月  1 20:58 vmlinux
    -rw-rw-r--   1 machida machida       253 12月  1 20:58 .vmlinux.cmd
    -rw-rw-r--   1 machida machida 859522168 12月  1 20:58 vmlinux.o
    -rw-rw-r--   1 machida machida    648394 12月  1 20:58 vmlinux.symvers
    machida@machida-virtual-machine:~/ti-processor-sdk-linux-am62xx-evm-08.06.00.42/board-support/linux-5.10.168+gitAUTOINC+2c23e6c538-g2c23e6c538$ cd arch/arm64/configs/
    machida@machida-virtual-machine:~/ti-processor-sdk-linux-am62xx-evm-08.06.00.42/board-support/linux-5.10.168+gitAUTOINC+2c23e6c538-g2c23e6c538/arch/arm64/configs$ ls -la
    total 64
    drwxr-xr-x  3 machida machida  4096 12月  4 08:04 .
    drwxr-xr-x 12 machida machida  4096 12月  1 20:32 ..
    -rw-r--r--  1 machida machida 25643  2月 24  2023 defconfig
    drwxrwxr-x  2 machida machida  4096 12月  4 08:04 ORG
    -rw-r--r--  1 machida machida 22136 12月  2 10:04 tisdk_am62xx-evm_defconfig
    machida@machida-virtual-machine:~/ti-processor-sdk-linux-am62xx-evm-08.06.00.42/board-support/linux-5.10.168+gitAUTOINC+2c23e6c538-g2c23e6c538/arch/arm64/configs$ cd ../../../
    machida@machida-virtual-machine:~/ti-processor-sdk-linux-am62xx-evm-08.06.00.42/board-support/linux-5.10.168+gitAUTOINC+2c23e6c538-g2c23e6c538$ cp defconfig arch/arm64/configs/tisdk_am62xx-evm_defconfig
    machida@machida-virtual-machine:~/ti-processor-sdk-linux-am62xx-evm-08.06.00.42/board-support/linux-5.10.168+gitAUTOINC+2c23e6c538-g2c23e6c538$ cd arch/arm64/configs/
    machida@machida-virtual-machine:~/ti-processor-sdk-linux-am62xx-evm-08.06.00.42/board-support/linux-5.10.168+gitAUTOINC+2c23e6c538-g2c23e6c538/arch/arm64/configs$ ls -la
    total 64
    drwxr-xr-x  3 machida machida  4096 12月  4 08:04 .
    drwxr-xr-x 12 machida machida  4096 12月  1 20:32 ..
    -rw-r--r--  1 machida machida 25643  2月 24  2023 defconfig
    drwxrwxr-x  2 machida machida  4096 12月  4 08:04 ORG
    -rw-r--r--  1 machida machida 22153 12月  5 07:14 tisdk_am62xx-evm_defconfig     //"cp" was applied.
    machida@machida-virtual-machine:~/ti-processor-sdk-linux-am62xx-evm-08.06.00.42/board-support/linux-5.10.168+gitAUTOINC+2c23e6c538-g2c23e6c538/arch/arm64/configs$ cd ../../../
    machida@machida-virtual-machine:~/ti-processor-sdk-linux-am62xx-evm-08.06.00.42/board-support/linux-5.10.168+gitAUTOINC+2c23e6c538-g2c23e6c538$ make tisdk_am62xx-evm_defconfig
    #
    # No change to .config
    #
    machida@machida-virtual-machine:~/ti-processor-sdk-linux-am62xx-evm-08.06.00.42/board-support/linux-5.10.168+gitAUTOINC+2c23e6c538-g2c23e6c538$ ls -la
    total 1245504
    drwxr-xr-x  27 machida machida      4096 12月  5 07:15 .
    drwxr-xr-x  10 machida machida      4096  2月 24  2023 ..
    drwxr-xr-x  26 machida machida      4096  2月 24  2023 arch
    drwxr-xr-x   3 machida machida     12288 12月  1 20:42 block
    drwxr-xr-x   2 machida machida      4096 12月  1 20:35 certs
    -rw-r--r--   1 machida machida     16673  2月 24  2023 .clang-format
    -rw-r--r--   1 machida machida        59  2月 24  2023 .cocciconfig
    -rw-rw-r--   1 machida machida    202638 12月  5 07:12 .config
    -rw-rw-r--   1 machida machida    202649 12月  2 11:15 .config.BACK
    -rw-rw-r--   1 machida machida    202649 11月 20 14:18 .config.DEFCONFIG
    -rw-rw-r--   1 machida machida    202649 12月  4 10:10 .config.old
    -rw-r--r--   1 machida machida       496  2月 24  2023 COPYING
    -rw-r--r--   1 machida machida    100478  2月 24  2023 CREDITS
    drwxr-xr-x   4 machida machida     20480 12月  1 20:41 crypto
    -rw-rw-r--   1 machida machida     22153 12月  5 07:13 defconfig
    drwxr-xr-x  81 machida machida      4096  2月 24  2023 Documentation
    drwxr-xr-x 141 machida machida      4096 12月  1 20:52 drivers
    drwxr-xr-x  79 machida machida     12288 12月  1 20:40 fs
    -rw-r--r--   1 machida machida        71  2月 24  2023 .get_maintainer.ignore
    drwxr-xr-x   8 machida machida      4096  2月 24  2023 .git
    -rw-r--r--   1 machida machida        62  2月 24  2023 .gitattributes
    -rw-r--r--   1 machida machida      1918  2月 24  2023 .gitignore
    drwxr-xr-x  31 machida machida      4096 12月  1 19:48 include
    drwxr-xr-x   2 machida machida      4096 12月  1 20:32 init
    drwxr-xr-x   2 machida machida      4096 12月  1 20:42 io_uring
    drwxr-xr-x   2 machida machida      4096 12月  1 20:40 ipc
    -rw-r--r--   1 machida machida      1327  2月 24  2023 Kbuild
    -rw-r--r--   1 machida machida       555  2月 24  2023 Kconfig
    drwxr-xr-x  21 machida machida     12288 12月  4 10:22 kernel
    drwxr-xr-x  21 machida machida     20480 12月  1 20:58 lib
    drwxr-xr-x   6 machida machida      4096  2月 24  2023 LICENSES
    -rw-r--r--   1 machida machida     18204  2月 24  2023 .mailmap
    -rw-r--r--   1 machida machida    578683  2月 24  2023 MAINTAINERS
    -rw-r--r--   1 machida machida     64743  2月 24  2023 Makefile
    -rw-rw-r--   1 machida machida       578 12月  4 10:22 .missing-syscalls.d
    drwxr-xr-x   3 machida machida     12288 12月  1 20:36 mm
    -rw-rw-r--   1 machida machida     16938 12月  1 20:58 modules.builtin
    -rw-rw-r--   1 machida machida    107974 12月  1 20:58 modules.builtin.modinfo
    drwxr-xr-x  73 machida machida      4096 12月  1 20:56 net
    -rw-r--r--   1 machida machida       727  2月 24  2023 README
    drwxr-xr-x  32 machida machida      4096 12月  1 20:52 samples
    -rw-r--r--   1 machida machida        13  2月 24  2023 .scmversion
    drwxr-xr-x  17 machida machida      4096 12月  1 20:31 scripts
    drwxr-xr-x  13 machida machida      4096 12月  1 20:41 security
    drwxr-xr-x  26 machida machida      4096 12月  1 20:52 sound
    -rw-rw-r--   1 machida machida   4132067 12月  1 20:58 System.map
    drwxr-xr-x   2 machida machida      4096  2月 24  2023 ti_config_fragments
    -rw-r--r--   1 machida machida       553  2月 24  2023 TISDK-README
    -rw-rw-r--   1 machida machida   4132067 12月  1 20:58 .tmp_System.map
    -rwxrwxr-x   1 machida machida  23102672 12月  1 20:58 .tmp_vmlinux.kallsyms1
    -rw-rw-r--   1 machida machida   1606784 12月  1 20:58 .tmp_vmlinux.kallsyms1.o
    -rw-rw-r--   1 machida machida   9439274 12月  1 20:58 .tmp_vmlinux.kallsyms1.S
    -rwxrwxr-x   1 machida machida  24741448 12月  1 20:58 .tmp_vmlinux.kallsyms2
    -rw-rw-r--   1 machida machida   1606784 12月  1 20:58 .tmp_vmlinux.kallsyms2.o
    -rw-rw-r--   1 machida machida   9440168 12月  1 20:58 .tmp_vmlinux.kallsyms2.S
    drwxr-xr-x  37 machida machida      4096  2月 24  2023 tools
    drwxr-xr-x   3 machida machida      4096 12月  1 20:32 usr
    -rw-rw-r--   1 machida machida         2 12月  1 20:58 .version
    drwxr-xr-x   4 machida machida      4096 12月  1 20:56 virt
    -rwxrwxr-x   1 machida machida 335738360 12月  1 20:58 vmlinux
    -rw-rw-r--   1 machida machida       253 12月  1 20:58 .vmlinux.cmd
    -rw-rw-r--   1 machida machida 859522168 12月  1 20:58 vmlinux.o
    -rw-rw-r--   1 machida machida    648394 12月  1 20:58 vmlinux.symvers
    machida@machida-virtual-machine:~/ti-processor-sdk-linux-am62xx-evm-08.06.00.42/board-support/linux-5.10.168+gitAUTOINC+2c23e6c538-g2c23e6c538$
    machida@machida-virtual-machine:~/ti-processor-sdk-linux-am62xx-evm-08.06.00.42/board-support/linux-5.10.168+gitAUTOINC+2c23e6c538-g2c23e6c538$ gedit .config               //Confirmed "CONFIG_HDC100X" was enabled
    machida@machida-virtual-machine:~/ti-processor-sdk-linux-am62xx-evm-08.06.00.42/board-support/linux-5.10.168+gitAUTOINC+2c23e6c538-g2c23e6c538$ cd arch/arm64/configs/
    machida@machida-virtual-machine:~/ti-processor-sdk-linux-am62xx-evm-08.06.00.42/board-support/linux-5.10.168+gitAUTOINC+2c23e6c538-g2c23e6c538/arch/arm64/configs$ gedit tisdk_am62xx-evm_defconfig
    machida@machida-virtual-machine:~/ti-processor-sdk-linux-am62xx-evm-08.06.00.42/board-support/linux-5.10.168+gitAUTOINC+2c23e6c538-g2c23e6c538/arch/arm64/configs$ gedit tisdk_am62xx-evm_defconfig //Removed "CONFIG_HDC100X" manualy.
    machida@machida-virtual-machine:~/ti-processor-sdk-linux-am62xx-evm-08.06.00.42/board-support/linux-5.10.168+gitAUTOINC+2c23e6c538-g2c23e6c538/arch/arm64/configs$ cd ../../
    machida@machida-virtual-machine:~/ti-processor-sdk-linux-am62xx-evm-08.06.00.42/board-support/linux-5.10.168+gitAUTOINC+2c23e6c538-g2c23e6c538/arch$ cd ../
    machida@machida-virtual-machine:~/ti-processor-sdk-linux-am62xx-evm-08.06.00.42/board-support/linux-5.10.168+gitAUTOINC+2c23e6c538-g2c23e6c538$ make tisdk_am62xx-evm_defconfig
    #
    # configuration written to .config
    #
    machida@machida-virtual-machine:~/ti-processor-sdk-linux-am62xx-evm-08.06.00.42/board-support/linux-5.10.168+gitAUTOINC+2c23e6c538-g2c23e6c538$ gedit .config  //Confirmed "CONFIG_HDC100X" was disabled
    machida@machida-virtual-machine:~/ti-processor-sdk-linux-am62xx-evm-08.06.00.42/board-support/linux-5.10.168+gitAUTOINC+2c23e6c538-g2c23e6c538$ cd arch/arm64/configs/
    machida@machida-virtual-machine:~/ti-processor-sdk-linux-am62xx-evm-08.06.00.42/board-support/linux-5.10.168+gitAUTOINC+2c23e6c538-g2c23e6c538/arch/arm64/configs$ gedit tisdk_am62xx-evm_defconfig //Again, I re-enabled "CONFIG_HDC100X" by adding "tisdk_am62xx-evm_defconfig" manualy.
    machida@machida-virtual-machine:~/ti-processor-sdk-linux-am62xx-evm-08.06.00.42/board-support/linux-5.10.168+gitAUTOINC+2c23e6c538-g2c23e6c538/arch/arm64/configs$ cd ../../../
    machida@machida-virtual-machine:~/ti-processor-sdk-linux-am62xx-evm-08.06.00.42/board-support/linux-5.10.168+gitAUTOINC+2c23e6c538-g2c23e6c538$ ls -la
    total 1245504
    drwxr-xr-x  27 machida machida      4096 12月  5 07:20 .
    drwxr-xr-x  10 machida machida      4096  2月 24  2023 ..
    drwxr-xr-x  26 machida machida      4096  2月 24  2023 arch
    drwxr-xr-x   3 machida machida     12288 12月  1 20:42 block
    drwxr-xr-x   2 machida machida      4096 12月  1 20:35 certs
    -rw-r--r--   1 machida machida     16673  2月 24  2023 .clang-format
    -rw-r--r--   1 machida machida        59  2月 24  2023 .cocciconfig
    -rw-rw-r--   1 machida machida    202649 12月  5 07:20 .config
    -rw-rw-r--   1 machida machida    202649 12月  2 11:15 .config.BACK
    -rw-rw-r--   1 machida machida    202649 11月 20 14:18 .config.DEFCONFIG
    -rw-rw-r--   1 machida machida    202638 12月  5 07:12 .config.old
    -rw-r--r--   1 machida machida       496  2月 24  2023 COPYING
    -rw-r--r--   1 machida machida    100478  2月 24  2023 CREDITS
    drwxr-xr-x   4 machida machida     20480 12月  1 20:41 crypto
    -rw-rw-r--   1 machida machida     22153 12月  5 07:13 defconfig
    drwxr-xr-x  81 machida machida      4096  2月 24  2023 Documentation
    drwxr-xr-x 141 machida machida      4096 12月  1 20:52 drivers
    drwxr-xr-x  79 machida machida     12288 12月  1 20:40 fs
    -rw-r--r--   1 machida machida        71  2月 24  2023 .get_maintainer.ignore
    drwxr-xr-x   8 machida machida      4096  2月 24  2023 .git
    -rw-r--r--   1 machida machida        62  2月 24  2023 .gitattributes
    -rw-r--r--   1 machida machida      1918  2月 24  2023 .gitignore
    drwxr-xr-x  31 machida machida      4096 12月  1 19:48 include
    drwxr-xr-x   2 machida machida      4096 12月  1 20:32 init
    drwxr-xr-x   2 machida machida      4096 12月  1 20:42 io_uring
    drwxr-xr-x   2 machida machida      4096 12月  1 20:40 ipc
    -rw-r--r--   1 machida machida      1327  2月 24  2023 Kbuild
    -rw-r--r--   1 machida machida       555  2月 24  2023 Kconfig
    drwxr-xr-x  21 machida machida     12288 12月  4 10:22 kernel
    drwxr-xr-x  21 machida machida     20480 12月  1 20:58 lib
    drwxr-xr-x   6 machida machida      4096  2月 24  2023 LICENSES
    -rw-r--r--   1 machida machida     18204  2月 24  2023 .mailmap
    -rw-r--r--   1 machida machida    578683  2月 24  2023 MAINTAINERS
    -rw-r--r--   1 machida machida     64743  2月 24  2023 Makefile
    -rw-rw-r--   1 machida machida       578 12月  4 10:22 .missing-syscalls.d
    drwxr-xr-x   3 machida machida     12288 12月  1 20:36 mm
    -rw-rw-r--   1 machida machida     16938 12月  1 20:58 modules.builtin
    -rw-rw-r--   1 machida machida    107974 12月  1 20:58 modules.builtin.modinfo
    drwxr-xr-x  73 machida machida      4096 12月  1 20:56 net
    -rw-r--r--   1 machida machida       727  2月 24  2023 README
    drwxr-xr-x  32 machida machida      4096 12月  1 20:52 samples
    -rw-r--r--   1 machida machida        13  2月 24  2023 .scmversion
    drwxr-xr-x  17 machida machida      4096 12月  1 20:31 scripts
    drwxr-xr-x  13 machida machida      4096 12月  1 20:41 security
    drwxr-xr-x  26 machida machida      4096 12月  1 20:52 sound
    -rw-rw-r--   1 machida machida   4132067 12月  1 20:58 System.map
    drwxr-xr-x   2 machida machida      4096  2月 24  2023 ti_config_fragments
    -rw-r--r--   1 machida machida       553  2月 24  2023 TISDK-README
    -rw-rw-r--   1 machida machida   4132067 12月  1 20:58 .tmp_System.map
    -rwxrwxr-x   1 machida machida  23102672 12月  1 20:58 .tmp_vmlinux.kallsyms1
    -rw-rw-r--   1 machida machida   1606784 12月  1 20:58 .tmp_vmlinux.kallsyms1.o
    -rw-rw-r--   1 machida machida   9439274 12月  1 20:58 .tmp_vmlinux.kallsyms1.S
    -rwxrwxr-x   1 machida machida  24741448 12月  1 20:58 .tmp_vmlinux.kallsyms2
    -rw-rw-r--   1 machida machida   1606784 12月  1 20:58 .tmp_vmlinux.kallsyms2.o
    -rw-rw-r--   1 machida machida   9440168 12月  1 20:58 .tmp_vmlinux.kallsyms2.S
    drwxr-xr-x  37 machida machida      4096  2月 24  2023 tools
    drwxr-xr-x   3 machida machida      4096 12月  1 20:32 usr
    -rw-rw-r--   1 machida machida         2 12月  1 20:58 .version
    drwxr-xr-x   4 machida machida      4096 12月  1 20:56 virt
    -rwxrwxr-x   1 machida machida 335738360 12月  1 20:58 vmlinux
    -rw-rw-r--   1 machida machida       253 12月  1 20:58 .vmlinux.cmd
    -rw-rw-r--   1 machida machida 859522168 12月  1 20:58 vmlinux.o
    -rw-rw-r--   1 machida machida    648394 12月  1 20:58 vmlinux.symvers
    machida@machida-virtual-machine:~/ti-processor-sdk-linux-am62xx-evm-08.06.00.42/board-support/linux-5.10.168+gitAUTOINC+2c23e6c538-g2c23e6c538$ make tisdk_am62xx-evm_defconfig
    #
    # configuration written to .config
    #
    machida@machida-virtual-machine:~/ti-processor-sdk-linux-am62xx-evm-08.06.00.42/board-support/linux-5.10.168+gitAUTOINC+2c23e6c538-g2c23e6c538$ ls -la
    total 1245504
    drwxr-xr-x  27 machida machida      4096 12月  5 07:22 .
    drwxr-xr-x  10 machida machida      4096  2月 24  2023 ..
    drwxr-xr-x  26 machida machida      4096  2月 24  2023 arch
    drwxr-xr-x   3 machida machida     12288 12月  1 20:42 block
    drwxr-xr-x   2 machida machida      4096 12月  1 20:35 certs
    -rw-r--r--   1 machida machida     16673  2月 24  2023 .clang-format
    -rw-r--r--   1 machida machida        59  2月 24  2023 .cocciconfig
    -rw-rw-r--   1 machida machida    202638 12月  5 07:22 .config                   //ファイルサイズが変わったことを確認。
    -rw-rw-r--   1 machida machida    202649 12月  2 11:15 .config.BACK
    -rw-rw-r--   1 machida machida    202649 11月 20 14:18 .config.DEFCONFIG
    -rw-rw-r--   1 machida machida    202649 12月  5 07:20 .config.old
    -rw-r--r--   1 machida machida       496  2月 24  2023 COPYING
    -rw-r--r--   1 machida machida    100478  2月 24  2023 CREDITS
    drwxr-xr-x   4 machida machida     20480 12月  1 20:41 crypto
    -rw-rw-r--   1 machida machida     22153 12月  5 07:13 defconfig
    drwxr-xr-x  81 machida machida      4096  2月 24  2023 Documentation
    drwxr-xr-x 141 machida machida      4096 12月  1 20:52 drivers
    drwxr-xr-x  79 machida machida     12288 12月  1 20:40 fs
    -rw-r--r--   1 machida machida        71  2月 24  2023 .get_maintainer.ignore
    drwxr-xr-x   8 machida machida      4096  2月 24  2023 .git
    -rw-r--r--   1 machida machida        62  2月 24  2023 .gitattributes
    -rw-r--r--   1 machida machida      1918  2月 24  2023 .gitignore
    drwxr-xr-x  31 machida machida      4096 12月  1 19:48 include
    drwxr-xr-x   2 machida machida      4096 12月  1 20:32 init
    drwxr-xr-x   2 machida machida      4096 12月  1 20:42 io_uring
    drwxr-xr-x   2 machida machida      4096 12月  1 20:40 ipc
    -rw-r--r--   1 machida machida      1327  2月 24  2023 Kbuild
    -rw-r--r--   1 machida machida       555  2月 24  2023 Kconfig
    drwxr-xr-x  21 machida machida     12288 12月  4 10:22 kernel
    drwxr-xr-x  21 machida machida     20480 12月  1 20:58 lib
    drwxr-xr-x   6 machida machida      4096  2月 24  2023 LICENSES
    -rw-r--r--   1 machida machida     18204  2月 24  2023 .mailmap
    -rw-r--r--   1 machida machida    578683  2月 24  2023 MAINTAINERS
    -rw-r--r--   1 machida machida     64743  2月 24  2023 Makefile
    -rw-rw-r--   1 machida machida       578 12月  4 10:22 .missing-syscalls.d
    drwxr-xr-x   3 machida machida     12288 12月  1 20:36 mm
    -rw-rw-r--   1 machida machida     16938 12月  1 20:58 modules.builtin
    -rw-rw-r--   1 machida machida    107974 12月  1 20:58 modules.builtin.modinfo
    drwxr-xr-x  73 machida machida      4096 12月  1 20:56 net
    -rw-r--r--   1 machida machida       727  2月 24  2023 README
    drwxr-xr-x  32 machida machida      4096 12月  1 20:52 samples
    -rw-r--r--   1 machida machida        13  2月 24  2023 .scmversion
    drwxr-xr-x  17 machida machida      4096 12月  1 20:31 scripts
    drwxr-xr-x  13 machida machida      4096 12月  1 20:41 security
    drwxr-xr-x  26 machida machida      4096 12月  1 20:52 sound
    -rw-rw-r--   1 machida machida   4132067 12月  1 20:58 System.map
    drwxr-xr-x   2 machida machida      4096  2月 24  2023 ti_config_fragments
    -rw-r--r--   1 machida machida       553  2月 24  2023 TISDK-README
    -rw-rw-r--   1 machida machida   4132067 12月  1 20:58 .tmp_System.map
    -rwxrwxr-x   1 machida machida  23102672 12月  1 20:58 .tmp_vmlinux.kallsyms1
    -rw-rw-r--   1 machida machida   1606784 12月  1 20:58 .tmp_vmlinux.kallsyms1.o
    -rw-rw-r--   1 machida machida   9439274 12月  1 20:58 .tmp_vmlinux.kallsyms1.S
    -rwxrwxr-x   1 machida machida  24741448 12月  1 20:58 .tmp_vmlinux.kallsyms2
    -rw-rw-r--   1 machida machida   1606784 12月  1 20:58 .tmp_vmlinux.kallsyms2.o
    -rw-rw-r--   1 machida machida   9440168 12月  1 20:58 .tmp_vmlinux.kallsyms2.S
    drwxr-xr-x  37 machida machida      4096  2月 24  2023 tools
    drwxr-xr-x   3 machida machida      4096 12月  1 20:32 usr
    -rw-rw-r--   1 machida machida         2 12月  1 20:58 .version
    drwxr-xr-x   4 machida machida      4096 12月  1 20:56 virt
    -rwxrwxr-x   1 machida machida 335738360 12月  1 20:58 vmlinux
    -rw-rw-r--   1 machida machida       253 12月  1 20:58 .vmlinux.cmd
    -rw-rw-r--   1 machida machida 859522168 12月  1 20:58 vmlinux.o
    -rw-rw-r--   1 machida machida    648394 12月  1 20:58 vmlinux.symvers
    machida@machida-virtual-machine:~/ti-processor-sdk-linux-am62xx-evm-08.06.00.42/board-support/linux-5.10.168+gitAUTOINC+2c23e6c538-g2c23e6c538$ gedit .config  //Confirmed "CONFIG_HDC100X" was re-enabled.
    machida@machida-virtual-machine:~/ti-processor-sdk-linux-am62xx-evm-08.06.00.42/board-support/linux-5.10.168+gitAUTOINC+2c23e6c538-g2c23e6c538$
    



  • Thanks for the explanation again.

    => Changed contents of "tisdk_am62xx-evm_defconfig" was applied to ".config" however file size was different.

    While file sizes are you comparing? I checked your console log, but don't see any problem in file .config. With CONFIG_HDC100X not enabled, .config size is 202649, with the option enabled, its size is 202638.

    $ grep -wn '^-.*\.config$' defconfigissue_E2E_1.txt
    
    11:-rw-rw-r--   1 machida machida    202649 12月  4 10:10 .config
    154:-rw-rw-r--   1 machida machida    202638 12月  5 07:12 .config
    242:-rw-rw-r--   1 machida machida    202638 12月  5 07:12 .config
    322:-rw-rw-r--   1 machida machida    202649 12月  5 07:20 .config
    $

  • Hello,

    >While file sizes are you comparing?
    I compared between ".config" and "defconfig(or copied "tisdk_am62xx-evm_defconfig")".
    From following sentence which you posted previously, I believe that "defconfig" was generated from ".config", so file size should become similar size to ".config"....
    Or, is my this understanding incorrect ?

    >$ make savedefconfig    <== this generates file defconfig from .config at the kernel top level directory

    Best Regards,

  • "defconfg" is indeed generated from ".config" using "make savedefconfig", but "defconfig" and ".config" are not the same type of files. "defconfig" is much smaller than ".config".

  • Hello,

    Thank you for your reply.
    Understood that this is expected result. I will close this thread.

    BR,