The general boot image does not include Qualcomm necessary initial drivers.
Follow the steps below to inject the necessary drivers into boot.wim:
Standard operating procedure of using SCCM server with ARM64 computers
Prerequisites:
Set up an SCCM server:
- In SCCM server, Software Library > Overview > Operating Systems > Boot images to find the default boot image for ARM64.
- To find the location of the boot image .wim file. Right-click Properties > Data Source to find the image path to get the .wim file.

- Start the Command line as Administrator.
- Copy the .wim file to
C:\
- Create a mount directory to mount winpe.wim file by command, type:
dism /mount-wim /wimfile:C:\winpe.wim /mountdir:{YourMountFolder} /index:1

- Inject a driver to .wim file, type:
dism /image: {YourMountFolder} /add-driver /driver:{YourDriversFolder} /recurse /forceunsigned
Note: The chipset driver that you downloaded from Dell.com extracts the drivers to the YourDriverFolder
.

- Commit the change and save, type:
dism /unmount-wim /mountdir:{YourMountFolder} /commit

- Copy .wim file to replace in original location. (for example, \\sccm202412\Shared_folder\winpe.wim)
Note: You can check if the driver is injected using the below method.
- Setting the test sequence with the boot image we have injected the driver.
- Deploy the test sequence with the driver and operating system which you want to deploy.